1
mIRC/pawn Scripting / Re: HI FIREMDS
« on: January 23, 2011, 02:20:13 pm »
What do you need?
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
You don't need to use this toggle, since players are able to move after spawning by default.
The most probable problem is your controls. If you encounter that problem on all the servers, go to your options and reconfigure them.
else if (strcmp(cmd, "!mycommand", true) == 0)
{
tmp = strtok(cmdtext, idx);
if (!strlen(tmp)) {
//do something here insert an event for this cmd
SetPlayerPos(playerid, 495.7786,-83.4285,10.0299);
SendClientMessage(playerid, COLOR_GREEN, "Hello this is a text!!!");
//now i have insert setplayerpos and u will be teleported to the coords(malibu)
}
return 1;
}