Issue information

Issue ID
#6545
Status
Fixed
Severity
Fair
Started
Hercules Elf Bot
Aug 23, 2012 17:18
Last Post
Hercules Elf Bot
Aug 23, 2012 19:40
Confirmation
N/A

Hercules Elf Bot - Aug 23, 2012 17:18

Originally posted by [b]Lunar[/b]
There is a little mistake in this script ; npc/re/cities/dewata.txt
Zeny verification is missing

if (Zeny < .@donate)
{
....
}



[CODE]
dewata,89,191,0 script Small Shrine#A::DewShrine 111,{
mes "- There is a small shrine here. -";
mes "There are many people making wishes.";
next;
switch(select("Make a donation:Make a wish:Walk away.")) {
case 1:
mes "Donation case says:";
mes "^FF00001,000 ~ 100,000 Zeny^000000";
mes "How much you want to donate?";
next;
input .@donate,0,100000;
if (.@donate < 1000) {
mes "- Cancelled. -";
close; }
mes "- What do you wish for? -";
next;
input .@wish$;
mes "You have donated to the small shrine and made the wish ^0000FF"+.@wish$+"^000000.";
next;
set Zeny, Zeny-.@donate;
specialeffect EF_FLASHER;
mes "- Mysterious energy comes out from the shrine. -";
next;
skilleffect 34,0; sc_start SC_BLESSING,360000,10;
mes "- You have received the shrine's blessing. -";
next;
mes "- It feels like this wish could come true. -";
close;
....
[/CODE]

Hercules Elf Bot - Aug 23, 2012 17:30

Originally posted by [b]Joseph[/b]
Fixed in [rev=16693], thanks!

Hercules Elf Bot - Aug 23, 2012 17:45

Originally posted by [b]DeePee[/b]
Now the check for whether it's at least 1000 zeny is gone.

Hercules Elf Bot - Aug 23, 2012 19:24

Originally posted by [b]Joseph[/b]
Fixed in [rev=16694].

Hercules Elf Bot - Aug 23, 2012 19:40

Originally posted by [b]Euphy[/b]
Follow-up in [rev=16695]~