31.07.2011, 22:54
is there a FS plugin ect. in these samp forums that allow u too see your x,y,and z position in-game cuz its kinda of a pain in the @ss to do /save all the time??
CMD:xyz( playerid, params[ ] ) {
new
Float:x
,Float:y
,Float:z
,string[ 30 ]
;
GetPlayerPos( playerid, x, y, z );
format( string, sizeof string, "%f, %f, %f", x, y, z );
return SendClientMessage( playerid, -1, string );
}
if( !strcmp( cmdtext, "/xyz", true ) ) {
new
Float:x
,Float:y
,Float:z
,string[ 30 ]
;
GetPlayerPos( playerid, x, y, z );
format( string, sizeof string, "%f, %f, %f", x, y, z );
return SendClientMessage( playerid, -1, string );
}