05.03.2009, 19:13
Just some advice for posting on these forums:
When you post code, you should use the following tags:
Spot the difference:
PS: Have a Teleport:
When you post code, you should use the following tags:
Code:
pawn Code:Code Here
pawn Code:
new bob = 2;
Code:
new bob = 2;
pawn Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/hj", true) == 0)
{
if(GetPlayerState(playerid) == PLAYER_STATE_DRIVER)
{
new cartype = GetPlayerVehicleID(playerid);
SetVehiclePos(cartype,-1655.0538,270.9725,365.2308);
SetVehicleZAngle(cartype,90.0);
SetPlayerInterior(playerid, 0);
LinkVehicleToInterior(cartype, 0);
}
else
{
SetPlayerPos(playerid,-1637.4716,267.3457,366.0933);
SetPlayerFacingAngle(playerid, 45.0);
SetPlayerInterior(playerid, 0);
}
GameTextForPlayer(playerid,"Huge Chicken Jump!",2500,3);
return 1;
}
return 0;
}

