Warning: include(/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php): failed to open stream: No such file or directory in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Warning: include(): Failed opening '/var/www/html/forum/Sources/../../../includes/depot_files/OFPEC_get_header_image.inc.php' for inclusion (include_path='.:/usr/local/lib/php') in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 146

Notice: Undefined index: OFPEC in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152

Notice: Trying to access array offset on value of type null in /var/www/html/forum/Sources/Load.php(2272) : eval()'d code on line 152
    Home   Help Login Register  

Author Topic: Dissarm missile..  (Read 630 times)

0 Members and 1 Guest are viewing this topic.

AshkenaZ

  • Guest
Dissarm missile..
« on: 23 May 2005, 22:14:52 »
I am making a mission, where one of the objectives, is to dissarm some nukes.
I made the Addaction function to call the script..

Even made it, with different options (wich wire to cut. blue, red, yellow)
But now i need a command, in the script, that would keep the missile alive.

Even when another nuke is detonated..!

How to do ???

Plz help!

« Last Edit: 23 May 2005, 22:15:06 by AshkenaZ »

Offline bedges

  • Administrator
  • *****
    • OFPEC The Editing Center
Re:Dissarm missile..
« Reply #1 on: 23 May 2005, 22:32:10 »
more info is required i think - do you mean you need to prevent the nuke from being accidentally detroyed? if so, a looped script, setting the damage to 0 every second or so would suffice. dunno - the question isn't clear  :-\

AshkenaZ

  • Guest
Re:Dissarm missile..
« Reply #2 on: 24 May 2005, 06:14:56 »
im sorry..

yes Its to prevent the missile to be destroyed..
I tried the  setdamage command.

and it Did`nt work  :(

i have to dissarm 3 nukes, in my mission.
If i dissarm them, then it should call a scipt, that should make them unbreakeble..




Offline bedges

  • Administrator
  • *****
    • OFPEC The Editing Center
Re:Dissarm missile..
« Reply #3 on: 24 May 2005, 10:39:36 »
m'kay, well that should be easy enough - the script you call after each is disarmed should be something like this:

Code: [Select]
;indestructible

?stop_indestruct:goto "end"

#loop
nuke_name setdamage 0.0
~0.1
?not (stop_indestruct):goto "loop"

#end
exit

in your init file you should initialize the 'stop_indestruct' variable by setting it to false. this means that once you call the script, it will continue looping until you make 'stop_indestruct' true.

unless a bomb goes off right next to the nukes which blows them up in one go, they should be okay :)
« Last Edit: 24 May 2005, 10:40:21 by bedges »

AshkenaZ

  • Guest
Re:Dissarm missile..
« Reply #4 on: 24 May 2005, 11:40:11 »
Thx, for your help..

It worked...  ;D