FS HELP
#1

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??
Reply
#2

There is a hack.. I am not going to say it though. It's bad.
Reply
#3

no i would rather not hack
Reply
#4

It isn't hacking. It just says your X,Y,Z. You don't have to use any of the functions. I'm not saying anything more.
Reply
#5

Strcmp & zcmd commands:
pawn Код:
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 );
}
strcmp:
pawn Код:
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 );
}
EDIT: I can't believe no one replied sooner!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)