Home   Help Search Login Register  

Author Topic: Constant and easy satchel placement  (Read 446 times)

0 Members and 1 Guest are viewing this topic.

Offline SpecOp9

  • Members
  • *
Constant and easy satchel placement
« on: 07 Aug 2003, 06:11:57 »
Hey guys,

I'm trying to set up the satchels so that when you click, a satchel appears below your feet.  Just like it was a gun or something...

So then I can run around and click everywhere and place hundreds of satchels easily..

Ive done it before but sadly I lost it :(
With all those Multiplayer maps in the pending list...
Somebody is gonna get a heart artak ;) lol!!!!!

Offline SpecOp9

  • Members
  • *
Re:Constant and easy satchel placement
« Reply #1 on: 08 Aug 2003, 06:13:09 »
Found it, script was:

Quote
_SachelMan = _this select 0
_SachelMan RemoveMagazine "HandGrenade"
_SachelMan RemoveMagazine "HandGrenade"
_SachelMan RemoveMagazine "HandGrenade"
_SachelMan RemoveMagazine "HandGrenade"
_SachelMan RemoveMagazine "HandGrenade"
_SachelMan RemoveMagazine "HandGrenade"

_SachelMan addMagazine "PipeBomb"
_SachelMan addMagazine "PipeBomb"
_SachelMan addMagazine "PipeBomb"
_SachelMan addMagazine "PipeBomb"
#REARM

?!(alive _SachelMan) : goto "END"
@("PipeBomb" counttype magazines _SachelMan) < 4
_SachelMan addMagazine "PipeBomb"
goto "REARM"

#END
exit
With all those Multiplayer maps in the pending list...
Somebody is gonna get a heart artak ;) lol!!!!!