summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-02-15 22:56:56 -0300
committerJesusaves <cpntb1@ymail.com>2021-02-15 22:56:56 -0300
commitc2fdafda58e1901629e5e346d02bf7677bde2dda (patch)
treee72dd380b2c44cdab598b04d69a940751ff67d4d
parent6c29cdb81bf7b913a5769558003374e255bcacce (diff)
downloadserverdata-c2fdafda58e1901629e5e346d02bf7677bde2dda.tar.gz
serverdata-c2fdafda58e1901629e5e346d02bf7677bde2dda.tar.bz2
serverdata-c2fdafda58e1901629e5e346d02bf7677bde2dda.tar.xz
serverdata-c2fdafda58e1901629e5e346d02bf7677bde2dda.zip
Valentine Day 2021 Event Rewards
-rw-r--r--world/map/db/item_db_generic.txt1
-rw-r--r--world/map/db/item_db_head.txt1
-rw-r--r--world/map/npc/009-1/event.txt1
-rw-r--r--world/map/npc/functions/clear_vars.txt24
4 files changed, 27 insertions, 0 deletions
diff --git a/world/map/db/item_db_generic.txt b/world/map/db/item_db_generic.txt
index f7259d3b..7e4e1fed 100644
--- a/world/map/db/item_db_generic.txt
+++ b/world/map/db/item_db_generic.txt
@@ -250,3 +250,4 @@
5225, PinkTicket, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {}, {}
5251, WumpusEgg, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {}, {}
5256, PVPCoin, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {}, {}
+5265, LoveLetter, 3, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, {}, {}
diff --git a/world/map/db/item_db_head.txt b/world/map/db/item_db_head.txt
index 04d68d74..467b6775 100644
--- a/world/map/db/item_db_head.txt
+++ b/world/map/db/item_db_head.txt
@@ -223,4 +223,5 @@
5258, BlinkingHocus, 5, 10000, 5000, 400, 0, 0, 0, 0, 0, 2, 256, 0, 0, 0, {}, {}
5259, BlinkingEvilHalloween, 5, 10000, 5000, 50, 0, 13, 0, 10, 0, 2, 256, 0, 0, 0, {}, {bonus bMdef, 5;}
5262, MovieCap, 5, 1000, 500, 50, 0, 3, 0, 0, 0, 2, 256, 0, 0, 0, {}, {}
+5264, BlueWolfHelmet, 5, 1000, 500, 50, 0, 3, 0, 0, 0, 2, 256, 0, 0, 0, {}, {}
//ID, Name___________________, Type, Price, Sell, Weight, ATK, DEF, Range, Mbonus, Slot, Gender, Loc, wLV, eLV, View, {UseScript}, {EquipScript}
diff --git a/world/map/npc/009-1/event.txt b/world/map/npc/009-1/event.txt
index 1acc126d..bd03a0ca 100644
--- a/world/map/npc/009-1/event.txt
+++ b/world/map/npc/009-1/event.txt
@@ -1,5 +1,6 @@
// Kytty <3 Valentine Day 2021
// Valentine Day 2021-02-14 script authored by Jesusalva on the 12th
+// WARNING: Rewards handled by clear_vars.txt - change it before re-enabling event
009-1,30,34,0|script|Kytty|430
{
diff --git a/world/map/npc/functions/clear_vars.txt b/world/map/npc/functions/clear_vars.txt
index 9afe5694..ca58a34e 100644
--- a/world/map/npc/functions/clear_vars.txt
+++ b/world/map/npc/functions/clear_vars.txt
@@ -39,6 +39,7 @@ function|script|ClearVariables
callsub S_Xmas2010;
callsub S_Xmas2011;
callsub S_Xmas2012;
+ callsub S_Valentine2021;
callsub S_Misc;
return; // go back to global handler
@@ -394,6 +395,29 @@ S_Bandit: // move Bandit subquest into Nibble 0 of QUEST_Hurnscald
set @bandit, 0;
return;
+S_Valentine2021:
+ if(!#VALENTINE2021) goto S_Return;
+ getinventorylist;
+ if (@inventorylist_count > 95) goto S_Return;
+ setarray @oldstock$, "GrassFedTofu", "Honey", "VeganWater", "FairTradeSoil", "LactoseFreeAcorn", "RawAir", "FreeRangeMoss", "JadeEgg";
+ if (BL_ID == 2126454)
+ getitem "JadeEgg", 1;
+ else
+ getitem @oldstock$[rand(getarraysize(@oldstock$))], 1;
+ cleararray @oldstock$, "", getarraysize(@oldstock$);
+ if (BL_ID == 2126454 ||
+ BL_ID == 2209083 ||
+ BL_ID == 2277302 ||
+ BL_ID == 2243433 ||
+ BL_ID == 2272906)
+ getitem "LoveLetter", 1;
+ getitem "BlueWolfHelmet", 1;
+ getitem "ShockSweet", rand(4, 7);
+ getitem "DarkConcentrationPotion", rand(2, 5);
+ getexp 1+(#VALENTINE2021*BaseLevel)/2, 0;
+ set #VALENTINE2021, 0;
+ return;
+
L_Deprecated:
debugmes "Explicitely calling ClearVariables after login is deprecated.";
mapexit;