コメント

このコメントは、【トピック】スロットへのコメントです。

コメントの内容

      mini きゅうり(投稿日:2011/10/22 19:10/22/11)
#-----
#1回に使う金額などの処理を入れる
#-----
suro = rand(5)
case suro 
 when 0 
   setVariable("1文字目", "R") 
 when 1 
   setVariable("1文字目", "〇") 
 when 2 
   setVariable("1文字目", "◎") 
 when 3
   setVariable("1文字目", "☆") 
 when 4
   setVariable("1文字目", "7") 
end 
suro = rand(5)
case suro 
 when 0 
   setVariable("2文字目", "R") 
 when 1 
   setVariable("2文字目", "〇") 
 when 2 
   setVariable("2文字目", "◎") 
 when 3
   setVariable("2文字目", "☆") 
 when 4
   setVariable("2文字目", "7") 
end 
suro = rand(5)
case suro 
 when 0 
   setVariable("3文字目", "R") 
 when 1 
   setVariable("3文字目", "〇") 
 when 2 
   setVariable("3文字目", "◎") 
 when 3
   setVariable("3文字目", "☆") 
 when 4
   setVariable("3文字目", "7") 
end 
speak(getVariable("1文字目"),getVariable("2文字目"),getVariable("3文字目"))
if getVariable("1文字目") == "R" &&
   getVariable("2文字目") == "R" &&
   getVariable("3文字目") == "R"
  #-----
  #Rが揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "〇" &&
      getVariable("2文字目") == "〇" &&
      getVariable("3文字目") == "〇"
  #-----
  #〇が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "◎" &&
      getVariable("2文字目") == "◎" &&
      getVariable("3文字目") == "◎"
  #-----
  #◎が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "☆" &&
      getVariable("2文字目") == "☆" &&
      getVariable("3文字目") == "☆"
  #-----
  #☆が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "7" &&
      getVariable("2文字目") == "7" &&
      getVariable("3文字目") == "7"
  #-----
  #7が揃った場合の処理を入れる
  #-----
end

でOKのはず。

コメントの内容(一番最初の投稿)

      mini きゅうり(投稿日:2011/10/22 19:10/22/11)
#-----
#1回に使う金額などの処理を入れる
#-----
suro = rand(5)
case suro 
 when 0 
   setVariable("1文字目", "R") 
 when 1 
   setVariable("1文字目", "〇") 
 when 2 
   setVariable("1文字目", "◎") 
 when 3
   setVariable("1文字目", "☆") 
 when 4
   setVariable("1文字目", "7") 
end 
suro = rand(5)
case suro 
 when 0 
   setVariable("2文字目", "R") 
 when 1 
   setVariable("2文字目", "〇") 
 when 2 
   setVariable("2文字目", "◎") 
 when 3
   setVariable("2文字目", "☆") 
 when 4
   setVariable("2文字目", "7") 
end 
suro = rand(5)
case suro 
 when 0 
   setVariable("3文字目", "R") 
 when 1 
   setVariable("3文字目", "〇") 
 when 2 
   setVariable("3文字目", "◎") 
 when 3
   setVariable("3文字目", "☆") 
 when 4
   setVariable("3文字目", "7") 
end 
speak(getVariable("1文字目"),getVariable("2文字目"),getVariable("3文字目"))
if getVariable("1文字目") == "R" &&
   getVariable("2文字目") == "R" &&
   getVariable("3文字目") == "R"
  #-----
  #Rが揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "〇" &&
      getVariable("2文字目") == "〇" &&
      getVariable("3文字目") == "〇"
  #-----
  #〇が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "◎" &&
      getVariable("2文字目") == "◎" &&
      getVariable("3文字目") == "◎"
  #-----
  #◎が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "☆" &&
      getVariable("2文字目") == "☆" &&
      getVariable("3文字目") == "☆"
  #-----
  #☆が揃った場合の処理を入れる
  #-----
elsif getVariable("1文字目") == "7" &&
      getVariable("2文字目") == "7" &&
      getVariable("3文字目") == "7"
  #-----
  #7が揃った場合の処理を入れる
  #-----
end

でOKのはず。