02.08.2009, 13:18
Can you help me, can you provide me with a code that shows your current position (X,Y,Z) like maybe a /pos command, i've seen it on some servers, cause i'm kind of new to GTA Server Development.
if (strcmp("/pos", cmdtext, true, 10) == 0)
{
new Float:X;
new Float:Y;
new Float:Z;
new string[128];
format(string, sizeof(string), "You're current position is %f %f %f", Float:X, Float:Y, Float:Z);
SendClientMessage(playerid, color ,string); // change "color" to the color you want
return 1;
}
Originally Posted by Klutty
pawn Код:
|
Originally Posted by SpiderPork
Quote:
|