summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-05-16 08:49:15 -0300
committerJesusaves <cpntb1@ymail.com>2022-05-16 08:49:15 -0300
commit0cb9d14c7e92c6dc7a8f659de93d599d6bcb9763 (patch)
treee26bf28259c59d3c6e19f839386dc82032797ec3
parentddcc740d017c8dd133859cc47b6ac3a0f674fc49 (diff)
downloadserverdata-0cb9d14c7e92c6dc7a8f659de93d599d6bcb9763.tar.gz
serverdata-0cb9d14c7e92c6dc7a8f659de93d599d6bcb9763.tar.bz2
serverdata-0cb9d14c7e92c6dc7a8f659de93d599d6bcb9763.tar.xz
serverdata-0cb9d14c7e92c6dc7a8f659de93d599d6bcb9763.zip
Increase Lua's rewards, including an Earth Powder, as now crafting is almost a must
-rw-r--r--npc/003-2/lua.txt14
1 files changed, 8 insertions, 6 deletions
diff --git a/npc/003-2/lua.txt b/npc/003-2/lua.txt
index b5525ec17..75967f3cd 100644
--- a/npc/003-2/lua.txt
+++ b/npc/003-2/lua.txt
@@ -367,7 +367,7 @@ function luaCheckTask1 {
function luaAssignTask2 {
mesn;
- mesq l("Great! Here, I'll give you %d GP so you can start here with more ease.", 500);
+ mesq l("Great! Here, I'll give you %d GP so you can start here with more ease.", 700);
tutmes l("You can get money in several ways, including by selling monster parts, doing daily quests, gambling, and even becoming the mayor of a town. Read the [@@help://faq|FAQ@@] (opens ingame) for help."), l("Getting Money");
next;
mesn;
@@ -404,7 +404,7 @@ function luaAssignTask2 {
mesq l("Again, you don't need to do both right now, but you probably will want to. Once you have a stable alternative income, I'll have... This paperwork sorted.");
// Rewards from previous quest
next;
- Zeny+=500;
+ Zeny+=700;
getexp 200, 20;
return;
} // Fishing & Crafting
@@ -426,7 +426,7 @@ function luaCheckTask2 {
function luaAssignTask3 {
- inventoryplace Bread, 10, BottleOfTonoriWater, 1, SmokeGrenade, 3, CrazyRum, 1;
+ inventoryplace Bread, 10, BottleOfTonoriWater, 1, SmokeGrenade, 3, CrazyRum, 1, EarthPowder, 1;
mesn;
mesq l("Congratulations! I've managed to process your paperwork. Here, you'll receive the starter kit!");
@@ -434,6 +434,7 @@ function luaAssignTask3 {
mesc l("* %d %s", 3, getitemlink(SmokeGrenade));
mesc l("* %d %s", 1, getitemlink(BottleOfTonoriWater));
mesc l("* %d %s", 1, getitemlink(CrazyRum));
+ mesc l("* %d %s", 1, getitemlink(EarthPowder));
next;
mesn;
mesq l("I've also got in contact the other alliance representatives, and I've found out there's a way to bring you to Halinarzo, using Hurnscald route!");
@@ -450,7 +451,8 @@ function luaAssignTask3 {
getitem BottleOfTonoriWater, 1;
getitem SmokeGrenade, 3;
getitem CrazyRum, 1;
- Zeny+=300;
+ getitem EarthPowder, 1;
+ Zeny+=350;
getexp 250, 25;
return;
} // Minimum level/job to begin
@@ -460,14 +462,14 @@ function luaTask3 {
msObjective(JobLevel >= 7, l("* @@/@@ Job Level", JobLevel, 7));
- msObjective(Zeny >= 1000, l("* @@/@@ GP", Zeny, 1000));
+ msObjective(Zeny >= 1500, l("* @@/@@ GP", Zeny, 1500));
return;
}
function luaCheckTask3 {
return (BaseLevel >= 20 &&
JobLevel >= 7 &&
- Zeny >= 1000);
+ Zeny >= 1500);
}