02.03.2014, 01:49
Quote:
I don't have skin id 74 in my script.
So should I use different virtual worlds when I enter a store? Tested now, didn't work. |
For Example:
Код:
CMD:exit(playerid, params[]) { if(IsPlayerInRangeOfPoint(playerid, 7.0, x, y, z) && GetPlayerVirtualWorld(playerid) == 1) // This is store 1 { SetPlayerPos(playerid,x,y,z); // The X Y Z, where you want them to end up after they /exit for store 1. } if(IsPlayerInRangeOfPoint(playerid, 7.0, x, y, z) && GetPlayerVirtualWorld(playerid) == 2) // This is store 2 { SetPlayerPos(playerid,x,y,z); // The X Y Z, where you want them to end up after they /exit for store 2. } return 1; }