mirror of
https://github.com/moparisthebest/rswiki-book
synced 2024-11-11 03:45:02 -05:00
26 lines
773 B
Plaintext
26 lines
773 B
Plaintext
The class check originated with the new Runescape engine update which took place around the 4xx revisions. It gives the Jagex servers the ability to check the modifiers, update, or fetch the value for a field. It also gives functionality to invoke a method with parameters and get it's return value, or check it's modifiers. Each of these functionalities are described with a request type. A class check request is built up with many of these request types.
|
|
|
|
== Response Return Codes ==
|
|
|
|
{| border=2px
|
|
! Opcode
|
|
! Description
|
|
|-
|
|
! 0
|
|
! Successfully executed the request.
|
|
|-
|
|
! -1
|
|
! ClassNotFoundException - On receive.
|
|
|-
|
|
! -2
|
|
! SecurityException - On receive.
|
|
|-
|
|
! -3
|
|
! NullPointerException - On receive.
|
|
|-
|
|
! -4
|
|
! Exception - On receive.
|
|
|-
|
|
! -5
|
|
! Throwable - On receive.
|
|
|} |