Coords
#1

How do I find a certain spot in game if I have the coords for it?
Reply
#2

Load luxadmin, Make yourself an administrator ( /rcon login and /setlevel )
And use the command /lgoto
Reply
#3

Run this filterscript:

pawn Код:
#include <a_samp>
#include <zcmd>
#include <sscanf2>

CMD:tp(playerid, params[])
{
    new Float:x, Float:y, Float:z;
    if(sscanf(params, "fff", x, y, z)) return 1;
    SetPlayerPos(playerid, x, y, z);
    return 1;
}
You'll need zcmd and the sscanf plugin.

USAGE: /tp [x] [y] [z]
Reply
#4

Just load fsdebug.... and /setloc
Reply
#5

Or that..
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)