From cf18ce071c79ae37e14ea38943e0b1d88da70a7b Mon Sep 17 00:00:00 2001 From: Jesusaves Date: Fri, 9 Apr 2021 13:33:57 -0300 Subject: Override --- npc/functions/slot_machine.txt | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100755 npc/functions/slot_machine.txt (limited to 'npc/functions/slot_machine.txt') diff --git a/npc/functions/slot_machine.txt b/npc/functions/slot_machine.txt new file mode 100755 index 00000000..7b8cd23d --- /dev/null +++ b/npc/functions/slot_machine.txt @@ -0,0 +1,41 @@ + +function script SlotMachine { + mes "Pull the lever..."; + next; + menu + "Pull", L_Play, + "Maybe later", L_close; + +L_Play: + if(countitem("CasinoCoins") < 1) + goto L_NoCoin; + delitem "CasinoCoins", 1; + @Temp1 = rand(7); + @Temp2 = rand(7); + @Temp3 = rand(7); + mes "Numbers: " + @Temp1 + "/" + @Temp2 + "/" + @Temp3 + "."; + next; + + if(@Temp1 != @Temp2) + goto L_Lost; + if(@Temp2 != @Temp3) + goto L_Lost; + if(@Temp1 != @Temp3) + goto L_Lost; + mes "Congratulations! You won!"; + mes "You get 10 casino coins"; + getitem "CasinoCoins", 10; + goto L_close; + +L_Lost: + mes "You lost!"; + goto L_close; + +L_NoCoin: + mes "Insert coin"; + goto L_close; + +L_close: + close2; + return; +} -- cgit v1.2.3-60-g2f50