Thread: Keydown
View Single Post
  #11  
Old 01-21-2002, 02:54 PM
Faheria_GP2 Faheria_GP2 is offline
Banned
Faheria_GP2's Avatar
Join Date: Oct 2001
Posts: 1,177
Faheria_GP2 is on a distinguished road
here is an example of one I made on the spur of the moment, it kinda sucks though

NPC Code:

if (playerenters) {
say2 Delete all rupees?#b>Yes No;
set yes; unset no;
}
if (playerendsreading) {
if (keydown(3)) {
say2 Delete all rupees?#bYes >No;
set no; unset yes;
}
if (keydown(1)) {
say2 Delete all rupees?#b>Yes No;
set yes; unset no;
}
if (keydown(4)) {
if (yes) playerrupees=0;
unset yes; unset no;
}
}

Reply With Quote