Chaos Project

RPG Maker => Tutorials => Tutorial Requests => Topic started by: Flamesora on June 05, 2010, 07:16:56 pm

Title: Kill this much monsters.
Post by: Flamesora on June 05, 2010, 07:16:56 pm
 How do i make a event that I need to kill a number of these monsters to complete the quest
Title: Re: Kill this much monsters.
Post by: Mikhail on June 05, 2010, 08:26:26 pm
Easy, just have a requirement where the variable needs to be a certain number, and that whenever you encounter a certain monster, have the variable increase by one each time.
Title: Re: Kill this much monsters.
Post by: Flamesora on June 05, 2010, 11:20:20 pm
 For ABS script. Plus i need insturctions on this variables because im really new on that event
Title: Re: Kill this much monsters.
Post by: Wizered67 on June 06, 2010, 01:33:35 am
You're using an abs, but are new at usiong variables? What has this world come to?!
Title: Re: Kill this much monsters.
Post by: Silentknight72 on June 06, 2010, 02:05:10 am
im working on it. Just a little more thinking.....


Control Variables: [Variable 1] = Enemy [1.]'s Max HP
Control Variables: [Variable 2] = 50
Conditional Branch: [Variable 1] < [Variable 2]
Control Variables: [Variable 3] += 1
: Else:

: Branch End
Title: Re: Kill this much monsters.
Post by: Mikhail on June 06, 2010, 08:22:01 am
Quote from: Silentknight72 on June 06, 2010, 02:05:10 am
im working on it. Just a little more thinking.....


Control Variables: [Variable 1] = Enemy [1.]'s Max HP
Control Variables: [Variable 2] = 50
Conditional Branch: [Variable 1] < [Variable 2]
Control Variables: [Variable 3] += 1
: Else:

: Branch End

If he's using Blizz ABS, all he has to do is put:
Control Variable[00whatever] += 1

In the event processing. This is because in Blizz ABS, the event processing takes place after you kill an enemy.
Title: Re: Kill this much monsters.
Post by: Flamesora on June 06, 2010, 03:05:42 pm
SOLVED by myself . I used varibles :3
Title: Re: Kill this much monsters.
Post by: Silentknight72 on June 06, 2010, 11:30:17 pm
See? It's very easy if you just think deep and focus....