yes, I have tried both... "final" object is never spawned if mortar clone is defined / cloned.Neikun wrote:Have you tried defining, not cloning?
EDITOR Feature Requests (not bugs!)
Re: EDITOR Feature Requests (not bugs!)
-
- Posts: 52
- Joined: Sun Feb 10, 2013 12:46 am
- Location: Dorchester, MA, USA
Re: EDITOR Feature Requests (not bugs!)
Hi Drakkan. I had no problem cloning a mortar.
items.lua
recipes.lua
I tried this ridiculous example in my sandbox dungeon, and it worked as expected. Flask + tar_bead in a regular mortar produced a healing potion. Flask + tar_bead in mortar_clone produced a long_sword. Are you missing craftingTool from the recipe?
items.lua
Code: Select all
cloneObject{
name = "mortar_clone",
baseObject = "mortar",
uiName = "Mortar Clone",
}
Code: Select all
defineRecipe{
item = "long_sword",
craftingTool = "mortar_clone",
ingredients = { 1, "flask", 1, "tar_bead", },
}
Re: EDITOR Feature Requests (not bugs!)
I just thought of something I'd like added to the editor.
A ctrl+f search feature for script entities.
Would make it so much easier to navigate scripts written by other people.
A ctrl+f search feature for script entities.
Would make it so much easier to navigate scripts written by other people.
"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: EDITOR Feature Requests (not bugs!)
Yeah, that would be nice. As it is, I ctrl-a and ctrl-c to copy the whole script, then paste in to notepad++, and go from there
Finished Dungeons - complete mods to play
Re: EDITOR Feature Requests (not bugs!)
Huh.. didn't think about that.
I did manage to find what I was looking for eventually.
Diarmuid and I, as well as the rest of the LotNR crew are working on weather.
Here's my work after 74:04 minutes of Daft Punk's Alive:
I was really only adjusting their particle system.
Diarmuid did all the skyboxing and initial particle system. Even drew an 16 frame raindrop animation. (Which took some debugging to actually animate)
Drakkan designed the town using the WIP Town wallset by Skuggasveinn.
I discovered something interesting. Using emissionTime = 0, appears to conflict with animated particles.
When it's set to 0, it only plays once.
EDIT:
What I actually learned that particle systems are defaulted with spawnBurst = true,
I did manage to find what I was looking for eventually.
Diarmuid and I, as well as the rest of the LotNR crew are working on weather.
Here's my work after 74:04 minutes of Daft Punk's Alive:

SpoilerShow

Diarmuid did all the skyboxing and initial particle system. Even drew an 16 frame raindrop animation. (Which took some debugging to actually animate)
Drakkan designed the town using the WIP Town wallset by Skuggasveinn.
I discovered something interesting. Using emissionTime = 0, appears to conflict with animated particles.
When it's set to 0, it only plays once.
EDIT:
What I actually learned that particle systems are defaulted with spawnBurst = true,
"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: EDITOR Feature Requests (not bugs!)
Counter to be able to toggle. In his dungeon, very often I need to do activate = decrement, deactivate = increment.
Nightfall: First Contact – http://dedy.euweb.cz/nightfall.html
Re: EDITOR Feature Requests (not bugs!)
If you need a counter that toggles between 0 and 1, you can set its initial value to 1 and then add a connector to the counter that sends a reset action to the counter itself. This way, you can just decrement the counter and the counter itself will handle the toggling.DeDy wrote:Counter to be able to toggle. In his dungeon, very often I need to do activate = decrement, deactivate = increment.
Steven Seagal of gaming industry
Re: EDITOR Feature Requests (not bugs!)
I don't know if this has been said, but a search function by ID would practice. When his dungeon grows it becomes difficult to find the object and not practical to go through dungeon.lua
Can also change the stacking order of objects. above or below.
Can also change the stacking order of objects. above or below.
Orwak - MOD - Beta version 1.0
Re: EDITOR Feature Requests (not bugs!)
Even if it's just a dialogue window telling you where and how frequently the item appears in the dungeon would be awesome.Damonya wrote:I don't know if this has been said, but a search function by ID would practice. When his dungeon grows it becomes difficult to find the object and not practical to go through dungeon.lua
Can also change the stacking order of objects. above or below.
Type item name in search, hit the find button.
A mini window pops up with Number of it placed with x,y,level co-ordinates.
"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!
-
- Posts: 366
- Joined: Tue Jan 15, 2013 3:26 am
- Location: Oregon
Re: EDITOR Feature Requests (not bugs!)
I have not read through the entire 30 pages, but I didn't see this on the first page summary, and that is a trap close (I think that's what it's called) on the editor, where it asks if you want to exit the application. Can't say how many time I have gone to close the play preview window and closed the editor by mistake.
My other suggestion was going to be a zoom feature, but that is already listed so I will just mention it for emphasis.
My other suggestion was going to be a zoom feature, but that is already listed so I will just mention it for emphasis.