12.12.2011, 03:54
Yes show that function only not the hole script.
In this command the function about "Player (2) has given you god mode. " is not there.
pawn Код:
CMD:godp(playerid,params[])
{
new pname[24], targetid, string[128];
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, -1, "SERVER: Unknown Command.");
if(sscanf(params,"u",targetid)) return SendClientMessage(playerid,-1,"USAGE: /godp [playerid]");
SetPlayerHealth(targetid,100000);
return 1;
}