After a few hours using the editor I have some suggestions to try to improve it. It may already be in the editor and I haven´t known use, in which case apologies;)
1 - I can only connect 20 events a hidden pressure plate, from there the screen does not move
2 - would be interesting to add an option in the dungeon alcove to only work with a particular object, eliminating the script, as it is used quite
3 - should be available the option of connecting to hit a certain number of doors to an event such as a lever or button
suggestions
Re: suggestions
Why on earth would you need a pressure plate connected to 20 different things?
The alcove option would be nice, I suppose.
I'm not sure I understand what you mean by article number three.
The alcove option would be nice, I suppose.
I'm not sure I understand what you mean by article number three.
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
- Message me to join in!
Re: suggestions
there is a script in the script repository that can take the place of many connections
Useful scripts repository
so that one is already taken care of, though having a scroll bar in the editor is still on the "wishlist"
EDITOR Feature Requests (not bugs!)
Useful scripts repository
so that one is already taken care of, though having a scroll bar in the editor is still on the "wishlist"
EDITOR Feature Requests (not bugs!)
Finished Dungeons - complete mods to play
-
- Posts: 17
- Joined: Sat Sep 15, 2012 1:00 am
Re: suggestions
my dungeon is getting crazy at times, Try to do and you will find there isnt any scroll barNeikun wrote:Why on earth would you need a pressure plate connected to 20 different things?
The alcove option would be nice, I suppose.
I'm not sure I understand what you mean by article number three.
-
- Posts: 17
- Joined: Sat Sep 15, 2012 1:00 am
Re: suggestions
I´ll try to explain my 3rd point:
When you have 20 close doors( remenber, my dungeon is crazy) and you have to close all of them you have to do one by one. It would be interesting selecting 20 and close all of them at a time
When you have 20 close doors( remenber, my dungeon is crazy) and you have to close all of them you have to do one by one. It would be interesting selecting 20 and close all of them at a time
Re: suggestions
The problem with working on such large scales is that it creates strain. Both on the computer and the mind's capacity to process what exactly is happening and how they should react.
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
- Message me to join in!
- Montis
- Posts: 340
- Joined: Sun Apr 15, 2012 1:25 am
- Location: Grimrock II 2nd playthrough (hard/oldschool)
Re: suggestions
I don't think that would be a big problem.Neikun wrote:The problem with working on such large scales is that it creates strain. Both on the computer and the mind's capacity to process what exactly is happening and how they should react.
Try doing it per script, not per connectors.papazombie wrote:I´ll try to explain my 3rd point:
When you have 20 close doors( remenber, my dungeon is crazy) and you have to close all of them you have to do one by one. It would be interesting selecting 20 and close all of them at a time
You would have to name all doors similarly e.g. myDoor_1 to myDoor_20
Then you connect a switch (or whatever) to the following script:
Code: Select all
function closeThemDoors()
for i=1,20 do
findEntity("myDoor_"..i):close()
end
end
Re: suggestions
One other solution you could have is having multiple pressure plates on the same square.
They will be activated at the same time
They will be activated at the same time
"I'm okay with being referred to as a goddess."
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
Community Model Request Thread
See what I'm working on right now: Neikun's Workshop
Lead Coordinator for Legends of the Northern Realms Project
- Message me to join in!