[FilterScript] Launch Missle - 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] Launch Missle (
/showthread.php?tid=184725)
Launch Missle -
Rapgangsta - 21.10.2010
Launch Missile
What is?
Is a filter script with you can launch a missile from the area 51 with a simple command!
Video
[ame]http://www.youtube.com/watch?v=CK2JGNhjY64[/ame]
Commands
/Launch - " Launch the missile "
/ReloadLaunch - " Reload the missile "
Download
Link 1:
http://adf.ly/5FrVb
Link 2:
http://adf.ly/5FrRU
Credits
- Script Rapgangsta
- Idea from sergio_xd
Re: Launch Missle -
sergio_xd - 21.10.2010
idea from me? god FS
Re: Launch Missle -
<Weponz> - 21.10.2010
Shiiit thats Epic! 10/10
Re: Launch Missle -
Brian_Furious - 21.10.2010
Awesome the final of the video
Re: Launch Missle -
Criss_Angel - 21.10.2010
Does it explode?and it would be good if you added something like, you can enter a location like Los Santos - Vinewood, and then send the object there and make it explode.
Re: Launch Missle -
royal_king - 21.10.2010
Awesome! 10/10
Re: Launch Missle -
Den_Deluxe - 21.10.2010
Hahaha NICE
Re: Launch Missle -
Dime - 21.10.2010
Great work
10/10
(wont use it)
Re: Launch Missle -
DSK_Vyorel - 21.10.2010
Cool
I fixed the commands
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp("/Launch", cmdtext, true) == 0) //here
{
new Float: ics,
Float: ipsi,
Float: zeta;
for(new z; z < MAX_OBJRAZZO; z++)
{
GetObjectPos(ObjRazzo[z],ics,ipsi,zeta);
MoveObject(ObjRazzo[z],ics,ipsi,zeta+1000,80);
}
return 1;
}
if(strcmp("/ReloadLaunch", cmdtext, true) == 0) //here
{
for(new z; z < MAX_OBJRAZZO; z++)
{
DestroyObject(ObjRazzo[z]);
}
CreateObjects();
return 1;
}
return 0; //here
}
Re: Launch Missle -
sergio_xd - 21.10.2010
- Idea from This FS:
https://sampforum.blast.hk/showthread.php?tid=167559