Posted by Evan C on September 29, 1998 at 01:18:04:
In Reply to: Adding a Rancor in Multi-player level posted by A Dummy Editor on September 28, 1998 at 22:37:00:
: I need to add a rancor into an Multi-player level but even after i put the thing there on the map it don't appear. But I have seen that in Jabba Hut Palace (Rancor) there is one. What do I have to do to make it appear? Please help.
: A dummy
You need a cog to do that.
symbols
int newthing
template rancor
thing ghost
message startup
end
code
startup:
newthing = CreateThing(rancor, ghost);
return;
end
Or something like that that creates the enemy.
Evan C