02.02.2014, 01:09
(
Последний раз редактировалось Duck4coder; 02.02.2014 в 21:17.
Причина: Problem has been fixed
)
Hello, I have been testing my commands offline by my self and they worked but when I hosted it for my friends they don't work
e.g.
If i put in values it only says the usage return :/ and doesn't do anything
please help
e.g.
Код:
CMD:akill(playerid, params[]) { if(Player_Data[playerid][Adminlevel] >=4) { if(sscanf(params, "u[50]", pid)) return SCM(playerid, GREY, "[SERVER]: /akill [playerid/name]"); { if(pid != INVALID_PLAYER_ID) { if(Player_Data[playerid][Adminlevel] < Player_Data[pid][Adminlevel]) return SCM(playerid, RED, "You can't akill an admin with a higher level than you."); format(string2, sizeof(string2), "Admin %s has akilled %s.", PlayerName(playerid), PlayerIDName(pid)); SCMTA(RED, string2); SetPlayerHealth(playerid, 0.0); } else return SCM(playerid, GREY, "That player isn't connected."); if(pid == playerid) { SCM(playerid, RED, "You cannot akill yourself"); } } } else return SCM(playerid, GREY, UNAUTHORIZED); return 1; }
please help