Jump to content

Zirnek

Scripter II
  • Posts

    9
  • Joined

  • Last visited

  • Feedback

    0%

About Zirnek

Profile Information

  • Gender
    Male
  • Location:
    Oneirataxia
  • Interests
    Dark Souls, dependable and wholesome friends.

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Zirnek's Achievements

Newbie

Newbie (1/10)

3

Reputation

  1. The purpose of this script is to finish the Easy Wilderness Diary, it's just something I threw together awhile back in a couple of days while testing out new things. It will take care of everything for you, just let it run, might have some bugs, so supervise it, as I have only had the chance to test this a couple of times. Requirements: Access to p2p worlds (Membership) 15 mining, 20 agility, 21 magic. At least 30+ in melee stats, 60+ hitpoints is advised. ( Spoiler for Media ) :
  2. I don't want to be friends with anybody here, I don't need help, I realize it was a mistake to engage any conversation here, and you are a fool to assume I have absolutely no skills just because I don't waste my whole fucking life away chatting to nobodies on the internet. Your perception of who I am is worthless and indifferent to me. So long.
  3. Yet you can't give me a straight answer to this 'basic' problem. A few lines of code for a simple and straight forward point to be made, there's no reason to paste my whole fucking class in here of redundant code. Just forget it, seems your understanding of Java isn't as great as your ego. Pitiful.
  4. As I already mentioned at the start of my post, you cannot lump in static method with instanced one. public static void status(String log) { log(log); //<---INSTANCED method loggerString=log; } This will not work. I cannot move it over to every class I want to use it in, that's inefficient and won't work as I need the String "loggerString" to be used for onPaint(g).
  5. Say I have this in my Main class: private String loggerString =""; public void status(String log) { log(log); loggerString=log; } And I want to execute this in onLoop() as I write a method to do something in another class like safeSpot() in class Safespot.
  6. I want to call a method from my Main class from a method inside Another class, then have that method from Another class executed back in the Main class's onLoop() method. How can I do this? I've tried extending Main class, but that just crashes the script, and using static references obviously won't work for instanced one.
×
×
  • Create New...