30.06.2009, 09:33
Well, I win. jks.
pawn Код:
if(strcmp("/bike a", cmdtext, true) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateVehicle(481, x, y, z, 0.0, -1, -1, 90000);
SetPlayerPos(playerid, x, y, z+3);
return 1;
}
if(strcmp("/bike b", cmdtext, true) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateVehicle(510, x, y, z, 0.0, -1, -1, 90000);
SetPlayerPos(playerid, x, y, z+3);
return 1;
}
if(strcmp("/bike c", cmdtext, true) == 0)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
CreateVehicle(509, x, y, z, 0.0, -1, -1, 90000);
SetPlayerPos(playerid, x, y, z+3);
return 1;
}