24.05.2010, 20:25
[MAP] FunJump
Hey guys,i was bored and decided to release here one of my maps.It includes a loop and a curve at the beginning.
I made the curve at myself but the loop needed some of RCG's help
Anyway i hope you will like it.
Video:
Crapzors
Pastebin
Comment ppl
Teleport:
pawn Код:
if(strcmp(cmdtext, "/fm", true) == 0)
{
if(IsPlayerInAnyVehicle(playerid))
{
new veh;
veh = GetPlayerVehicleID(playerid);
SetVehiclePos(veh,273.3236,-934.7064,470.9164);
SetPlayerInterior(playerid,0);
ResetPlayerWeapons(playerid);
SendClientMessage(playerid,COLOR_YELLOW,"You have teleported to FunMap,have fun!");
}
else
{
SetPlayerPos(playerid,273.3236,-934.7064,470.9164);
SetPlayerInterior(playerid,0);
ResetPlayerWeapons(playerid);
SendClientMessage(playerid,COLOR_YELLOW,"You have teleported to FunMap,have fun!");
}
return 1;
}