camera plugin: add Look South/East/West option to compass
This commit is contained in:
1
runelite-client/src/main/scripts/ToplevelCompassOp.hash
Normal file
1
runelite-client/src/main/scripts/ToplevelCompassOp.hash
Normal file
@@ -0,0 +1 @@
|
||||
6A53DA1D918405E3F314E4350A9CF4002988E5C45E06D37A00AA725003FAD064
|
||||
55
runelite-client/src/main/scripts/ToplevelCompassOp.rs2asm
Normal file
55
runelite-client/src/main/scripts/ToplevelCompassOp.rs2asm
Normal file
@@ -0,0 +1,55 @@
|
||||
.id 1050
|
||||
.int_stack_count 1
|
||||
.string_stack_count 0
|
||||
.int_var_count 2 ; +1 for saving target angle
|
||||
.string_var_count 0
|
||||
; Remove check of op index
|
||||
; iload 0
|
||||
; iconst 1
|
||||
; if_icmpne LABEL10
|
||||
get_varbit 542
|
||||
iconst 1
|
||||
if_icmpeq LABEL10
|
||||
get_varbit 4606
|
||||
iconst 0
|
||||
if_icmpne LABEL10
|
||||
jump LABEL11
|
||||
LABEL10:
|
||||
return
|
||||
LABEL11:
|
||||
; switch on op index
|
||||
iload 0
|
||||
switch
|
||||
1: LOOK_NORTH
|
||||
2: LOOK_SOUTH
|
||||
3: LOOK_EAST
|
||||
4: LOOK_WEST
|
||||
jump LABEL10
|
||||
LOOK_NORTH:
|
||||
iconst 0
|
||||
istore 1
|
||||
jump LOOK
|
||||
LOOK_SOUTH:
|
||||
iconst 1024
|
||||
istore 1
|
||||
jump LOOK
|
||||
LOOK_EAST:
|
||||
iconst 1536
|
||||
istore 1
|
||||
jump LOOK
|
||||
LOOK_WEST:
|
||||
iconst 512
|
||||
istore 1
|
||||
jump LOOK
|
||||
LOOK:
|
||||
iconst 2266
|
||||
iconst 1
|
||||
iconst 0
|
||||
sound_synth
|
||||
iconst 225
|
||||
iconst 5
|
||||
randominc
|
||||
add
|
||||
iload 1 ; load target angle
|
||||
cam_forceangle
|
||||
return
|
||||
Reference in New Issue
Block a user