diff options
Diffstat (limited to 'npc/functions/clientversion.txt')
-rw-r--r-- | npc/functions/clientversion.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index bfc0b0001..da09f7d57 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -546,6 +546,14 @@ function script clientupdater { rodex_sendmail(gf_charid(#REFERRAL_PROG), "TMW2 Team", "Recruited Player got Lv 75!", strcharinfo(0)+" just got level 75!\nAs they get stronger, more rewards will be sent to you!", 0, PrismGift, 1); if (#REFERRAL_PROG && BaseLevel >= 100) rodex_sendmail(gf_charid(#REFERRAL_PROG), "TMW2 Team", "Recruited Player got Lv 100!", strcharinfo(0)+" just got level 100!\nTime to reap what you've sow for so long!", 0, SupremeGift, 1); + // Eisten Rewards + if (BaseLevel >= 50 && getq(TulimsharQuest_Eistein) == 2) + getitem SilverGift, 1; + if (BaseLevel >= 75 && getq(TulimsharQuest_Eistein) == 3) + getitem GoldenGift, 1; + if (BaseLevel >= 75 && getq(TulimsharQuest_Eistein) >= 3) + getitem GraduationRobe, 1; + } |