anti-novice exploit fix

should be added to any quests where u once get free items

git-svn-id: https://svn.code.sf.net/p/rathena/svn/athena@234 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
Lupus 2004-11-17 20:40:39 +00:00
parent 688999f300
commit 9c3894ec52
3 changed files with 8 additions and 5 deletions

View File

@ -8,8 +8,7 @@ Darkchild
* Sage - Done * Sage - Done
* Monk Quest - Botting An Acolyte Atm * Monk Quest - Botting An Acolyte Atm
Lupus Lupus
* removing a loop from grandpa_pharmacist.txt (similiar to Juice quest) 0% * looking for exploits, optimization, bugs hunt
* removing Zeny exploits from Milkman, Juice maker, Potion maker 0%
kobra_k88 kobra_k88
* Optimize WoE * Optimize WoE
@ -35,6 +34,8 @@ Other Ppl
Date Added Date Added
====== ======
11/18
* Prontera.txt (Sewers) anti-novice exploit fix. should be added to any quests/banks where u once get free items/zeny [Lupus]
11/17 11/17
* Fixed valkyrie.txt (wrong condition check, temp var->perm vars) but it still has no exit for common players [Lupus] * Fixed valkyrie.txt (wrong condition check, temp var->perm vars) but it still has no exit for common players [Lupus]
* - Fixed guardians hp not updating when investment in defense is made. * - Fixed guardians hp not updating when investment in defense is made.

View File

@ -3,13 +3,14 @@
//===== By: ================================================== //===== By: ==================================================
//= kobra_k88 //= kobra_k88
//===== Current Version: ===================================== //===== Current Version: =====================================
//= 1.0 //= 1.1
//===== Compatible With: ===================================== //===== Compatible With: =====================================
//= eAthena 7.15 + //= eAthena 7.15 +
//===== Description: ========================================= //===== Description: =========================================
//= //=
//===== Additional Comments: ================================= //===== Additional Comments: =================================
//= Fully working //= Fully working
//= +AntiNovice exploit fix [Lupus]
//============================================================ //============================================================
@ -153,6 +154,8 @@ prt_in.gat,88,105,2 script Recruiter 105,{
next; next;
mes "[Recruiter]"; mes "[Recruiter]";
mes "We decided to recruit volunteers to deal with the 'issues' that have been plauging our cities' sewers."; mes "We decided to recruit volunteers to deal with the 'issues' that have been plauging our cities' sewers.";
if (Class==Job_Novice) mes "But you're a novice. Go get at least a job...";
if (Class==Job_Novice) close;
next; next;
menu "Volunteer.",L0,"Issues...?",L1,"Quit",LEnd; menu "Volunteer.",L0,"Issues...?",L1,"Quit",LEnd;

View File

@ -54,5 +54,4 @@ mes "Can you please help me?";
mes "[Sherri]"; mes "[Sherri]";
mes "*sighs*"; mes "*sighs*";
close; close;
close;
} }