Alright I really need help now, what I attempted to do was give every icon a number. So I would be trying something like this in every one.
if number = 1
@cursor.x=132
@cursor.y=265
if Input.trigger?(Input::C)
Sound.play_decision
$scene = Scene_Items.new
Except it draws the cursor when it equals zero.
Then I would change the variable like this.
if Input.trigger?(Input::RIGHT)
Sound.play_cursor
number = number + 1
elsif Input.trigger?(Input::LEFT)
Sound.play_cursor
number = number - 1
unless number = 0
Sound.play_buzzer
end
end
end
This hasn't been working at all, so can someone please tell me how I can make it work.