20.01.2017, 12:43
So, Its my first command using the storing memory of whatever they call it string i made a command with this shit and it doesnt work propelly:
When i type /pos i get this Your Postion is; X:t, Y:t, Z:t
Any Help ?
PHP код:
CMD:pos(playerid, params[])
{
new string1[128];
new Float:X,Float:Y,Float,Z;
GetPlayerPos(playerid,X,Y,Z);
format(string1,sizeof(string1),"Your Postion is: X: %.*t,Y: %.*t,Z: %.*t",X,Y,Z);
SendClientMessage(playerid,COLOR_GREEN,string1);
return 1;
}
Any Help ?