summaryrefslogtreecommitdiff
path: root/npc/080-1
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-12-07 23:49:27 -0300
committerJesusaves <cpntb1@ymail.com>2021-12-07 23:49:27 -0300
commitca014dd3aed4d9854fe8cd836be7982a534d2ebe (patch)
tree9296e56394f0b682fea23f6c12e0fe9576fde029 /npc/080-1
parente28d346c54d72f85e8dfbf6c3447d9a74f39a5af (diff)
downloadserverdata-ca014dd3aed4d9854fe8cd836be7982a534d2ebe.tar.gz
serverdata-ca014dd3aed4d9854fe8cd836be7982a534d2ebe.tar.bz2
serverdata-ca014dd3aed4d9854fe8cd836be7982a534d2ebe.tar.xz
serverdata-ca014dd3aed4d9854fe8cd836be7982a534d2ebe.zip
Replace CRC's Aqua Ticket with Christmas Ticket
Diffstat (limited to 'npc/080-1')
-rw-r--r--npc/080-1/final.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/080-1/final.txt b/npc/080-1/final.txt
index 28982d61..de96701a 100644
--- a/npc/080-1/final.txt
+++ b/npc/080-1/final.txt
@@ -134,13 +134,13 @@ OnInstanceInit:
end;
OnCountFunds:
- setcurrency(countitem(AquaTicket));
+ setcurrency(countitem(XmasTicket));
end;
/* @price is total cost. @points is if we accept two items as currency. */
OnPayFunds:
//dispbottom "Hi: price="+@price+" and points="+@points;
- if( countitem(AquaTicket) < @price )
+ if( countitem(XmasTicket) < @price )
end;
/* Verify if you're not purchasing a dupe */
/* This requires servercode@712c09c2c6d848243c3426aeb3dbdf730c1e0b08 to work */
@@ -158,7 +158,7 @@ OnPayFunds:
end;
}
}
- delitem AquaTicket, @price;
+ delitem XmasTicket, @price;
/* Record the items on the bitmask (far more important) */
/* This requires servercode@712c09c2c6d848243c3426aeb3dbdf730c1e0b08 to work */
for (.@i=0;.@i < getarraysize(@bought_nameid); .@i++) {
@@ -182,7 +182,7 @@ OnPayFunds:
}
delcells("X21LF@"+X21ID());
specialeffect(FX_MAGIC_WICKED_SPAWN, AREA, getcharid(3));
- getitem AquaTicket, X21_TICKET_BOSS;
+ getitem XmasTicket, X21_TICKET_BOSS;
'XMAS21FINAL = true;
maptimer2(getmap(), 10, "#X21BarrierF::OnSesame");
end;
@@ -191,12 +191,12 @@ OnInit:
end;
OnSesame:
dispbottom l("Without the guardians, the illusion is just that: An illusion. The path is clear.");
- getitem AquaTicket, X21_TICKET_SUPPORT;
+ getitem XmasTicket, X21_TICKET_SUPPORT;
getexp X21_EXP_PUZZLE, 0;
end;
OnKil:
mapannounce getmap(), "One of the guardians has been eliminated by "+strcharinfo(0), 0;
- getitem AquaTicket, X21_TICKET_SUPPORT + 1;
+ getitem XmasTicket, X21_TICKET_SUPPORT + 1;
X21INIT();
end;
}