プレイ日記
9qN ace acehall
whats the error in line 12
1そうだね
プレイ済み
返信[1]
親投稿
Lacks DHaze420
I think if you take the 'else' out of 'elseif' it will work. And it would be "You're dead" [you are dead]
0そうだね
プレイ済み
返信[2]
親投稿
komodo † 406mario
yep he beat me to it. if you have else or elseif i believe they have to be in the same line i could be wrong though.
0そうだね
プレイ済み
返信[3]
親投稿
mystman12 mystman12
Actually, they just need to be on different lines, like this: IF RNUM==1 THEN GOTO @ENPTY1 ELSEIF RNUM==2 THEN GOTO @DEAD6 ENDIF Basically, ELSEIF requires that you use a multi-line IF statement, which starts with the IF, contains the actions on the next lines, and ends with ENDIF.
1そうだね
プレイ済み
返信[4]
親投稿
9qN ace acehall
theres now an error in line 69
0そうだね
プレイ済み
返信[5]
親投稿
Lacks DHaze420
Post a screen shot of line 69.
0そうだね
プレイ済み
返信[6]
親投稿
Hanzo rzsense
Russian roulette has just two status, dead or alive. Dead has probability of 1/6 and alive has probability of 5/6. Dead probability equals to probability that a dice shows 1. The method to realize Russian roulette is so simple as follows. IF RND(6)==0 THEN ?"You're dead" ELSE ?"Magazine is empty"
0そうだね
未プレイ
返信[7]
親投稿
Kelley archer3067
how would you add sound to both hanzo
0そうだね
未プレイ
返信[8]
親投稿
Hanzo rzsense
As follows. IF RND(6)==0 THEN ?"You're dead":BEEP 081 ELSE ?"Magazine is empty":BEEP 079 ENDIF Of course you can also write it in a line as follows. In this case, "ENDIF" is unnecessary. IF RND(6)==0 THEN ?"You're dead":BEEP 081 ELSE ?"Magazine is empty":BEEP 079
0そうだね
未プレイ