summaryrefslogtreecommitdiff
path: root/world/map/npc/021-2/government_building.txt
diff options
context:
space:
mode:
authormekolat <mekolat@gmail.com>2014-10-22 15:41:11 -0400
committermekolat <mekolat@gmail.com>2014-10-22 15:58:46 -0400
commit6403fda71f2788b0cd18405503e718ace09f034f (patch)
tree99eb56d559ff5c288379d138ab59051d843aa51d /world/map/npc/021-2/government_building.txt
parent50e70491ff4595f299ee737f68d718175597e08d (diff)
downloadserverdata-6403fda71f2788b0cd18405503e718ace09f034f.tar.gz
serverdata-6403fda71f2788b0cd18405503e718ace09f034f.tar.bz2
serverdata-6403fda71f2788b0cd18405503e718ace09f034f.tar.xz
serverdata-6403fda71f2788b0cd18405503e718ace09f034f.zip
remove basic skills
Diffstat (limited to 'world/map/npc/021-2/government_building.txt')
-rw-r--r--world/map/npc/021-2/government_building.txt56
1 files changed, 6 insertions, 50 deletions
diff --git a/world/map/npc/021-2/government_building.txt b/world/map/npc/021-2/government_building.txt
index 89abee80..9aea5916 100644
--- a/world/map/npc/021-2/government_building.txt
+++ b/world/map/npc/021-2/government_building.txt
@@ -144,71 +144,27 @@ S_give_rings:
set @halloween_npc_id, $@halloween_npc_tathin;
callfunc "TrickOrTreat";
- if (getskilllv(SKILL_PARTY) == 2 )
- goto L_Base_Menu;
- if (BaseLevel >= 15
- && getskilllv(SKILL_PARTY) == 1)
- goto L_Can_Make_Party;
- if (getskilllv(SKILL_PARTY) == 1)
- goto L_Base_Menu;
- if (BaseLevel >= 10)
- goto L_Can_Party;
goto L_Base_Menu;
L_Base_Menu:
menu
+ "I'd like to join a party.", L_Give_Party,
+ "I'd like to create my own party.", L_Give_Make_Party,
"Nothing, I guess.", L_Close;
-L_Can_Party:
- menu
- "I'd like to get a party permit.", L_Get_Party,
- "Nothing, I guess.", L_Close;
-
-L_Can_Make_Party:
- menu
- "I'd like to get a party creator permit.", L_Get_Make_Party,
- "Nothing, I guess.", L_Close;
-
-L_Get_Party:
- mes "[Tathin]";
- mes "\"A permit to join parties costs 10 GP.\"";
- next;
- menu
- "OK", L_Give_Party,
- "No thank you", L_Close;
-
L_Give_Party:
- if (Zeny < 10)
- goto L_NotEnoughMoney;
- set Zeny, Zeny - 10;
- setskill SKILL_PARTY, 1;
mes "[Tathin]";
- mes "\"Here's your permit. You'll need to be invited by an existing member of a party to join it.\"";
+ mes "\"You'll need to be invited by an existing member of a party to join it. You may also create your own party.\"";
next;
mes "[Tathin]";
mes "\"Remember, parties cannot share experience if any members are more than 10 levels apart.\"";
- close;
-
-L_Get_Make_Party:
- mes "[Tathin]";
- mes "\"A permit to create parties costs 50 GP.\"";
- next;
menu
- "OK", L_Give_Make_Party,
- "No thank you", L_Close;
+ "I'd like to create my own party.", L_Give_Make_Party,
+ "Goodbye.", L_Close;
L_Give_Make_Party:
- if (Zeny < 50)
- goto L_NotEnoughMoney;
- set Zeny, Zeny - 50;
- setskill SKILL_PARTY, 2;
- mes "[Tathin]";
- mes "\"Here's your permit. You can create parties with the 'new' or 'create' commands on the Party tab in the client. Parties need to have unique names.\"";
- close;
-
-L_NotEnoughMoney:
mes "[Tathin]";
- mes "\"You don't have enough GP\"";
+ mes "\"You can create parties with the 'new' or 'create' commands on the Party tab in the client. Parties need to have unique names.\"";
close;
L_Close: