The Dink Network

Reply to Bonca Bug Fix

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
January 31st 2009, 07:42 AM
pq_cthunik.gif
GOKUSSJ6
Peasant He/Him Poland
Everyone should get a pizza for free in each week. 
Ok everyone have a problem with killing a bonca at farmer's quest. After you kill it it reappears on the screen and the farmer won't show up. How to fix it? Easy. Go to the fot/story folder and open s0-fqbonca3.c . Here how it looks like:

void main( void )
{
if (&FarmerQ == 3)
{
int &pwbon;
&pwbon = create_sprite(300, 165, 9, 617, 1);
sp_script(&pwbon, "en-pwbon");
wait(20);
say_stop("I've found the last bonca I have to kill!", 1);
&FarmerQ = 4;

}
}

Now add between say_stop and &FarmerQ = 4 command wait(10); like this:

void main( void )
{
if (&FarmerQ == 3)
{
int &pwbon;
&pwbon = create_sprite(300, 165, 9, 617, 1);
sp_script(&pwbon, "en-pwbon");
wait(20);
say_stop("I've found the last bonca I have to kill!", 1);
wait(10);
&FarmerQ = 4;

}
}
Add it and save it. The problem will be fixed. Bonca won't reappear after killing and then farmer will be in his own house.