Author Topic: ActionButton ID's in the run.bat  (Read 106 times)

Offline AdotSells

  • Firecape Member
  • *
  • Posts: 300
  • Rep 4
    • View Profile
ActionButton ID's in the run.bat
« on: April 05, 2011, 09:53:35 pm »
DeltaCleaned
ActionButtons.java

This is for the people who cant code and need the id's of an actionbutton

In ActionButtons.java find
Quote
switch (c.actionButtonId) {
Above it add this
Quote
c.println("actionButtonID: " + c.actionButtonId);


Offline Sam

  • Bandos Member
  • *
  • Posts: 372
  • Rep 1
    • View Profile
Re: ActionButton ID's in the run.bat
« Reply #1 on: April 06, 2011, 12:42:35 am »
Thanks once again, these snippets rock ;)

Offline AdotSells

  • Firecape Member
  • *
  • Posts: 300
  • Rep 4
    • View Profile
Re: ActionButton ID's in the run.bat
« Reply #2 on: April 06, 2011, 12:49:43 am »
Thankyou :)

Offline robgob

  • Adamant Member
  • *
  • Posts: 120
  • Rep 5
  • I swarm like locust
  • Location: Michigan
    • View Profile
Re: ActionButton ID's in the run.bat
« Reply #3 on: April 13, 2011, 03:30:13 am »
Not ever source has the method println in the Client
So here you all go for other sources:
Code: [Select]
System.out.println("[Client-" + c.playerId + "-" + c.playerName + "]" + "ActionButtonID: " + c.actionButtonId);