I personally suggest the use of this:
NPC Code:
if (created) {
this.maxsel=the max number of items;
// The starting X Position of the menu;
this.startx = 5;
// The starting Y Position of the menu;
this.starty = 100;
}
if (timeout) {
if (keydown(0)&&this.place>0) {this.place--;}
if (keydown(2)&&this.place<this.maxsel) {this.place++;}
showimg 401,@#-->,this.startx,this.starty+(this.place*10);
changeimgvis 401,4;
changeimgzoom 401,.5;
timeout=.05;
}
thats for the cursor that points out your items.