14.02.2009, 21:33
Can someone please help me ?
Err.. The problem is .. When you type /drift u get teleported to
a drift place. But when u type /drift2 u get teled to the same place, which it's not supposed to.
Can u tell me whats wrong?:
Err.. The problem is .. When you type /drift u get teleported to
a drift place. But when u type /drift2 u get teled to the same place, which it's not supposed to.
Can u tell me whats wrong?:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/drift", cmdtext, true, 6) == 0)
{
new vehicleid = GetPlayerVehicleID(playerid);
new State = GetPlayerState(playerid);
if(IsPlayerInAnyVehicle(playerid) && State == PLAYER_STATE_DRIVER)
{
return SetVehiclePos(vehicleid,-312.5042,1539.6537,75.5625);
}
SetPlayerPos(playerid,-312.5042,1539.6537,75.5625);
return 1;
}
if(strcmp("/drift2", cmdtext, true, 7) == 0)
{
new vehicleid = GetPlayerVehicleID(playerid);
new State = GetPlayerState(playerid);
if(IsPlayerInAnyVehicle(playerid) && State == PLAYER_STATE_DRIVER)
{
return SetVehiclePos(vehicleid,-290.5271,1742.3457,42.6875);
}
SetPlayerPos(playerid,-290.5271,1742.3457,42.6875);
return 1;
}