Jump to content

Pat

Members
  • Joined

  • Last visited

Everything posted by Pat

  1. Pat replied to SgtKrazy's post in a topic in Introductions
    Hello, This section is an introduction, This does not really count as an introduction..
  2. Pat replied to avian960's post in a topic in Introductions
    Hello, welcome to Runesuite!
  3. Hi

    Pat replied to Tropix's post in a topic in Introductions
    @Tropix Welcome to Runesuite! Nice to see you on this forums
  4. Pat replied to  host dean's post in a topic in Introductions
    @host dean Welcome to RuneSuite! I know of your previous streams where you duel in Runescape for high stakes! I like of your personality Dean i am glad you chose to join this Forums There will be many servers out there that you can go on to see if they make a difference!
  5. Pat replied to yrFate's post in a topic in Introductions
    @yrFate Welcome to Runesuite!! I like that you have put a little story about you, This draws you from the crowd I hope you find what it is you are looking for on this forums!
  6. Pat replied to thegostguy's post in a topic in Introductions
    Welcome to runesuite! You have a lot of experience with runescape which is a huge plus to working with servers!
  7. Pat replied to okay's post in a topic in Introductions
    Welcome to runesuite! I am certain you will find everything you will need to run a server successfully
  8. Pat replied to Ghost's post in a topic in Introductions
    @Ghost Welcome to RuneSuite! There are many tutorials and tools on this forum which should be more than enough to get your server up and running to a great standard
  9. Pat replied to ranqeeeee's post in a topic in Introductions
    @ranqeeeee Hello! How long have you been into rsps development?
  10. Pat posted a post in a topic in Introductions
    My email would not resend a password reset option so here i am on another account :( - Fester
  11. Pat replied to OmegaX's post in a topic in Introductions
    Yeah we all gotta do it Welcome to RuneSuite! I hope you manage to find what it is you are looking for here, the staff are very friendly and the community also! Good luck with your server you have great potential!
  12. Pat replied to osrsimmortal's post in a topic in Introductions
    Welcome back to the rsps scene! and welcome to RuneSuite! This website has a lot of information / data which will more than help your needs to start a rsps up again in no time at all, The people are friendly and staff are very friendly, I hope you manage to get on well with your project! Shout me a message when you are in beta i would like to see what you achieve
  13. Pat replied to ManaPot's post in a topic in Introductions
    Hello! Welcome to Runesuite, i like the fact you have put a little detail about your self!! I hope you manage to get the support you need on creating a rsps, You can always ask for help on the forums or discord help section if needed, people are very responsive and help a lot! I hope you meet them and have a good time here
  14. HI!

    Pat replied to deandevpro's post in a topic in Introductions
    Hello, Welcome to runesuite! I hope you find what you are looking for and get the help if you need it
  15. Pat posted a post in a topic in Ruse
    if (hotKey == 508) { if (i == KeyEvent.VK_ESCAPE && Client.openInterfaceID != -1) { Client.instance.clearTopInterfaces(); //Client.setTab(10); } else if (i == KeyEvent.VK_F1) { Client.setTab(3); } else if (i == KeyEvent.VK_F2) { Client.setTab(4); } else if (i == KeyEvent.VK_F3) { Client.setTab(5); } else if (i == KeyEvent.VK_F4) { Client.setTab(6); } else if (i == KeyEvent.VK_F5) { Client.setTab(0); } else if (i == KeyEvent.VK_F6) { Client.setTab(1); } else if (i == KeyEvent.VK_F7) { Client.setTab(2); } else if (i == KeyEvent.VK_F8) { Client.setTab(7); } else if (i == KeyEvent.VK_F9) { Client.setTab(8); } else if (i == KeyEvent.VK_F10) { Client.setTab(9); } else if (i == KeyEvent.VK_F11) { Client.setTab(12); } else if (i == KeyEvent.VK_F12) { Client.setTab(11); } } else { if (i == KeyEvent.VK_ESCAPE && Client.openInterfaceID != -1) { Client.instance.clearTopInterfaces(); //Client.setTab(10); } else if (i == KeyEvent.VK_F1) { Client.setTab(3); } else if (i == KeyEvent.VK_F2) { Client.setTab(4); } else if (i == KeyEvent.VK_F3) { Client.setTab(5); } else if (i == KeyEvent.VK_F4) { Client.setTab(6); } else if (i == KeyEvent.VK_F5) { Client.setTab(0); } else if (i == KeyEvent.VK_F6) { Client.setTab(1); } else if (i == KeyEvent.VK_F7) { Client.setTab(2); } else if (i == KeyEvent.VK_F8) { Client.setTab(7); } else if (i == KeyEvent.VK_F9) { Client.setTab(8); } else if (i == KeyEvent.VK_F10) { Client.setTab(9); } else if (i == KeyEvent.VK_F11) { Client.setTab(12); } else if (i == KeyEvent.VK_F12) { Client.setTab(11); } } if (j < 30) j = 0; if (i == 37) j = 1; if (i == 39) j = 2; if (i == 38) j = 3; if (i == 40) j = 4; if (i == 17) j = 5; if (i == 8) j = 8; if (i == 127) j = 8; if (i == 9) j = 9; if (i == 10) j = 10; if (i >= 112 && i <= 123) j = (1008 + i) - 112; if (i == 36) j = 1000; if (i == 35) j = 1001; if (i == 33) j = 1002; if (i == 34) j = 1003; if (j > 0 && j < 128) keyArray[j] = 1; if (j > 4) { charQueue[writeIndex] = j; writeIndex = writeIndex + 1 & 0x7f; } } public void replyLastPM() { } RsApplet- What this code is doing? The VK_ESCAPE is in the name.. Closes the interfaces with ESC Here i have listed what tab numbers equal to what tab you wish to use for F keys [hot keys] tab in rsapplet.java 3 = inventory tab F1 4 = weapon slots F2 5 = prayer tab F3 6 = Mage book F4 0 = attack style F5 1 = skills tab F6 2 = quest tab F7 7 = clan chat F8 8 = friends list tab F9 9 = ignore list tab F10 10 = log out tab F11 11 = settings tab F12 12 = charactor animations 13 = summoning tab 14 = achievements tab 15 = summoning tab 16 = random inventory If you wish for the ESc key to open a tab aswel as close an interface then add the extra bit of code underneith - Client.setTab(10); I have done so to give you an idea. if (i == KeyEvent.VK_ESCAPE && Client.openInterfaceID != -1) { Client.instance.clearTopInterfaces(); Client.setTab(10); Which 10 is the log out tab, you can change the number to what ever number you like or leave alone so what ever tab you had opened before the interface gets opened is there when you close the interface, Private message me or mention me in the comments section below if i have confused anyone and i will be happy to do this for you. The server i tested this on was immortalX which is known to work 100 percent on. I have not yet tested on other servers. Good luck~
  16. Pat replied to Madara's post in a topic in OSRS Configuration
    @Madara Thank you! You must be wondering why would i want to download old data.. To repack the objects on immortalX due to flamed torva being a wall object
  17. Pat replied to Galaxy's post in a topic in 317
    @Bananastreet I thought they called you dad
  18. Pat replied to Madara's post in a topic in Other (377-742)
    poor h1n1, more the less thank you for sharing with the community!
  19. Pat replied to Pat's post in a topic in 317
    @deaneo88 Actually all i done is download from where i purchased then uploaded for RuneSuite members to download. You are right that i am not a coder though... I missed the part where i said i was?
  20. Pat replied to Pat's post in a topic in 317
    No problem i hope you manage to get great use from it!
  21. Pat replied to Thrallix's post in a topic in 317
    Would seem not a lot of appreciation went to you for your release, Thank you for sharing with the community! once upon a time i was dreaming for this release, a shame it came once i already started a project osrs based, Gl to anyone who uses this
  22. Pat replied to Pat's post in a topic in 317
    @Zarosian No problem @RuneBlue Yeah, do you have an ide? eclipse is a great ide that many use - https://www.eclipse.org/downloads/packages/ once installed message me and i will show you how to run server and client to get on and play. @deaneo88 I use the bat for vps.. i assume everyone running a server through vps would also ;). @Vartox RSPS Yw enjoy! @Sky o.o No problem, let me know how you get on with it. @RuneBlue I found a youtube tutorial of a very good person i know of called Bananastreet, He created this tutorial for different purposes but in this tutorial it will show you how you go about loading your server and client to eclipse, how to run and so much more, it is not just a great guide for beginners, i can see people who know basics coming and using this tutorial, hell i go back to this tutorial from time to time to have a look
  23. @TAB Thank you, how do i go about adding mysql to 10host please ?
  24. Pat posted a post in a topic in RSPS Help
    Issue solved - Credits to BananaStreet
  25. Pat replied to Pat's post in a topic in 317
    @leclerc I never said exotic i said i think it is the same people as ethos which was osv so you are right there, but i only said i think, the pictures are fine from where i am sitting?