Cloning monster what gaves 0 exp

Talk about creating Grimrock 1 levels and mods here. Warning: forum contains spoilers!
Post Reply
Arde
Posts: 2
Joined: Tue Oct 09, 2012 5:05 pm

Cloning monster what gaves 0 exp

Post by Arde »

Hello,

is there way to spawn monster ie. snail, which gives 0 exp...
User avatar
Edsploration
Posts: 104
Joined: Wed Sep 19, 2012 4:32 pm

Re: Cloning monster what gaves 0 exp

Post by Edsploration »

You can set the exp of a monster, such as:

Code: Select all

cloneObject{
	name = "worthless_snail",
	baseObject = "snail",
	exp = 0,
}
Cheers!

Edit:
I realize it's worth a mention that custom monster definitions should be pasted into monsters.lua found in your dungeon's subdirectory: mod_assets\scripts\monsters.lua
Once that file is saved with the change in place, reload your dungeon in the Dungeon Editor. You can now place worthless_snails as opposed to normal snails.
Open Project -> Community FrankenDungeon: viewtopic.php?f=14&t=4276
Arde
Posts: 2
Joined: Tue Oct 09, 2012 5:05 pm

Re: Cloning monster what gaves 0 exp

Post by Arde »

Edsploration wrote:You can set the exp of a monster, such as:

Code: Select all

cloneObject{
	name = "worthless_snail",
	baseObject = "snail",
	exp = 0,
}
Cheers!

Edit:
I realize it's worth a mention that custom monster definitions should be pasted into monsters.lua found in your dungeon's subdirectory: mod_assets\scripts\monsters.lua
Once that file is saved with the change in place, reload your dungeon in the Dungeon Editor. You can now place worthless_snails as opposed to normal snails.
Few second after I read your edit I managed get it to work, cheers!!
Post Reply