25.04.2012, 18:46
well, i agree to him, cuz i changed ALL my commands to rCmd but NONE of them work anymore, for example this one: if there is something wrong then please tell me
cuz i really like this style it only doesnt works
its same with all other commands, they DONT work, but is it like you said cuz i didnt use the success thingy? or isnt it that?

pawn Код:
rCmd[sui]->ls(playerid, success, string[128], pName[MAX_PLAYER_NAME], veh)
{
if(!IsPlayerInAnyVehicle(playerid)){
SetPlayerPos(playerid, 1607.6703,-1721.9176,13.5469);
SetPlayerFacingAngle(playerid, 0.0);
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof(string), "{FF0000}(/ls) {FFFF00}Player {FF0000}%s {FFFF00}has Teleported to {FF0000}Los Santos",pName);
SetTimerEx("Unfreeze", 2000, 0, "d", playerid);
GameTextForPlayer(playerid,"~g~Waiting for the Objects to load",2000,3);
SetPlayerInterior(playerid, 0);
SetPlayerVirtualWorld(playerid, 0);
}
else{
veh = GetPlayerVehicleID(playerid);
SetVehiclePos(veh, 1607.6703,-1721.9176,13.5469);
SetVehicleZAngle(veh, 0.0);
GetPlayerName(playerid, pName, MAX_PLAYER_NAME);
format(string, sizeof(string), "{FF0000}(/ls) {FFFF00}Player {FF0000}%s {FFFF00}has Teleported to {FF0000}Los Santos",pName);
SetTimerEx("Unfreeze", 2000, 0, "d", playerid);
SendClientMessageToAll(playerid, string);
GameTextForPlayer(playerid,"~g~Waiting for the Objects to load",2000,3);
LinkVehicleToInterior(veh, 0);
SetVehicleVirtualWorld(veh, 0);
PutPlayerInVehicle(playerid, veh, 0);
}
return SendClientMessage(playerid, 0xFF0000FF, "you have gone to Los Santos");
}