• 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Pawn] Help with kill streack
#4
(2020-11-12, 08:11 PM)Expert* Wrote:
PHP Code:
public OnPlayerDeath(playerid,killerid,reason)

{

new 
str[128];

new 
name[32];

GetPlayerName(killerid,name,32);





if( 
killstreak[playerid] >= && killerid != INVALID_PLAYER_ID )

{

new 
pname[24];

GetPlayerName(playeridpname);

format(str,sizeof(str) - 1,""RED"[DM] You have ended %s killstreak of %i kills..."pnamekillstreak[playerid]);

SendClientMessage(-1killeridstr);

}





killstreak[killerid];

killstreak[playerid] = 0;





switch(
killstreak[killerid])

{



case 
3:

{



format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"Killing Spree"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
5:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"Dominating!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
6:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"UnStoppable!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
7:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"Wicked Sick!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
8:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"Monster like!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
9:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"GOD LIKE!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

}

case 
10:

{

format(str,sizeof(str),""RED"[DM]"ORANGE" %s "GREY"is now "WHITE"Immortal!!"GREY"!!",name);

SendClientMessageToAll(-1,str);

SetPlayerArmour(killerid,100);

}

}

return 
1;





Just create an { streak ,"message" } array as this one is inefficient af
Using Pawn.CMD?

If you're doing so, this is the very first sign that you absolutely shouldn't utilize your all powerful P-Code knowledge in any of the scripting discussion topics.
  Reply


Messages In This Thread
Help with kill streack - by DaZzY - 2020-11-11, 02:07 PM
RE: Help with kill streack - by DaZzY - 2020-11-11, 08:13 PM
RE: Help with kill streack - by Expert* - 2020-11-12, 08:11 PM
RE: Help with kill streack - by Pinch - 2020-11-12, 08:25 PM
RE: Help with kill streack - by DaZzY - 2020-11-12, 10:18 PM

Forum Jump: