[FilterScript] Jump 150m - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Filterscripts (
https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] Jump 150m (
/showthread.php?tid=186125)
Jump 150m -
Rapidman - 27.10.2010
The jump of 150m
Can you import. Type the command /jump
and You will find 150 meters from the grouse with a parachute
You will teleport to 150m in this area:
http://www.hostingpics.net/viewer.ph...rte_vierge.jpg
Then you have two posts at the top left:
http://www.hostingpics.net/viewer.ph...4sa_mp_003.png
But be careful not to get crushed!
MediaFire link (pwn) :
http://www.mediafire.com/?f2arho4lgi1aj5o
MediaFire link (amx) :
http://www.mediafire.com/?t27isqc4c2oh3dm
Re : Jump 150m -
Karting06 - 27.10.2010
Not bad. Everyone can make this!
Re: Jump 150m -
XpDeviL - 28.10.2010
Very very basic. A little more advantaged:
With this code jumps of 150 meters from where you are:
Код:
if(strcmp(cmdtext, "/jump") == 0)
{
new Float: Pos[4];
SendClientMessage(playerid,COLOR_YELLOW,"You are at 150m from the ground.");
SendClientMessage(playerid,COLOR_GREEN,"When the message appear open your parachute.");
GetPlayerPos(playerid, Pos[1], Pos[2], Pos[3]);
SetPlayerPos(playerid, Pos[1], Pos[2], Pos[3]+350);
GivePlayerWeapon(playerid, 46, 1000);//Parachute
return 1;
}
Re: Jump 150m -
royal_king - 28.10.2010
xD nice i think you are beginner nice for your first release but try to make little more like adding map and etc etc..
Re: Jump 150m -
Den_Deluxe - 28.10.2010
For beginner nice but dont be shy - be creative!
Re: Jump 150m -
Jochemd - 28.10.2010
It's nice for beginners, yes. But XpDeviL is right: it needs to be mroe advanced to be an interested Filterscript.