summaryrefslogtreecommitdiff
path: root/npc/cities/aldebaran.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/cities/aldebaran.txt')
-rw-r--r--npc/cities/aldebaran.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/npc/cities/aldebaran.txt b/npc/cities/aldebaran.txt
index f4b3662fc..494247912 100644
--- a/npc/cities/aldebaran.txt
+++ b/npc/cities/aldebaran.txt
@@ -779,7 +779,7 @@ aldeba_in,84,166,4 script Kafra Service#alde 4_F_KAFRA1,{
end;
}
else {
- set .@kafrapassmoney,countitem(1084)*2000;
+ .@kafrapassmoney = countitem(1084)*2000;
mes "[Kafra Pavianne]";
mes "Let's see...";
if (countitem(1084) == 1) {
@@ -1194,7 +1194,7 @@ function script F_Lottery {
mes "How many times do you want the Lottery Machine to spin? You can choose up to 5 times.";
next;
input @input;
- if(@input < 1 || @input > 5) set @input, rand(1,5); //Lupus's fix
+ if(@input < 1 || @input > 5) @input = rand(1,5); //Lupus's fix
callsub sF_Spin;
mes "[Kafra]";
mes "Ok~ Let me check the results~ guess what it is?";
@@ -1267,8 +1267,8 @@ sF_Spin:
mes "[Lottery Machine]";
mes "(rumble~rumble~rumble~)...";
next;
- set @temp, rand(10);
- set @input, @input -1;
+ @temp = rand(10);
+ --@input;
if(@input <= 0) return;
goto sF_Spin;
}