Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - robgob

Pages: [1] 2 3 ... 8
1
Snippets / [PI] Fixing the WearItem Alche Dupe
« on: April 13, 2011, 04:29:32 am »
.::The Exploit::.
So it came to my attention that in many PI sources, players can have a client send a false Low/High Alche packet to the server, and still receive the coins without actually having the item.
And in another case, players can right click the item they wish to wear, use the clients quick keys to switch to the magic tab(while the item menu is still up), wear the item and quickly alche it at the same time. This would then let the person wear AND alche the item .

Both the wearItem and Magic on Item methods don't check to see if you actually have the item.

.::The Fix::.


In your ItemAssistant.java
Search for:
Code: [Select]
public boolean wearItem(int wearID, int slot) {add this right under it:
Code: [Select]
if (!c.getItems().playerHasItem(wearID, 1, slot)) {
//add a method here for logging cheaters(If you want)
return false;
}

in your PlayerAssistant.java search for:
Code: [Select]
public void magicOnItems(int slot, int itemId, int spellId) {
and under that add:
Code: [Select]
if (!c.getItems().playerHasItem(itemId, 1, slot)) {
//add a method here for logging cheaters(If you want)
return;
}

2
Botting/Cheating / Re: NEVER USE THIS BOT
« on: April 13, 2011, 03:37:56 am »
Why are all these people saying they don't trust powerbot? Every version i download is from their svn, and I've checked them. They're clean. No methods are used to send or use any of your account information out of the ordinary. the only method tat uses it is the login bot, for when you get logged to, the account manager (loading and saving from the RSBot_accounts file) and then the only time it loads the name is when using a script or to load the GUI.

3
Snippets / Re: Agility
« on: April 13, 2011, 03:31:49 am »
I see you've been using delta lately, why the change?

4
Snippets / Re: Construction base
« on: April 13, 2011, 03:30:55 am »
Looks pretty good ;D

5
Snippets / Re: ActionButton ID's in the run.bat
« 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);

6
Snippets / Re: Information on questtab
« on: April 13, 2011, 03:27:38 am »
looks like it will come in handy thx ;]

7
Snippets / Re: [PI] [Very Basic] Armor Trimming!
« on: April 13, 2011, 03:26:23 am »
Simple but efficient. thanks for the release.

8
Snippets / Re: Real runescape teleports
« on: April 13, 2011, 03:25:44 am »
lol nice release x]

9
Tutorials / Re: [PI][TUT]Loading text(READ NOW)
« on: April 13, 2011, 03:22:00 am »
Nice release. I already had this added to my client tho ;]

10
Tutorials / Re: My New Alert System
« on: April 13, 2011, 03:19:51 am »
Thanks everyone ^_^

11
Help / Re: Need help? I'm the guy to ask ;)
« on: April 13, 2011, 02:06:57 am »

12
Help / Re: staircase help
« on: April 13, 2011, 02:06:26 am »
then why not use the staircase object? lmao
need the id? log into your server, go to lumbridge castle second floor.

13
Projects / Re: Control Panel
« on: April 13, 2011, 02:00:38 am »
One of the best CP's I've seen,Rep ++!
-Holy
Cheese Pizza?
when will this be released for PI? this looks amazing i could use this for when i finish my server and host it :)
When I start converting it to PI lol
I support.
Convert it to Shard too,  :uj:.
Once i find a shard source

14
Projects / Re: Control Panel
« on: April 07, 2011, 06:06:38 am »
lol Thanks ;]

15
Projects / Re: Control Panel
« on: March 25, 2011, 05:36:13 pm »
Very nice. Similar to my Control Panel, but with some added features. Great job!
whats yours look like?

Pages: [1] 2 3 ... 8