Search found 42 matches

by Akatana
Sun Sep 16, 2012 10:11 pm
Forum: Modding
Topic: How to let monsters drop things?
Replies: 19
Views: 18041

Re: How to let monsters drop things?

Code: Select all

cloneObject{
name = "uggardian_orb2",
baseObject = "uggardian",
health = 1,
healthIncrement = 1,
sight = 6,

onDie = function(self)
spawn("orb_of_power", self.level, self.x, self.y, self.facing)
uggdoor1:open()
end
}
try this :)
by Akatana
Sun Sep 16, 2012 3:25 pm
Forum: Modding
Topic: how to decrement/increment a counter using script
Replies: 5
Views: 6835

Re: how to decrement/increment a counter using script

counter_4:decrement() :)

e: fu too late ._.
by Akatana
Sun Sep 16, 2012 1:56 am
Forum: Modding
Topic: How to let monsters drop things?
Replies: 19
Views: 18041

Re: How to let monsters drop things?

65 + 55 + 45 = 165

I think 100% is the highest maybe they don't drop because its over 100% (9000!)
by Akatana
Sun Sep 16, 2012 1:31 am
Forum: Modding
Topic: stationary monsters
Replies: 15
Views: 17325

Re: stationary monsters

I solved it with a secret door which just spawns in front of the alcove so that the player cant get the items back :)
by Akatana
Sun Sep 16, 2012 1:26 am
Forum: Modding
Topic: Tutorial: NPC's
Replies: 1
Views: 4347

Tutorial: NPC's

So I will write a short tutorial on how to create NPC's :) First of all you need to create a new monster. I will show you an example on how it should look like: cloneObject{ name = "npcGoromorg", baseObject = "goromorg", evasion = 100000, onAttack = function(self, dir) return fal...
by Akatana
Sun Sep 16, 2012 12:33 am
Forum: Modding
Topic: stationary monsters
Replies: 15
Views: 17325

Re: stationary monsters

I mean in game ;)
So if you hit a button the item disappears
by Akatana
Sat Sep 15, 2012 11:11 pm
Forum: Modding
Topic: Cinematic Crash [Solved]
Replies: 9
Views: 8101

Re: Cinematic Crash

Sorry but then I dont know :/
by Akatana
Sat Sep 15, 2012 11:10 pm
Forum: Modding
Topic: stationary monsters
Replies: 15
Views: 17325

Re: stationary monsters

Yup already figured this out :P
But now my new problem is that I dont know how to remove an item from an alcove
by Akatana
Sat Sep 15, 2012 10:47 pm
Forum: Modding
Topic: Cinematic Crash [Solved]
Replies: 9
Views: 8101

Re: Cinematic Crash

Exactly the same error?
by Akatana
Sat Sep 15, 2012 10:43 pm
Forum: Modding
Topic: Monster Spawner question.
Replies: 3
Views: 3780

Re: Monster Spawner question.

If the cooldown is 0 the monster just spawns one times :)