Search found 4 matches

by StingrayNine
Fri Oct 05, 2012 10:19 pm
Forum: Modding
Topic: Pressure plate script keeps crashing
Replies: 4
Views: 3367

Re: Pressure plate script keeps crashing

just a timer, no counter. have the step off script just trigger the timer, not destroy the plate. Then have the timer set for only 0.1 seconds, and have it link to a third function that finally destroys the plate. having plates appear and disappear might seem a little odd though The plate is just a...
by StingrayNine
Fri Oct 05, 2012 9:15 pm
Forum: Modding
Topic: Pressure plate script keeps crashing
Replies: 4
Views: 3367

Re: Pressure plate script keeps crashing

it may need a very short delay - connect to a timer which will destroy it after 0.1 sec I'll be honest and tell you i'm still trying to figure out how to properly use timers and counters in the editor. Do you have a snippet for the timer? The thing which comes to my mind is making a timer, hooking ...
by StingrayNine
Fri Oct 05, 2012 8:54 pm
Forum: Modding
Topic: Pressure plate script keeps crashing
Replies: 4
Views: 3367

Pressure plate script keeps crashing

Hi guys, i tried to make a pressureplate appear when stepping over a hidden one and removing it once the created one has been stepped off. The code i have looks like this: function createPlate() spawn("temple_pressure_plate", 1, 12, 0, 0, "triggerPlate") triggerPlate:addConnector...
by StingrayNine
Fri Oct 05, 2012 5:30 pm
Forum: Modding
Topic: Dungeon Editor Released!
Replies: 47
Views: 38170

Re: Dungeon Editor Released!

I've found a bug which crashes the editor. Using the "repeat/until(condition)" lua-function crashed my editor. I'll just have to use a while-loop instead then i guess.