House Posted April 14, 2013 Share Posted April 14, 2013 Link to my simple BCEL bot example with the canvas hooked. https://github.com/HouseMD/HBot There is no updater so the hooks.txt probably contains outdated hooks however if updated, this code would function fine). Example of using Canvas hook (derp mode, painting directly on RS Canvas): Link to comment Share on other sites More sharing options...
Jewlz Posted April 14, 2013 Share Posted April 14, 2013 Nice release dude Link to comment Share on other sites More sharing options...
House Posted April 14, 2013 Author Share Posted April 14, 2013 Nice release dude Not exactly release.Just thought about uploading it to let the kiddies fap all over it xD Link to comment Share on other sites More sharing options...
vinneh Posted April 14, 2013 Share Posted April 14, 2013 Thats amazing! keep the work up and hope to see a fantastic outcome! Link to comment Share on other sites More sharing options...
XenoTools Posted April 14, 2013 Share Posted April 14, 2013 Well, thanks for the release. Will help some people. Currently studying BCEL to work on a private project myself for experience purposes, maybe this will help me by reading this code. Link to comment Share on other sites More sharing options...
House Posted April 14, 2013 Author Share Posted April 14, 2013 Well, thanks for the release. Will help some people. Currently studying BCEL to work on a private project myself for experience purposes, maybe this will help me by reading this code.I made this as a product of studying bcel myself so I hope it's reference material I'm pretty sure my methods are efficient / make sense in their situation. Link to comment Share on other sites More sharing options...
Laz Posted April 14, 2013 Share Posted April 14, 2013 Why are you guys studying BCEL lol? It's so outdated. Why not ObjectWeb ASM? Link to comment Share on other sites More sharing options...
XenoTools Posted April 15, 2013 Share Posted April 15, 2013 Why are you guys studying BCEL lol? It's so outdated. Why not ObjectWeb ASM? Because I was told BCEL was better than ASM, I only go off the information I'm given, and considering I was told this by the Computer Science instructor at my local school I figure it would be accurate information, sadly. I trust your judgement over his. I'll definately look into it. EDIT: It's code like this that just completely destroys my knowledge of conventions. if ((sleep = loop()) == -1) {.... if(sleep = loop()) == -1)???Wouldn't that be the same thing as...if(loop() == -1)Perhaps you could help me better understand how that works, as it's something i rarely see, and when I do see it... I just stare at it confused. Link to comment Share on other sites More sharing options...
DarkStorm Posted April 15, 2013 Share Posted April 15, 2013 Why are you guys studying BCEL lol? It's so outdated. Why not ObjectWeb ASM? It's not outdated! They're on 6.0 and fully support Java 7. The latest build was on Apr 02, 2013 04:20:02 AM UTC! The object-oriented representation of bytecode may result in slower processing, but in my opinion it's much more coherent than the aspect-oriented representation. Link to comment Share on other sites More sharing options...
demmonic Posted April 16, 2013 Share Posted April 16, 2013 (edited) Because I was told BCEL was better than ASM, I only go off the information I'm given, and considering I was told this by the Computer Science instructor at my local school I figure it would be accurate information, sadly. I trust your judgement over his. I'll definately look into it. EDIT: It's code like this that just completely destroys my knowledge of conventions. if ((sleep = loop()) == -1) {.... if(sleep = loop()) == -1)??? Wouldn't that be the same thing as...if(loop() == -1)Perhaps you could help me better understand how that works, as it's something i rarely see, and when I do see it... I just stare at it confused. But yeah.. Thanks for this, been wanting to mess around with byte code manipulation. Just didn't know where to start. Edited April 16, 2013 by demmonic Link to comment Share on other sites More sharing options...
Koy Posted April 16, 2013 Share Posted April 16, 2013 It's not outdated! They're on 6.0 and fully support Java 7. The latest build was on Apr 02, 2013 04:20:02 AM UTC! The object-oriented representation of bytecode may result in slower processing, but in my opinion it's much more coherent than the aspect-oriented representation. last stable release was 5.2 which was released on June 6 2006 Link to comment Share on other sites More sharing options...
XenoTools Posted April 16, 2013 Share Posted April 16, 2013 I feel ignored...... 1 Link to comment Share on other sites More sharing options...
LiamBaby Posted April 30, 2013 Share Posted April 30, 2013 Nice release, I'll look into it Link to comment Share on other sites More sharing options...