Quote:
Originally Posted by Draenin
Well, I should explain what I've done so far:
1. Unzipped the files, copy-pasted the scripts in the zip file's 'class' folder to two classes. (instance_main, instance_level)
2. Copy-pasted the script in the zip file's 'npcs' folder to the InstanceManager NPC and added stuff from your first post.
3. Created a third class called instance_control from stuff in your first post.
Haven't attempted to post the first bit of code you posted that creates the instance, but when I copy-paste the code from the InstanceManager text in the zip file into the NPC, I get those errors. The other things seem to be fine.
Is this how it's supposed to be set up? I tried joining a level NPC to the code in each one of those three classes I made, but it still doesn't fix the problem which seems to be coming from the NPC instead.
|
"instance_main" probably needs to be just "instance" (just guessing from your naming what you did, but there should be an "instance" class). It's the base instance, not an actual usable instance, so "instance_main" doesn't really make sense. The NPC expects the class to be named just "instance" which is the root of your trouble.
I wrote out these instructions later on (in case you didn't see them):
Quote:
Originally Posted by cbk1994
|