Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsCog Forum → I need some cogs
I need some cogs
2001-07-22, 5:16 AM #1
Can somebody make me a cog when I press a switch, an enemy (like stormtrooper,
gran, rebel commando) appears to a ghost position?
Star Wars: TODOA | DXN - Deus Ex: Nihilum
2001-07-22, 7:41 AM #2
Try this:
Code:
# Jedi Knight Cog Script
#
#Spawns an enemy at a ghost position
#
# 
# Made by Fireborn
# 
#
#

symbols

message activated

thing ghost

surface switch

template enemy

end

# ========================================================================================

code

activated:
CreateThing(enemy, ghost);

# ........................................................................................

end

↑ Up to the top!