Venom's MostWanted Killing Spree System -
VenomMancer - 03.06.2014
Moved
https://sampforum.blast.hk/showthread.php?tid=521192
Re: Venom's MostWanted Killing Spree System -
rumen98 - 03.06.2014
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
Re: Venom's MostWanted Killing Spree System -
VenomMancer - 03.06.2014
Where the bug codes ?
Re: Venom's MostWanted Killing Spree System -
rumen98 - 03.06.2014
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]
>>>>
Re: Venom's MostWanted Killing Spree System -
CROSS_Hunter - 03.06.2014
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
Re: Venom's MostWanted Killing Spree System -
[D]ry[D]esert - 03.06.2014
Great Job!
Re: Venom's MostWanted Killing Spree System -
rumen98 - 03.06.2014
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!
Re: Venom's MostWanted Killing Spree System -
Alex Magaсa - 03.06.2014
Great work!
Re: Venom's MostWanted Killing Spree System -
AiRaLoKa - 04.06.2014
why don't you use
switch for checking player's mostkill?
Re: Venom's MostWanted Killing Spree System -
VenomMancer - 04.06.2014
Thanks guys
Re: Venom\'s MostWanted Killing Spree System -
SPA - 04.06.2014
Amazing script i was searching this long time +rep!!
Re: Venom\'s MostWanted Killing Spree System -
VenomMancer - 04.06.2014
Quote:
Originally Posted by SPA
Amazing script i was searching this long time +rep!!
|
Yeah I know much people like me and you search this

Thanks btw..
Re: Venom\'s MostWanted Killing Spree System -
SPA - 05.06.2014
Well, there are problem i don\'t know but TextDraw arent working
Re: Venom\'s MostWanted Killing Spree System -
VladimirMark - 05.06.2014
Good Job,
I personally loved it

Keep it up.
Re: Venom\'s MostWanted Killing Spree System -
Ayham - 05.06.2014
Nice
Re: Venom\'s MostWanted Killing Spree System -
VenomMancer - 05.06.2014
Quote:
Originally Posted by SPA
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 -_-
Re: Venom\'s MostWanted Killing Spree System -
iRaiDeN - 05.06.2014
Nice!
Re: Venom\'s MostWanted Killing Spree System -
VenomMancer - 05.06.2014
Thanks bro
Re: Venom\'s MostWanted Killing Spree System -
SPA - 05.06.2014
I dont mean the TextDraw on my my skin , i mean the Text in other players budy its wont appear for some reason! thanks.
Re: Venom\'s MostWanted Killing Spree System -
VenomMancer - 05.06.2014
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