|
Post by valcheater on Nov 3, 2005 2:02:51 GMT -5
ok trying to figer out what I need to download and all to make a spell bot for skilling up enhanceing magic and smning magic. and a mining bot. what kind of tools will I need. (just names plez ill find them myself) TY in advance.
edit working on a mining bot atm and need some help. hears script so far
Func Mine() Send ("/TargetNPC"); Send ("{ENTER}") Send ("/Item "Pickaxe" <t>") Send ("{ENTER}") Sleep (5000) Autosort() *note autosort is script taken from fishing bot script help section so TY who ever posted it.
that's where im stuck at. I wana set a if line so that if I have 55 items after the sort it will End Func and do a call to let me know its at 55 items. I know the call part it would be this Send ("/p 55 items obtained <call2>") Send ("{ENTER}") and if not I want it to loop and start over and keep looping till its at 55 items. if there isint a way to check ill just have to use $myval and have it end after 50 digs or so and just restart it after that.
|
|
Rzn
Junior Member
Posts: 55
|
Post by Rzn on Nov 3, 2005 6:24:16 GMT -5
The skill up bot you could do in autoit actool or lunar. The minning bot is limted to actool(& ffact) or lunar. I would sujest looking over the lunar docs and examples found on this board. I really think lunar would be the easyest to setup and test in both cases.
|
|
|
Post by TinyTerror on Nov 3, 2005 8:25:53 GMT -5
Heh, except for the bugs
|
|
petar113507
Full Member
Damn Straight. I Am the king of waffelagia.
Posts: 166
|
Post by petar113507 on Nov 3, 2005 15:41:21 GMT -5
si si~ It is possible to set up in a loop. You're using AutoIT I presume, and it's a pretty easy language, but the autoterror is out of date.... I would recommend taking this up to date with Lua.
|
|
petar113507
Full Member
Damn Straight. I Am the king of waffelagia.
Posts: 166
|
Post by petar113507 on Nov 3, 2005 15:49:55 GMT -5
If you set up variables, then you could probally just use that as your item space. $MaxItemSpace=55 $CurrentItemSpace=20
Func Mine() Send ("/TargetNPC"); Send ("{ENTER}") Send ("/Item "Pickaxe" <t>") Send ("{ENTER}") Sleep (5000) Autosort()
;Using your function of mining;
While CurrentItemSpace > 54
Mine()
$CurrentItemSpace=$CurrentItemSpace + 1
Whend
that is just off the top of my head, And I dont even think it would work all too well... Consider Swiching to the lunar platform.
|
|