18.07.2012, 19:33
Hey
I have a problem with this command :
This command need to put player in a car and teleport him ...
But the teleport doesn't work ..
Help

Код:
dcmd_pizza(playerid,params[]) { #pragma unused params new vehicleid = GetPlayerVehicleID(playerid); new Float:X,Float:Y,Float:Z, Float:Angle; GetPlayerPos(playerid,X,Y,Z); GetPlayerFacingAngle(playerid,Angle); GetPlayerVehicleID(playerid); vehicleid = CreateVehicle(448,X,Y,Z,Angle,-1,-1,600); vehicleid = PutPlayerInVehicle(playerid, vehicleid, 0); PizzaJob[playerid] = 1; new name[MAX_PLAYER_NAME], string[48]; GetPlayerName(playerid, name, sizeof(name)); format(string, sizeof(string), "* %s is now a Pizzaboy.", name ); SendClientMessageToAll(COLOR_YELLOW, string); SetPlayerCheckpoint(playerid,2012.6134,-1729.3796,13.1536,10); SendClientMessage(playerid,COLOR_YELLOW,"* Follow the red markers and you'll recieve money!"); if(DMZone[playerid] == 1) return SendClientMessage(playerid,COLOR_RED, "ERROR: You can't use this command in DM!"); new State = GetPlayerState(playerid); if(IsPlayerInAnyVehicle(playerid) && State == PLAYER_STATE_DRIVER) { LinkVehicleToInterior(vehicleid, 0); SetPlayerInterior(playerid, 0); return SetVehiclePos(vehicleid, 2099.0176, -1806.1030, 13.5551); } SetPlayerPos(playerid, 2099.0176, -1806.1030, 13.5551); SetPlayerInterior(playerid, 0); return 1; }
But the teleport doesn't work ..
Help
