16.11.2011, 18:58
(
Последний раз редактировалось park4bmx; 16.11.2011 в 20:35.
)
well is not only me there is other people having this problem two
Problem
whe in ther server there are 3 players all CMDS work fine
but when more then 3 playeer enter then the CMDS dont work anymore
EXAMPLE (more then 3 players joined)
if i use like SetPlayerMoney 5 32425 it will give ID 0 32425
any solutions or anything ?
Server version 0.3C R5
One of non working Command's
Problem
whe in ther server there are 3 players all CMDS work fine
but when more then 3 playeer enter then the CMDS dont work anymore
EXAMPLE (more then 3 players joined)
if i use like SetPlayerMoney 5 32425 it will give ID 0 32425
any solutions or anything ?
Server version 0.3C R5
One of non working Command's
pawn Код:
COMMAND:sethp(playerid, params[])
{
if(PlayerInfo[playerid][PlayerAdmin] < HP_LEVEL) return SendClientMessage(playerid,COLOR_RED, "You Cant Use This Command !!!");
new targetid,intgr;
if(sscanf(params,"ui", targetid,intgr)) return SendClientMessage(playerid, COLOR_WHITE, ""WHITE"Usage: "GREEN"/sethp "WHITE"[playerid] "WHITE"[ammount]");
if(!IsPlayerConnected(targetid)) return SendClientMessage(playerid, COLOR_WHITE, "Invalid Player ID"RED"(Player Is Not Connected)!");
SetPlayerHealth(targetid, intgr);
return 1;
}