
Originally Posted by
imdylan
k sorry, just really on a deadline and need help
right clicks the gold charm but doesnt select it or click it?
The default rs uptext doesn't work since it's private server. The simplest way (but possibly less reliable) to do this is to measure the y-distance between your click and the option you want it to choose, then after right clicking do something like:
Simba Code:
wait(RandomRange(100,200)); //wait for option menu
GetMousePos(x,y); //declare x,y as integer;
Mouse(x, y + dist, 5, 2, mouse_Left); //replace dist with the dist you measured
The more advanced methods would be using OCR/bitmap/TPA to detect the option.