summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2025-01-29 21:23:35 -0300
committerJesusaves <cpntb1@ymail.com>2025-01-29 21:23:35 -0300
commit6177ebbecb198917f7ca6b4eb46f1006c3313235 (patch)
tree1dcd5f56f241d21fc9187a680306335290f81e93
parentf20e927e1aa50ce95816e0b2259c700db05a8bfe (diff)
downloadserverdata-6177ebbecb198917f7ca6b4eb46f1006c3313235.tar.gz
serverdata-6177ebbecb198917f7ca6b4eb46f1006c3313235.tar.bz2
serverdata-6177ebbecb198917f7ca6b4eb46f1006c3313235.tar.xz
serverdata-6177ebbecb198917f7ca6b4eb46f1006c3313235.zip
A couple more missing things
-rw-r--r--npc/003-9/gambler.txt16
-rw-r--r--npc/functions/treasure.txt2
2 files changed, 9 insertions, 9 deletions
diff --git a/npc/003-9/gambler.txt b/npc/003-9/gambler.txt
index 2f1538bce..8e5a97a41 100644
--- a/npc/003-9/gambler.txt
+++ b/npc/003-9/gambler.txt
@@ -206,16 +206,16 @@ L_Select:
mesc l("What do you want to bet on? Payout is noted, 1:1 will also give you %d gold per coin on bet.", 10);
select
- rif(.@bet <= 500, "Number (1->35)"),
- rif(is_staff(), "Tuple (1->17)"),
- rif(is_staff(), "Row (1->11)"),
- "Corner (1->8)",
- "Group of 12 (1->2)",
- "Column (1->2)",
- "Odd/Even, Red/Black, Group of 18 (1->1)";
+ rif(.@bet <= 500, l("Number (1->35)")),
+ rif(is_staff(), l("Tuple (1->17)")),
+ rif(is_staff(), l("Row (1->11)")),
+ l("Corner (1->8)"),
+ l("Group of 12 (1->2)"),
+ l("Column (1->2)"),
+ l("Odd/Even, Red/Black, Group of 18 (1->1)");
if (@menu == 1) {
- .@wat=input("Which number do you believe that will be choosen? (0-36)", 0, 36);
+ .@wat=input(l("Which number do you believe that will be choosen? (0-36)"), 0, 36);
.@wat += 1; // Validation token
} else if (@menu >= 5) {
setskin "roulette_special";
diff --git a/npc/functions/treasure.txt b/npc/functions/treasure.txt
index 264c46b77..d5160f3f5 100644
--- a/npc/functions/treasure.txt
+++ b/npc/functions/treasure.txt
@@ -321,7 +321,7 @@ function create_poi {
.@y = getarg(2);
.@id = getarg(3);
npc_duplicate(sprintf("#DungeonPOI_Type%02d", .@id), .@n$, .@m$, .@x, .@y, NPC_NO_SPRITE, 0, 0, 0);
- htput($@_DUPES, .@n$, gettimetick(2) + 86400);
+ htput($@_DUPES, .@n$, gettimetick(2) + 43200);
return;
}