Fixed rewards of Momotaro event

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@10336 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Playtester 2007-04-24 12:20:12 +00:00
parent 7d14deb7a5
commit 5278afe6a4
2 changed files with 44 additions and 162 deletions

View File

@ -1,6 +1,7 @@
Date Added Date Added
====== ======
2007/04/25 2007/04/25
* Fixed rewards of Momotaro event [Playtester]
* Applied L0ne_W0lf's fixes to the Kiel quest [ultramage] * Applied L0ne_W0lf's fixes to the Kiel quest [ultramage]
2007/04/24 2007/04/24
* Fixed exploitable Valkyrie Randgris respawn time [Playtester] * Fixed exploitable Valkyrie Randgris respawn time [Playtester]

View File

@ -113,215 +113,96 @@ Lget:
mes "How was it? Did you enjoy the event?"; mes "How was it? Did you enjoy the event?";
mes "I hope the arrangements at the event hall allowed you to spend an enjoyable time there."; mes "I hope the arrangements at the event hall allowed you to spend an enjoyable time there.";
next; next;
if (event_momo > 1 && event_momo < 4) if (event_momo >= 1 && event_momo < 4)
{ {
switch(rand(1,24)) switch(rand(1,10))
{ {
case 1: case 1:
getitem 627,1; //sweet milk
break;
case 2:
getitem 629,1; //singing flower
break;
case 3:
getitem 625,1; //rusty iron
break;
case 4:
getitem 619,1; //unripe apple
break;
case 5:
getitem 620,1; //orange juice
break;
case 6:
getitem 621,1; //bitter herb
break;
case 7:
getitem 622,1; //rainbow carrot getitem 622,1; //rainbow carrot
break; break;
case 8: case 2:
getitem 623,1; //earthworm the dude getitem 627,1; //sweet milk
break; break;
case 9: case 3:
getitem 624,1; //rotten fish getitem 629,1; //singing flower
break; break;
case 10: case 4:
getitem 626,1; //monster juice
break;
case 11:
getitem 628,1; //well-dried bone
break;
case 12:
getitem 630,1; //dew laden moss
break;
case 13:
getitem 631,1; //deadly noxious herb
break;
case 14:
getitem 632,1; //fatty chubby earthworm getitem 632,1; //fatty chubby earthworm
break; break;
case 15: case 5:
getitem 633,1; //sweet potato getitem 623,1; //earthworm the dude
break; break;
case 16: case 6:
getitem 634,1; //tropical banana getitem 619,1; //unripe apple
break; break;
case 17: case 7:
getitem 635,1; //orc trophy getitem 621,1; //bitter herb
break; break;
case 18: case 8:
getitem 636,1; //no recipient getitem 620,1; //orange juice
break; break;
case 19: case 9:
getitem 637,1; //old broom getitem 625,1; //rusty iron
break; break;
case 20: case 10:
getitem 638,1; //silver knife of chastity getitem 624,1; //rotten fish
break; break;
case 21:
getitem 639,1; //armlet of obedience
break;
case 22:
getitem 640,1; //shining stone
break;
case 23:
getitem 641,1; //contract in shadow
break;
case 24:
getitem 642,1; //book of the devil
break;
} }
} }
//Am Mut successful finish unknown //Am Mut successful finish unknown
if (event_momo == 4) if (event_momo == 4)
{ {
while(@i != 3) switch(rand(1,10))
{ {
switch(rand(1,24))
{
case 1: case 1:
getitem 627,1; //sweet milk getitem 659,1; //her heart
break; break;
case 2: case 2:
getitem 629,1; //singing flower
break;
case 3:
getitem 625,1; //rusty iron
break;
case 4:
getitem 619,1; //unripe apple
break;
case 5:
getitem 620,1; //orange juice
break;
case 6:
getitem 621,1; //bitter herb
break;
case 7:
getitem 622,1; //rainbow carrot
break;
case 8:
getitem 623,1; //earthworm the dude
break;
case 9:
getitem 624,1; //rotten fish
break;
case 10:
getitem 626,1; //monster juice
break;
case 11:
getitem 628,1; //well-dried bone
break;
case 12:
getitem 630,1; //dew laden moss
break;
case 13:
getitem 631,1; //deadly noxious herb
break;
case 14:
getitem 632,1; //fatty chubby earthworm
break;
case 15:
getitem 633,1; //sweet potato getitem 633,1; //sweet potato
break; break;
case 16: case 3:
getitem 634,1; //tropical banana getitem 634,1; //tropical banana
break; break;
case 17: case 4:
getitem 635,1; //orc trophy
break;
case 18:
getitem 636,1; //no recipient
break;
case 19:
getitem 637,1; //old broom
break;
case 20:
getitem 638,1; //silver knife of chastity
break;
case 21:
getitem 639,1; //armlet of obedience getitem 639,1; //armlet of obedience
break; break;
case 22: case 5:
getitem 640,1; //shining stone getitem 636,1; //no recipient
break; break;
case 23: case 6:
getitem 628,1; //well-dried bone
break;
case 7:
getitem 637,1; //old broom
break;
case 8:
getitem 635,1; //orc trophy
break;
case 9:
getitem 626,1; //monster juice
break;
case 10:
getitem 641,1; //contract in shadow getitem 641,1; //contract in shadow
break; break;
case 24:
getitem 642,1; //book of the devil
break;
}
set @i,@i+1;
} }
} }
set event_momo,5; set event_momo,5;