14.08.2010, 00:59
Here,Unsolved Very Errors
In FInal
In FInal
pawn Код:
forward ClearChatBox(playerid);
public ClearChatBox(playerid)
{
new i=30; while(i>0)
{
SendClientMessage(playerid,0xCCCCCCCC," ");
i--;
}
}
forward PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z);
public PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z) { new Float:oldposx, Float:oldposy, Float:oldposz; new Float:tempposx, Float:tempposy, Float:tempposz; GetPlayerPos(playerid, oldposx, oldposy, oldposz); tempposx = (oldposx -x); tempposy = (oldposy -y); tempposz = (oldposz -z); if (((tempposx <> -radi)) && ((tempposy <> -radi)) && ((tempposz <> -radi))) { return 1; } return 0; }