Method and Description |
---|
compatibility.apos.Script.getOurTradedItemCount()
use Script#getLocalTradeItemCount()
|
compatibility.apos.Script.getPlayerByPid(int)
Unreliable in comparison to
Script.getPlayerByName(String) . |
compatibility.apos.Script.getSleepingFatigue()
Use
Script.getFatigue() . |
compatibility.apos.Script.getTheirTradedItemCount()
use Script#getRemoteTradeItemCount()
|
compatibility.apos.Script.isTricking()
For internal use. Legacy.
|
compatibility.apos.Script.sleep(int)
Will cause the entire game to freeze when called in main()'s thread. The RSC
servers expect a ping every 5 seconds among other things, so use of this method is
definitely not recommended. If you find yourself using this, consider updating your code to
make use of System.currentTimeMillis() or System.nanoTime().
|