|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
||||
|
||||
|
Arena front end app
I hope this image works, I've been having trouble posting images from picasa web albums. If you can't see it, complain, and I'll try something else:
![]() Anyway, what you see here is the original intent of the bot I was working on before they reset. The program loads the stats live from the web. The Village healer button and link buttons at the bottom (theif, purchase item, change monster, etc) don't work yet, and start battle only opens your web browser (that's the way I'm gonna keep it to avoid the wRath of Rich, though I'd like to build my own battle screen that for example displays the most recent action on top), but it does create the battle, and it can log you in automatically after the first time and the deposit/withdraw buttons work. It's written in VB.Net, and when I it's a bit more complete I might post the code. Any ideas/feedback?
__________________
Primary Forums: .Net Development, MS-SQL, C Programming VB.Net: It's not your father's Visual Basic. [Moving to ASP.Net] | [.Net Dos and Don't for VB6 Programmers] Last edited by f'lar : January 22nd, 2007 at 02:02 PM. |
|
#2
|
||||
|
||||
|
Quote:
I cant see it.
__________________
Vi Veri Veniversum Vivus Vici. |
|
#3
|
||||
|
||||
|
Quote:
Yes: Quote:
What wrath? Is he going to ban you? Well, firstly I doubt it; secondly - oh noes..... Nice interface though, seems rather useful, any plans on releasing it? But anyway, since it (http://forums.devshed.com/showpost....67&postcount=18) *still* hasn't been patched, here have some Greasemonkey scripts people: Code:
// ==UserScript==
// @include http://forums.devshed.com/monsterbattle.php*
// ==/UserScript==
var data = "function new_battle() { document.location = 'http://forums.devshed.com/monsterarena.php?s=&do=create_confirm&battlename=&sceneid=14&botid=4&captcha=12345'; } function hit() { var newform = document.createElement('form'); newform.method = 'post'; newform.action = document.forms[2].action; document.body.appendChild(newform); var action = document.createElement('input'); action.name = 'charaction'; action.value = 'ohanded1'; newform.appendChild(action); newform.submit(); } function fight () { hit(); setTimeout(hit, 1000); setTimeout(hit, 2000); setTimeout(new_battle, 3000); } window.onload = fight;";
var script = document.createElement('script');
script.type = 'text/javascript';
script.text = data;
document.body.appendChild(script);
Code:
// ==UserScript== // @include http://forums.devshed.com/monsterarena.php?s=&do=create_confirm&battlename=&sceneid=14&botid=4&captcha=12345 // This gets called when you're already in a fight, so you can't create another one, so you just go back a step and hit it again, and I'm not sure if anyone else has noticed, but executing the hit action again instead of just saying confirm also confirms the end of the fight // ==/UserScript== history.go(-1); Code:
// ==UserScript== // @include http://forums.devshed.com/forumdisplay.php // @include http://forums.devshed.com/monsterarena.php // ==/UserScript== document.location = 'http://forums.devshed.com/monsterarena.php?s=&do=create_confirm&battlename=&sceneid=14&botid=4&captcha=12345'; Clearly it has no error handling, but that was the next revision and that never really got finished, and who really cares if you die? And it worked at doing what I wanted it to do, and never really crashed unless you died, or Firefox did. Oh, and if the CAPTCHA issue gets solved, then to speed things up you can easily just turn the whole thing into a single bookmarklet which hits the mob 3 times (who cares if you hit it even if you're not in a battle - there are no ill effects), gets you to solve a CAPTCHA and does it again quite easily from that code. Last edited by kuza55 : January 24th, 2007 at 07:22 AM. Reason: fixing fecked bbcode |
|
#4
|
||||
|
||||
|
Photo Attempt 2:
![]() Actually- the current version looks a little different than that. I've added a groupbox for healing tasks and moved some other things around to accommodate it. And more of the links work now. All I have left is the Update Character, Clan CP, and the item shop (the item shop is the most complicated piece so far). |
|
#5
|
||||
|
||||
|
Quote:
Maybe not, but I might..... ![]() I had built up an impressive 22 - 0 stats before everything got wiped out ![]()
__________________
Cheers, Jamie # skiFFie | Home of the 'accessibility module' for Drupal # Jamie Burns [me] Accessibility Module [drupal] # guidelines | search | wap resources | not getting help | fold to cure # Any form of employment is strictly prohibited ...... __________________ Let the might of your compassion arise to bring a quick end to the flowing stream of the blood and tears ..... Please hear my anguished words of truth. __________________ |
![]() |
| Viewing: Dev Shed Forums > Forum Information > Dev Shed Gaming Center > Check this |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|