hi !
very good work !
hope to see your dungeon soon !
Search found 263 matches
- Mon Nov 09, 2020 10:19 am
- Forum: Mod Creation
- Topic: Dirt Cave
- Replies: 68
- Views: 45300
- Sun Nov 08, 2020 12:31 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
hello !
how i can stun my party for 2-3 sec plz ?
thx
how i can stun my party for 2-3 sec plz ?
thx
- Thu Nov 05, 2020 11:27 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
ok so it setcolor but they say (color) what they mean? a rgb code ?
- Thu Nov 05, 2020 10:18 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
hi ,
how i can define a color for LightComponent:getColor() ? it is a rgb system ? or a specifique table with color ?
thx
how i can define a color for LightComponent:getColor() ? it is a rgb system ? or a specifique table with color ?
thx
- Thu Nov 05, 2020 7:07 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
thx ! you made my day ! 

- Thu Nov 05, 2020 6:42 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
hello
in grimrock 2 , how i can shake camera ?
party:shakeCamera(0.5,1)
seems to not work anymore
ty
in grimrock 2 , how i can shake camera ?
party:shakeCamera(0.5,1)
seems to not work anymore
ty
- Tue Nov 03, 2020 5:52 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
oups sorry i edit message to make it more clear
- Tue Nov 03, 2020 5:47 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
well there are 2 kind of puzzle on where 2 spawner launch dispell , and another puzzle who use 3 spawner to launch fireball in both case , spawner need to have a chance to launch a spell together i need random for those puzzle cause there are just (dodge and intercept puzzle) this is too easy if the...
- Tue Nov 03, 2020 5:20 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
this is a simple trigger who activate 3 spawner (fireball) edit : ok i tried the first one and seems ok , to chance frequency i just have to change math method ratio ? another thing , i noticed that spawner shot one after the other , this is possible to add chance that both spawn ? thx a lot for you...
- Tue Nov 03, 2020 12:31 pm
- Forum: Mod Creation
- Topic: Ask a simple question, get a simple answer
- Replies: 3738
- Views: 1353406
Re: Ask a simple question, get a simple answer
hello another question : counter = 0 function dmdispelltrap() for i=14,15 do local tile = findEntity("spawner_"..i) if tile~=nil then local active = (tile.x+tile.y+counter) % 4 if active == 1 then tile.controller:activate() end end end counter = counter + 1 end using this , how i have something more...