Fixed Shuriken Rekka requiring Cracked Diamond rather than Steel

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@8949 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Playtester 2006-10-06 22:48:53 +00:00
parent 30888904c1
commit 91783e94c5
2 changed files with 161 additions and 160 deletions

View File

@ -30,6 +30,7 @@ Playtester
Date Added Date Added
====== ======
10/06 10/06
* Fixed Shuriken Rekka requiring Cracked Diamond rather than Steel [Playtester]
* Added official treasure spawn to Novice Castles [Lupus] * Added official treasure spawn to Novice Castles [Lupus]
- Added official Novice WoE restriction: Only the 1st class players (+Novice, SN) < 60 Base Level can enter. - Added official Novice WoE restriction: Only the 1st class players (+Novice, SN) < 60 Base Level can enter.
- You can't invest Eco/Def, hire Guardians at Novice Castles - You can't invest Eco/Def, hire Guardians at Novice Castles

View File

@ -127,9 +127,9 @@ M_REKKA:
mes "So let me check for your items..."; mes "So let me check for your items...";
set @z,78000; set @z,78000;
if(Zeny < @z) goto L_NOZENY; if(Zeny < @z) goto L_NOZENY;
if(countitem(733)<50 || countitem(7098)<100 || countitem(7097)<100 || countitem(7521)<50) goto L_NOITEMS; if(countitem(999)<50 || countitem(7098)<100 || countitem(7097)<100 || countitem(7521)<50) goto L_NOITEMS;
set Zeny,Zeny-@z; set Zeny,Zeny-@z;
delitem 733,50; delitem 999,50;
delitem 7098,100; delitem 7098,100;
delitem 7097,100; delitem 7097,100;
delitem 7521,50; delitem 7521,50;