[HELP] Press button = party shock shield

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
Post Reply
User avatar
DeDy
Posts: 132
Joined: Sun Oct 07, 2012 3:41 pm
Location: Brno, Czech Republic

[HELP] Press button = party shock shield

Post by DeDy »

Hi, please help me.

How to do that, press the button on the wall, produce the spell "shock_shield"?
This spell does not contain Spawner.
Thanks.
Nightfall: First Contact – http://dedy.euweb.cz/nightfall.html
User avatar
DeDy
Posts: 132
Joined: Sun Oct 07, 2012 3:41 pm
Location: Brno, Czech Republic

Re: [HELP] Press button = party shock shield

Post by DeDy »

I solved it this way.

Code: Select all

defineObject{
	name = "orb_frost",
	class = "Item",
	uiName = "Frost Orb",
	model = "assets/models/items/apprentice_orb.fbx",
	description = "This magic balls until he finds a shield against the cold on the whole gang.",
	skill = "spellcraft",
	requiredLevel = 2,
	gfxIndex = 69,
	attackMethod = "castWandSpell",
	spell = "frost_shield",
	wandPower = 1,
	charges = 4,
	emptyItem = "orb_empty",
	weight = 2.9,
}

Code: Select all


defineObject{
	name = "orb_empty",
	class = "Item",
	uiName = "Empty Orb",
	model = "mod_assets/models/items/orb_empty.fbx",
	gfxAtlas = "mod_assets/textures/nightfall_items.tga",
	gfxIndex = 26,
	weight = 2.9,
}
Nightfall: First Contact – http://dedy.euweb.cz/nightfall.html
User avatar
Komag
Posts: 3659
Joined: Sat Jul 28, 2012 4:55 pm
Location: Boston, USA

Re: [HELP] Press button = party shock shield

Post by Komag »

But that's not from a button press, so have you abandoned that idea?
Finished Dungeons - complete mods to play
User avatar
DeDy
Posts: 132
Joined: Sun Oct 07, 2012 3:41 pm
Location: Brno, Czech Republic

Re: [HELP] Press button = party shock shield

Post by DeDy »

No, I didn't know how to do it and hope no one on the Forum. I thought about this and created two new visible secret places. I'm now more satisfied than originally with a button on the wall.
Nightfall: First Contact – http://dedy.euweb.cz/nightfall.html
Post Reply