[MOD] Stone Boulders * released*
Re: [MOD] Stone Boulders * released*
Last edited by AdrTru on Sat Mar 02, 2013 11:43 pm, edited 1 time in total.
My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
Odd way to post the link.
Here you go:
http://grimrock.nexusmods.com/mods/220
I've never heard of Sokoban. What is it?
Here you go:
http://grimrock.nexusmods.com/mods/220
I've never heard of Sokoban. What is it?
"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: [MOD] Stone Boulders * released*
It is a logic game.
Storeman must push boxes to its corect positions in stock
I wos curious how it looks as first person
Storeman must push boxes to its corect positions in stock
I wos curious how it looks as first person

My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
I wos upload source.
It contains some my made pits for big boulders
It contains some my made pits for big boulders
My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
Did someone solved 6th level? I didnt, but this level is geting from internet sites. 

My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
I did it! I beat the whole mod. I used six resets. Really neat stuff.
"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: [MOD] Stone Boulders * released*
Wow. Thank you for testing.
My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
I was able to kill my backrow by stepping forward right after pushing the boulder.
"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: [MOD] Stone Boulders * released*
Yes, I forgot get this feature back to boulder. For testing this death functions didnt suitableNeikun wrote:I was able to kill my backrow by stepping forward right after pushing the boulder.

But, I make next levels with mechanism as pits, pressure plates, push machines etc. where boulders will be move as spell anywhere in levels, will be this feature nessessery for boulders.
Now I made on mechanism (like battering ram) for pushing boulders away from wall.
My LOG2 projects: virtual money, Forge recipes, liquid potions and
MultiAlcoveManager, Toolbox, Graphic text,
MultiAlcoveManager, Toolbox, Graphic text,
Re: [MOD] Stone Boulders * released*
Hi, thanks for this wonderful mod!
I have try it, and now, it seems to work:
but just for sure: I realy dont know what I m' doing, so please can you tell me if something is wrong in what i ve done?
the clone party and hook things are not very understandable for me.
1° I have created a "clone party.lua"
I have put this code into it:
2°) I have paste the code for the boulder object into objects.lua
3°) I have paste your code into a script in the editor (called boulder_script)
4°) Then i have created a script called "test" and put this code into it: (with correct x,y position)
and finally i have connect a pressure plate to it, and always when I pass over, the boulder is spawned.
is that correct?
I have try it, and now, it seems to work:
but just for sure: I realy dont know what I m' doing, so please can you tell me if something is wrong in what i ve done?
the clone party and hook things are not very understandable for me.

1° I have created a "clone party.lua"
I have put this code into it:
SpoilerShow
Code: Select all
cloneObject{
name = "party",
baseObject = "party",
onProjectileHit = function(champion, projectile, amount)
if projectile.name == "boulder" then
party:playScreenEffect("damage_screen")
shootProjectile("boulder",party.level,party.x,party.y,party.facing, 3,0,0,0,10,0,1000,party,false)
damageTile(party.level, party.x, party.y, projectile.facing, 6, "physical", 9999)
end
return true
end,
}
3°) I have paste your code into a script in the editor (called boulder_script)
4°) Then i have created a script called "test" and put this code into it: (with correct x,y position)
SpoilerShow
Code: Select all
function boulder()
shootProjectile("boulder",1,15,22,0, 3,0,0,0,0,0,1000,nil,true)
end
is that correct?