[FilterScript] Venom's MostWanted Killing Spree System
#1

Moved
https://sampforum.blast.hk/showthread.php?tid=521192
Reply
#2

I think it will have bugs in code because, when you have server with 200 players and you have example:
Player1 - 5 kills
Player2 - 5 kills
player3 - 3 Kills
player4 - 0 Kills
So there will be 2 persons with MOST wanted [3DTextLabel]

But otherwise a good idea
Reply
#3

Where the bug codes ?
Reply
#4

Do not understand me, I meant that you can get a bug where (example above)
<<<<
example:
Player1 - 5 kills
Player2 - 5 kills
player3 - 3 Kills
player4 - 0 Kills
So there will be 2 persons with MOST wanted [3DTextLabel]
>>>>
Reply
#5

And? That isn't a bad thing? In a proper DM Server you might find alot of people having the Most Wanted 3D Label, It's not specific for only one in the whole server you know.. No one is immortal it will vanish sooner or later
Reply
#6

Great Job!
Reply
#7

Quote:
Originally Posted by CROSS_Hunter
Посмотреть сообщение
And? That isn't a bad thing? In a proper DM Server you might find alot of people having the Most Wanted 3D Label, It's not specific for only one in the whole server you know.. No one is immortal it will vanish sooner or later
No matter, generally both are correct, but this depends on how everyone likes it. I think it would be better if there was only one Most Wanted player because it is much sought after Peace!
Reply
#8

Great work!
Reply
#9

why don't you use switch for checking player's mostkill?
Reply
#10

Thanks guys
Reply
#11

Amazing script i was searching this long time +rep!!
Reply
#12

Quote:
Originally Posted by SPA
View Post
Amazing script i was searching this long time +rep!!
Yeah I know much people like me and you search this

Thanks btw..
Reply
#13

Well, there are problem i don\'t know but TextDraw arent working
Reply
#14

Good Job,

I personally loved it

Keep it up.
Reply
#15

Nice
Reply
#16

Quote:
Originally Posted by SPA
View Post
Well, there are problem i don\'t know but TextDraw arent working
You mean 3DTextLabel to player\'s body ?

You can see the 3DText label on other player\'s body !

You can\'t see 3DText label on your body!


Sorry for my bad english -_-
Reply
#17

Nice!
Reply
#18

Thanks bro
Reply
#19

I dont mean the TextDraw on my my skin , i mean the Text in other players budy its wont appear for some reason! thanks.
Reply
#20

I testes an used on my server and it works fine.
Maybe you can do like my :

pawn Code:
public OnPlayerDeath(playerid, killerid, reason)
{
    SendDeathMessage(killerid, playerid, reason);

    pInfo[playerid][Spawned]    = 0;
    onjob[playerid]             = 0;

    /*-------| Most wanted |------*/
    pInfo[killerid][MostKill]   ++;
    pInfo[playerid][MostKill]   = 0;
    MostStar(playerid);
    MostStar(killerid);
    /*-----------------------------*/
    pInfo[playerid][Deaths]++;

    // gangs
    if(pInfo[killerid][gID] != -1 && pInfo[killerid][gID] != pInfo[playerid][gID])
    {
        gInfo[pInfo[killerid][gID]][gScore]++;
    }

    if(IsPlayerConnected(killerid) && killerid != INVALID_PLAYER_ID)
    {
        pInfo[killerid][Kills]++;
    }
    SetPlayerScore(killerid, GetPlayerScore(killerid) + 1); // +1 Score to KillerID
    GivePlayerMoneyEx(killerid, 15000); // + 100 to the killer
return 1;
}
I make most wanted on top on public playerdeath!

Or update your streamer.inc
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)