01.01.2018, 14:11
im creating /go posx posy posz
but i have some proplames !
When i Write For Example:
/go 1959.595947 1352.792846 9.257812
its set me another place
This is Code:
but i have some proplames !
When i Write For Example:
/go 1959.595947 1352.792846 9.257812
its set me another place
This is Code:
Код:
CMD:go(playerid, params[]) { new bet; if(sscanf(params, "u", bet)) return SCM(playerid, -1, "USAGE:/go[floatx,floaty,floatz]."); new Float:posx, Float:posy, Float:posz; GetPlayerPos(playerid, posx, posy, posz); SetPlayerPos(playerid,posx, posy, posz); new string [128]; format(string, sizeof(string), "You Have Been Send To Your Choosen Location."); SCM(playerid, -1, string); return 1; }