28.12.2012, 01:28
NO.....
maybe that script /enter to bank
because it could be the same bank vitural.
Ex:
i use zcmd
i dont know too
maybe that script /enter to bank
because it could be the same bank vitural.
Ex:
i use zcmd
pawn Код:
CMD:enter(playerid, params[])
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, /*X,Y,Z*/))// on exterior {
SetPlayerPos(playerid, /*X,Y,Z*/);// to interior
SetPlayerVirtualWorld(playerid, 1337);//dont same the vitural world
}
else if(IsPlayerInRangeOfPoint(playerid, 2.0, /*X,Y,Z*/))//on exterior {
SetPlayerPos(playerid, /*X,Y,Z*/);// to interior
SetPlayerVirtualWorld(playerid, 1338);
}
return 1;
}
CMD:exit(playerid,params[])
{
if(IsPlayerInRangeOfPoint(playerid, 2.0, /*X,Y,Z*/)) //on interior {
SetPlayerPos(playerid, /*X,Y,Z*/);// to exterior
SetPlayerVirtualWorld(playerid,0);
}
else if(IsPlayerInRangeOfPoint(playerid, 2.0, /*X,Y,Z*/))//on interior {
SetPlayerPos(playerid, /*X,Y,Z*/); //to exterior
SetPlayerVirtualWorld(playerid,0);
}
return 1;
}