Difference between revisions of "GetButtonPressed"

15 bytes added ,  20:29, 5 June 2009
m
Changing example variables
imported>Talkie Toaster
(Copying and editing example from CS wiki)
imported>Talkie Toaster
m (Changing example variables)
Line 13: Line 13:
Begin OnActivate
Begin OnActivate
showmessage ExampleMessage
showmessage ExampleMessage
set buttonPressed to 1
set awaitingInput to 1
end
end


begin gamemode
begin gamemode
if buttonPressed == 1
if awaitingInput == 1
set button to getbuttonpressed
set buttonVar to getbuttonpressed


if button > -1
if buttonVar > -1
set buttonPressed to 0
set awaitingInput to 0


if button == 0
if buttonVar == 0
; choice 1
; choice 1
elseif button == 1
elseif buttonVar == 1
; choice 2
; choice 2
elseif button == 2
elseif buttonVar == 2
; choice 3
; choice 3
endif
endif