runelite-client: add !price command

This commit is contained in:
Adam
2017-07-16 13:49:17 -04:00
parent f8178aa2ee
commit 43f8c58d5a
10 changed files with 373 additions and 1 deletions

View File

@@ -234,4 +234,10 @@ public interface Client extends GameEngine
setter = true
)
void setGameDrawingMode(int gameDrawingMode);
@Import("cycleCntr")
int getCycleCntr();
@Import(value = "chatCycle", setter = true)
void setChatCycle(int value);
}

View File

@@ -22,7 +22,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package net.runelite.rs.api;
import net.runelite.mapping.Import;
@@ -37,4 +36,10 @@ public interface MessageNode
@Import("value")
String getValue();
@Import(
value = "value",
setter = true
)
void setValue(String value);
}