23.10.2010, 00:32
Don't forget to give credits to the /warn command from LethaL. Just because you edit it a little doesn't mean you don't have to give credits.
You don't need that many strings, just reuse the first one you have. Same with all your other commands basically.
Also read through your FS you have more things to give credit to.
pawn Код:
new
name[MAX_PLAYER_NAME],
string[256], string2[256], string3[256], string4[256];
GetPlayerName(pID,name,sizeof(name));
format(string,sizeof(string),"**(ADMIN JAIL)** %s(%d) %s READ /Rules",name,pID,Reason);
format(string2,sizeof(string2),"%s(%d)(Has Been Forced To Read Rules)",name,pID);
format(string2,sizeof(string3),"You Have Been JALIED By Admin For Reason: %s",Reason);
format(string4, sizeof(string4), "You Have JAILED %s(%d) For: %s",name, pID, Reason);
SendClientMessageToAll(COLOR_RED,string);
SendClientMessageToAll(COLOR_RED,string2);
SendClientMessage(pID,COLOR_RED,string3);
SendClientMessage(i,COLOR_RED,string4);
Also read through your FS you have more things to give credit to.