Update MediaWiki page 'Class Check'

This commit is contained in:
Sini 2012-09-03 19:50:32 +00:00 committed by moparisthebest
parent 904d37c75d
commit 3026ccb9ac

View File

@ -1,3 +1,26 @@
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.
|}