/gotocoords
#1

So, I need help with making /gotocoords command, /gotocoords [INT] [X] [Y] [Z] so I can teleport to my maps in game. I tried different /gotocoords Filterscripts and I complied them successfully and added then in server.cfg, but when I go IG and write /gotocoords or whatever the command is, it says "unkown command". I am using host server [offline] with rivershell gamemode, can someone give me any filterscript or any gamemode that teleport me to my map?, I have my map codes [retextured] so I need to teleport to it IG, any help?
Reply
#2

Can you please show us the code of your /gotocoords command.
Reply
#3

PHP код:

#include <a_samp>
#include <izcmd>
#include <sscanf2>

CMD:tele(playeridparams[])
{
    new 
Float:xFloat:yFloat:z;
    if(
sscanf(params"fff"xyz))return SendClientMessage(playerid0xFF0000FF"Usage: /tele [X Pos] [Y Pos] [Z Pos]");
    
SetPlayerPos(playeridxyz);
    return 
1;

Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)