Search found 10 matches
- Tue Oct 23, 2012 9:06 am
- Forum: Modding
- Topic: [Wall Set] Northern Dungeon
- Replies: 30
- Views: 32408
Re: [Wall Set] Northern Dungeon
I got it working. I just deleted and recopied the files again.
- Tue Oct 23, 2012 8:43 am
- Forum: Modding
- Topic: [Wall Set] Northern Dungeon
- Replies: 30
- Views: 32408
Re: [Wall Set] Northern Dungeon
High Temple. But I changed the folder locations like Neikun suggested, but had to edit the script pointers as a result so I may have screwed something up. Except I can still do everything fine in the editor. Maybe I should delte the files and start over...
- Tue Oct 23, 2012 8:30 am
- Forum: Modding
- Topic: [Wall Set] Northern Dungeon
- Replies: 30
- Views: 32408
Re: [Wall Set] Northern Dungeon
Has anyone actually exported a dungeon and tried to play it using the High Temple wall set? Mine crashes to desktop (Grinrock.exe has stopped working...Windows is looking for a solution to the problem...) It seems to work fine in the editor. Just wondering if it is something I did.
- Sun Oct 14, 2012 10:40 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
I finally got it. Thank you Filipsan and Komag. Sorry it took so long. I really appreciate your help.
- Sat Oct 13, 2012 1:03 pm
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
I would still need to use the function alcoveContents four differnt times. One for each item right? v I think part of the trouble I am having is knowing where to put the name of the item or the word "item and the name of the alcove or the word entity.
- Sat Oct 13, 2012 10:38 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
It's comming along now. However, all I have to do is place mask on altar_4 and the door opens. Also the answers are still comming back false. function altarHasItem(altar,item_name) print("checking for "..item_name) for i in altar_1:containedItems() do if i.name == "chitin_boots" ...
- Sat Oct 13, 2012 3:04 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
I have it responding correctly with the first item placed. Then it checks the second item before it is place and returns a false. Each item placed after that is returning a false for the first item. Maybe a counter? Not sure how to set one up though. Also I have 4 scripts. One for each altar. Should...
- Fri Oct 12, 2012 9:57 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
Now I have a seperate script for each altar. Each altar has a connector pointed to areitemsthere function. I have also tried pointing each altar to the altarhasitem function with the door not opening after all items are in place. I have tried adding connectors to both functions for each altar with t...
- Fri Oct 12, 2012 3:31 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
OK, this is what I have so far and no errors. Door does not open after all items are placed. The Altars are pointed to the function areitemsthere. Do I need to addConnector from script to door? function armordoor() -- iterate through all contained items on alcoves, checking for a matching name for i...
- Wed Oct 10, 2012 5:46 am
- Forum: Modding
- Topic: How to check which item is in alcove?
- Replies: 75
- Views: 67738
Re: How to check which item is in alcove?
I am trying to set up a puzzle that seems to have been mentioned several times now. I have been typing script and reading this thread for 2 days and still can not get it to work right. There are 4 altars. There are 4 peices of chitin armor. Boots should be on altar 1, mask on 2, greaves and mail on ...