Issue information

Issue ID
#5554
Status
Fixed
Severity
None
Started
Hercules Elf Bot
Apr 4, 2012 17:29
Last Post
Hercules Elf Bot
Apr 18, 2012 9:27
Confirmation
N/A

Hercules Elf Bot - Apr 4, 2012 17:29

Originally posted by [b]malufett[/b]
the quest in searching for the missing part where clicking on the 'Scattered Stuff' nothing shows or executed...

in this line the oninit mus put next to the dialogue...

[CODE]
OnInit:
enablenpc "Scattered Stuff#gen2";
end;

if ((job_gen > 62) && (job_gen < 74)){
mes "- There is stuff scattered everywhere, what a mess in the lab. -";
next;
mes "- You found some small pieces of metal. -";
set job_gen,job_gen+1;
disablenpc "Scattered Stuff#gen2";
initnpctimer;
close;
}else if (job_gen == 74){
mes "- You have collected all the parts. -";
close;
}
end;[/CODE]

like this


[CODE]
if ((job_gen > 62) && (job_gen < 74)){
mes "- There is stuff scattered everywhere, what a mess in the lab. -";
next;
mes "- You found some small pieces of metal. -";
set job_gen,job_gen+1;
disablenpc "Scattered Stuff#gen2";
initnpctimer;
close;
}else if (job_gen == 74){
mes "- You have collected all the parts. -";
close;
}
end;


OnInit:
enablenpc "Scattered Stuff#gen2";
end;[/CODE]


/ok

Hercules Elf Bot - Apr 8, 2012 14:03

Originally posted by [b]JayPee[/b]
Fixed in [rev=15835].

This post has been edited by Kenpachi on Apr 18, 2012 9:26