11.05.2016, 18:05
Marcel said some truth. Please read it...
And this command works perfectly.
5. We aren't here to create some stuff for you, we are here to help you create some stuff when you are stuck in your development.
And this command works perfectly.
PHP Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[128],idx;
cmd = strtok(cmdtext,idx);
if(strcmp(cmd,"/tele",true)==0)
{
new tmp[128];
tmp = strtok(cmdtext,idx);
if(strlen(tmp)==0) return SendClientMessage(playerid,BLUE,"Usage: /tele 1");
if(strval(tmp)==1)
SetPlayerPos(playerid,1885.7004,-2592.2048,13.5469);
return 1;
}
return 0;
}