Hi Guys. I've been trying to get the roll result screen working but it's just not having it.
I've tried the [@Buy] [@Sell] and [Trade] options to get the screen view up and on but its 100% not working.
Any suggestions or furthered help would be great, thanks in advance.
;Main
;Script
I've tried the [@Buy] [@Sell] and [Trade] options to get the screen view up and on but its 100% not working.
Any suggestions or furthered help would be great, thanks in advance.
;Main
;Script
[@main]
#SAY
Disabled until further notice.
We are experiencing some technical difficulties with the dice not showing.
We aim to resolve this problem in the next 7 days.
We hope you understand.
#ELSESAY
Welcome <$USERNAME>! Would you like to win some money!? \
Come and play this simple game with me and you could be raking in the cash \
in seconds! \ \
Would you like to play? \ \
<Yes please/@preplay> || <Rules/@rules> || <No thanks/@exit>
[@rules]
The rules are simple, we both roll a dice the highest number wins! My dice \
will show up on the right of the box, yours on the left. We bet on the outcome,\
i offer one set stake of 100k. If you win you get double your stake back, if you \
loose you get nothing. In the case of a draw you get three quaters of your \
stake back. \ \
Would you like to play? \ \
<Yes please/@preplay> || <No thanks/@exit>
[@preplay]
Excelent first we need to sort out your stake though. Which would you like? \ \
<Low Stake/@low> - 100,000 Gold \
<Exit/@exit>
[@low]
#IF
Checkgold 100000
#ACT
TAKE GOLD 100000
movr d0 6
movr d1 6
inc d0 1
inc d1 1
playdice 2 @lowplay
#SAY
OK, bets placed! Lets play some dice! <./@lowplay> \
#ELSESAY
You don't have enough gold to play. Please come back when you do. \ \
<Exit/@exit>
[@lowplay]
#IF
equal d0 1
equal d1 1
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 2
equal d1 2
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 3
equal d1 3
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 4
equal d1 4
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 5
equal d1 5
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 6
equal d1 6
#ACT
GOTO @lowdraw
BREAK
#IF
equal d0 1
equal d1 2
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 1
equal d1 3
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 1
equal d1 4
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 1
equal d1 5
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 1
equal d1 6
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 2
equal d1 1
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 2
equal d1 3
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 2
equal d1 4
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 2
equal d1 5
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 2
equal d1 6
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 3
equal d1 1
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 3
equal d1 2
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 3
equal d1 4
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 3
equal d1 5
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 3
equal d1 6
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 4
equal d1 1
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 4
equal d1 2
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 4
equal d1 3
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 4
equal d1 5
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 4
equal d1 6
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 5
equal d1 1
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 5
equal d1 2
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 5
equal d1 3
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 5
equal d1 4
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 5
equal d1 6
#ACT
GOTO @lowloose
BREAK
#IF
equal d0 6
equal d1 1
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 6
equal d1 2
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 6
equal d1 3
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 6
equal d1 4
#ACT
GOTO @lowwin
BREAK
#IF
equal d0 6
equal d1 5
#ACT
GOTO @lowwin
BREAK
#ELSESAY
??????????????? \
<Exit>
[@lowdraw]
#ACT
GIVE GOLD 75000
#SAY
It's a Draw! \ \
<$USERNAME> rolled: <$STR(D0)> \
NPC rolled: <$STR(D1)> \ \
Here, take some money back. Play again?\ \
<Yes/@preplay> || <No/@exit>
[@lowwin]
#ACT
GIVE GOLD 200000
#SAY
You Win! \ \
<$USERNAME> rolled: <$STR(D0)> \
NPC rolled: <$STR(D1)> \ \
Here take your winnings. Play again? \ \
<Yes/@preplay> || <No/@exit>
[@lowloose]
#SAY
You loose! \ \
<$USERNAME> rolled: <$STR(D0)> \
NPC rolled: <$STR(D1)> \ \
No money for you i'm afraid. Play again? \ \
<Yes/@preplay> || <No/@exit>
;=================================================
