ScriptUO

Official ScriptUO EasyUO Scripts => Script Library => Gold Farming => Topic started by: crameep on March 03, 2009, 02:44:29 PM

Title: crameeps - AutoKill Script
Post by: crameep on March 03, 2009, 02:44:29 PM
WARNING: This script is not a "finished" script. It does work for what I use it for and I will be activly adding new features and supporting this script the best that I can. (And if I can't I hope for a little help from the masters).

What it does:

It searches for an enemy in range, if your too close the script "Atempts" to move to a safe distance. It then tells your pet to kill that enemy and starts poisoning/peacing it accordingly( if you have those turned on.) Once the enemy is dead the script moves to the corpse loots and loots only the gold. (Gold Farming) Once you start getting heavy the script calculates how much gold it should pick up so it doesn't put you overweight. once you are full it then finds a bag of sending in your pack (pack must be open) and sends the gold to the bank. Rince and repeat. If you do happen to get attacked. the script.. "atempts" to heal you and i plan to improve on the way it defends you though suggestions tips/help would be greatly appretiated on this subject. It doesn't realy defend well yet so I recomend only using it at a spot where you dont get randomly atacked by monsters, IE swoops, meers etc.

Features:

- Auto find/Attack enemys with pet
- Auto Poison's Enemy in a timeframe you define on the menu
- Auto Peace's Enemy in a timeframe you define on the menu
- Choose to attack or ignore Paragon spawns via menu
- Attempts to put a safe distance between you and the enemy before attacking.
- Attempts to heal you while you are taking damage ( Work in progress)
- Moves to corpses and loots gold from them when there are no enemy's present.
- Uses bag of sending to send gold to bank when you are full.
- Change casting timers via menu


Coming soon:
- Start/Exit buttons that work!
- Auto Disco
- Better support for Mages with pets (Earth elly's are popular on my FS)
- Better casting features for extra DPS. eg) Menu to choose what spell to cast for damage?
- Improve Healing methods when taking damage
- Add pet healing
- Feed pets
- Move into mele range to attack after pet takes aggro.
- Improve Targeting ( If you mess around without pausing the script you could end up poisoning yourself I guess. :) hasn't happend to me though.
- More I can't think of atm

To start, dismount, I usualy move to open area where i can see multiple spawns ( That dont attack me automaticaly). With no walls around to block movement too much. Target your pet when it asks and let her rip. If you find yourself in danger. I would pause the script fast.

Warning: PAUSE BUTTON WILL NOT PAUSE WHILE HEALING/ATACKING/Looting. It only checks the pause button during the mainloop at the moment. So please bear with me on that.

Thanks to Cerv's Pause button snippet there is a pause button.

EDIT:
** I need to add headers to this script when I get home and versions. ... no header = version 0.1 :)

3/4/09
EDIT: I've now added a sub that checks the health bar of your pet and heals it at a point you set in the script, IE if you set it at 80 the script will start healing your pet at 80% health until he is above 80% health. I will upload this later this evening after a little more testing.  NEW VERSION UPLOADED PLEASE REDOWNLOAD



Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: TrailMyx on March 03, 2009, 02:51:50 PM
Cool, thanks for this.  You mentioned freeshard, but would there be anything preventing a player from using this on an OSI shard?  I can't tell from the autokill list what you were farming.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 03, 2009, 04:14:01 PM
Swoops / Meers with a cu sidhe.I dont see why OSI and freeshard should differ, ill post ss of menu later, you can change enemy types on the fly. :) this is my first menu BTW. Oh i ran it trough the script checker in suo eariler. And it gave me an error about nested sub without return but i couldn't find the error, ill recheck it when i get home.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: mack.buter on March 03, 2009, 06:09:39 PM
I tried this out worked super from what i saw.  Farmed about 350k while nonchalantly paying attention, cu sidhe worked great was healing me while i was fighting the swoops as well as spam casting heal on myself untill he got aggro.  This is pretty awesome, and decently well thought out.  Look forward to the finished script!!
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 06, 2009, 02:53:06 AM
Uploaded new version

- Beter atacking method, attempts to peace before sending pet. This should improve survivability.
- Better Looting, it will now move to new corpses after a kill instead of only when enemy is not around. ( Should i make this optional)?
- Pet Healing new variable in the setup of the file %petheal set this to the % of health you want your pet to be healed to/at. The health bar must remain where the script puts it and uncovered or this will not work.
- other tweaks / improvments I needn't mention.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: Cerveza on March 06, 2009, 07:09:33 AM
I'm pretty sure I don't have this sound wheedog.wav  ;D

Looking through the script, looks structurally sound, well laid out... one thing:

*** Warning - GOTO findcorpse - Line 168 has no matching tag

I assume you meant GOSUB findcorpse there.

I may play with this a little later, give ya some feedback.

*Oh, one thing I like to do, and this is my personal preference... if I use a loop inside a sub, I like to name it with an underscore. It makes it stand out more.

Code: [Select]
sub findenemy
  set %status Searching
  gosub updatestatus
  menu get monsterbox
  set %monster #menures
findloop:
  finditem %monster G_12
  set %movex #findx + 5
  set %movey #findy - 5
  if #findKind = -1

Code: [Select]
sub findenemy
  set %status Searching
  gosub updatestatus
  menu get monsterbox
  set %monster #menures
_findenemyloop:
  finditem %monster G_12
  set %movex #findx + 5
  set %movey #findy - 5
  if #findKind = -1

But like I said, thats my preference for keeping the code straight in my limited b/w head.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: TrailMyx on March 06, 2009, 11:02:25 AM
I'm pretty sure I don't have this sound wheedog.wav  ;D


Ohh, someones gotta post that!  I'm hoping it's in a high-pitched Kentucky-moonshine powered yell!

Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 06, 2009, 11:05:46 AM
:) ill post that later :) little death warning.
Thanks for the feedback thus far as well, thats a great idea with loops inside of subs. :)
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: TrailMyx on March 06, 2009, 11:14:09 AM
Using SUO for your initial script development helps keep that straight too.  Sometimes there's just not enough contrast between variables and labels.  Cerveza's suggestion is a good one.  If you haven't used the Syntax Checker in SUO yet, you might want to give that a whirl.  It'll really help you find missing tags and misspelled items.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 06, 2009, 11:24:43 AM
I have used it, just not in the last verision posted , i posted it from work ;/
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 07, 2009, 02:11:05 AM
Theres the wave file, Enjoy.
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: crameep on March 14, 2009, 09:20:08 AM
Hey, I'm working on adding your advanced filesystem script subs into this TrailMyx, any sugestions on the easiest way to go about this. My first thought is to make a sub to grab all the menu settings and store them into variables. Then store said variables using your filesystem script.

EDIT:

I'm playing around using the method I described above, but no files is actualy being saved period, I'm only trying 2 variables here, but it should be the general idea i suppose.

sub savesettings
gosub getsettings
gosub TM_FileSystem_CreateFileHandle NULL settings_handle
gosub TM_FileSystem_SaveVariable NULL local std settings_handle spoisontimer
gosub TM_FileSystem_SaveVariable NULL local std settings_handle loot  ; clear handle named 'handle1'
gosub TM_FileSystem_SaveFile NULL settings_handle tamersdelightsettings.txt ; save the file
return

am I correct in assuming  i leave the % off?

EDIT:

Got it working, script now officialy uses TM's filesystem subs :)
Title: Re: crameeps - Tamer/Pet Auto Kill
Post by: TrailMyx on March 14, 2009, 12:46:16 PM
Kewl beans.  Probably the nicest thing about these subs is that once you are done loading your variables back from the file, those variables are already loaded into memory for you; there's not subsequent step from that.

But glad you got it working!

BTW, love the wheedoggy!.  I didn't imaging it was from the Beverly Hillbillies.  Even better.
Title: Re: crameeps - AutoKill Script
Post by: Outkome on March 28, 2009, 09:30:40 AM
Thanks for posting this script. Been using it for the past hour no problems  :)
Title: Re: crameeps - AutoKill Script
Post by: crameep on March 28, 2009, 12:56:08 PM
Thanks! glad to see someone else using it. I cant wait to get the new version working better, im going to try TM's spell subs in it to see if it helps on some issues i've been having.
Title: Re: crameeps - AutoKill Script
Post by: Oracle on April 10, 2009, 08:18:23 AM
I tried this script last night and it works pretty well.  Every once in awhile it would spam that "a heal potion was not found" and then it would spam that "a cure potion was not found".  Also, the corpse gump often times blocked the Health Bar of my Pet which caused the Pet to not get healed, so I had to manually close it.  Looking foward to trying it when discord and some other options are added...
Title: Re: crameeps - AutoKill Script
Post by: lankdogg85 on April 14, 2009, 04:00:26 PM
okay i'm abit of n00b with scriptuo but I dont see anywhere that it gives me the option to download the script...somebody wanna point me in the right direction?
Title: Re: crameeps - AutoKill Script
Post by: TrailMyx on April 14, 2009, 04:01:34 PM
Check out the site rules.  You'll find what you need there.
Title: Re: crameeps - AutoKill Script
Post by: lankdogg85 on April 14, 2009, 04:20:06 PM
i found it...was just overlooking it...thanks though
Title: Re: crameeps - AutoKill Script
Post by: Khameleon on April 14, 2009, 04:40:11 PM
gotta love the..
1st Post: I don't see the Download link
2nd Post: NM it just appeared!
Title: Re: crameeps - AutoKill Script
Post by: TrailMyx on April 14, 2009, 05:43:27 PM
That's why we're about ready to change the posting guidelines again......  ugh.
Title: Re: crameeps - AutoKill Script
Post by: lankdogg85 on April 14, 2009, 06:22:38 PM
i didnt say it just appeared. i said i overlooked it. meaning it was my fault i didnt see it, not that it wasnt there

edit: i signed up here at the site ages ago and i understand that you have post once in order to download and view any attachments I just didnt remember that I had never posted anything initially
Title: Re: crameeps - AutoKill Script
Post by: birdinforest on April 21, 2009, 07:25:41 PM
Great work.
I tested it to farm swoop. It ran smoothly after I changed the peacemaking to discon.
Thanks for your work and would like to see the final version.
Title: Re: crameeps - AutoKill Script
Post by: Fishagnome on July 30, 2009, 09:56:55 AM
ok, just posting so i can download this script, looks pretty neat. Thx, look forward to using this site.
Title: Re: crameeps - AutoKill Script
Post by: Cerveza on July 30, 2009, 09:58:42 AM
ok, just posting so i can download this script, looks pretty neat. Thx, look forward to using this site.

Uhm... FAIL?

Have a few days to think about how your going to word your intro...
Title: Re: crameeps - AutoKill Script
Post by: Hoby on August 04, 2009, 12:39:56 AM
looks like a great script.  Nice job on the menus.  Can't wait to break it, err, try it. 
Title: Re: crameeps - AutoKill Script
Post by: crameep on November 30, 2009, 12:30:54 PM
Glad to see some people used it. Been out of UO for a litle while, working my way back in. Came back to a couple bugs in it, They way I used ENEMYID in the script no longer works. I'm working on a fix for that tonight. I should be able to post the updated version later this evening or tomorow after some testing.
Title: Re: crameeps - AutoKill Script
Post by: clube social on December 18, 2009, 11:03:04 AM
hope this works. :d
Title: Re: crameeps - AutoKill Script
Post by: Cerveza on December 18, 2009, 11:09:11 AM
hope this works. :d


Which part, the script or the ridicule that your about to receive?

If you mean the script, you won't know. You don't have access to it. You have failed to read any part of the rules here, and have not taken appropriate actions to become a member.

Once you do that, you'd be welcomed with open arms, and could download this at your leisure.

As for the ridicule that will surely follow.... well......
Title: Re: crameeps - AutoKill Script
Post by: Toptwo on December 18, 2009, 02:11:41 PM
Let me be the second....Its hard to believe that ppl actually post without reading the rules...and then they actually expect with a post like that to be able to get everything we offer....go away until you can figure out a REAL first post!
Title: Re: crameeps - AutoKill Script
Post by: raivin on December 20, 2009, 02:50:29 PM
Hey I haven't really looked at this long (I have to go to the bathroom!) but I thought I would add that I think it would be a superior script if given the option to recall to bank, drop off directly.  When scripting these things I personally do not see the need for a bag of sending. I mean, my main aversion to just going to the bank by hand is all the clicking.  Sure, the bag of sending is faster by probably about 15 seconds...but who cares about 15 seconds?  I'd rather save my powder for when I'm actually doing the playing.  But cool idea, I'll look closer after I'm done in the bathrrom :)
Title: Re: crameeps - AutoKill Script
Post by: Larppa on January 06, 2010, 02:27:56 AM
Has anyone tried using this script with CLAW? Right from the moment i saw this script i decided to give it a try and get it to call looter to get everything else valuable to my backpack too ;) I think i will eventually run into problems while trying to make it send all looted items to bank too but i will give it a try.
Title: Re: crameeps - AutoKill Script
Post by: kenshin87 on February 08, 2010, 04:36:57 PM
hey crameeps. nice script. however it seems to have a very large delay between the monster spawning and telling the pet to attack. another thing that would be nice to add is the ability to heal the pet using magery instead of vet. also when healing self it doesnt cure it just continually tries to heal using mini heals. i ran it for a bit and it looted and everything fine though just some minor adjustments. maybe an addition of auto invising as soon as all kill goes off to discourage other spawn from attacking toon. more to come but great work!! thank you
Title: Re: crameeps - AutoKill Script
Post by: splatter666 on April 04, 2010, 12:22:13 AM
Crameeps: Could u add that some armor parts (ring/Brace/Head and Talis.) are swapped before start disco and after succeslull disco swap back to luck parts?
i have a disco-peace-tamer wirth mutch skill on jewelery so it would be cool when these parts are swapped.

That would be greatful
Title: Re: crameeps - AutoKill Script
Post by: NObama on April 04, 2010, 11:50:11 AM
Quite an ambitious effort.  I look forward to trying this out.  I also look forward to stealing portions of it to make a Cu sidhe cycler.

 :)
Title: Re: crameeps - AutoKill Script
Post by: bomba on April 27, 2010, 12:35:27 PM
hi  ;) ;)   :P
Title: Re: crameeps - AutoKill Script
Post by: Cerveza on April 27, 2010, 12:45:14 PM
hi  ;) ;)   :P

This is a classic example of how NOT to get access on these forums.

If someone wants access they simply have to read the rules, post a good intro and *POOF* restriction removed.
Title: Re: crameeps - AutoKill Script
Post by: bomba on April 27, 2010, 01:23:44 PM
I submitted an introduction. and I apologize for my incompetence.
Title: Re: crameeps - AutoKill Script
Post by: Cerveza on April 27, 2010, 06:58:19 PM
I submitted an introduction. and I apologize for my incompetence.

No need, notice the *POOF* ? Welcome aboard.

;)
Title: Re: crameeps - AutoKill Script
Post by: bomba on May 16, 2010, 12:45:24 PM
I been testing this script out for a while now. It seems to get stuck in "attacking" mode and keeps peacing my dragon. I have tried several things editing the script in easyuo to try get it to function. I am not very good with scripts just thought I should post in hopes of maybe getting it to work.
Title: Re: crameeps - AutoKill Script
Post by: hrs024 on May 24, 2010, 09:52:37 AM
pretty basic script that does the job==]]]] couldnt quite get the disco to work but other than that easy 100k while i take a shower thanksss
Title: Re: crameeps - AutoKill Script
Post by: gruntman on April 17, 2011, 07:09:02 AM
I would like to ask if someone could please assist me with adjusting the script so that my tamer does not attack the target...I keep getting killed because of it. I am a mage and soft as butter atm...lol   thanks in advance for any and all help.
Title: Re: crameeps - AutoKill Script
Post by: Umi on July 08, 2011, 07:57:54 AM
Just Dl'd the script but have to wait for EUO to be updated before I can give it a whirl :(  I will update once it's back up.
Title: Re: crameeps - AutoKill Script
Post by: krisn on August 06, 2011, 01:53:33 AM
Thank you for you script.
Title: Re: crameeps - AutoKill Script
Post by: jetstar on December 24, 2011, 10:19:42 AM
Script is awesome!

if someone has already exchanged the paladin spells plese upload file.
Title: Re: crameeps - AutoKill Script
Post by: mvp134 on September 06, 2012, 07:00:59 AM
 ;D
nice script
thx man~~
its awesome
Title: Re: crameeps - AutoKill Script
Post by: Black Widow on November 03, 2012, 04:40:28 PM
Awesome setup ...MVP, thanks for the contribution !!!
Title: Re: crameeps - AutoKill Script
Post by: wokao98 on December 26, 2012, 05:59:16 PM
COOL ::) ::) ::)
Title: Re: crameeps - AutoKill Script
Post by: NObama on December 27, 2012, 06:32:55 AM
What is deliciously ironic are the similar number of posts above this one that got ridiculed years ago.  Yet here we are again...
Title: Re: crameeps - AutoKill Script
Post by: emphy on July 28, 2014, 02:46:19 PM
The download link seems to lead to the old version, or I'm doing something wrong.

Some help would be nice :3
Title: Re: crameeps - AutoKill Script
Post by: pasak on August 08, 2014, 04:52:01 PM
I dont see any link :?? Why?
Title: Re: crameeps - AutoKill Script
Post by: TrailMyx on August 08, 2014, 05:09:56 PM
Please read the site rules.  Your "link" question is answered there.
Title: Re: crameeps - AutoKill Script
Post by: pasak on August 13, 2014, 06:40:24 AM
The download link seems to lead to the old version, or I'm doing something wrong.

Some help would be nice :3

Yeh some help us pls :)
Title: Re: crameeps - AutoKill Script
Post by: Crisis on August 13, 2014, 12:38:23 PM
The download link seems to lead to the old version, or I'm doing something wrong.

Some help would be nice :3

Yeh some help us pls :)

LOL He just did

Please read the site rules.  Your "link" question is answered there.

What is deliciously ironic are the similar number of posts above this one that got ridiculed years ago.  Yet here we are again...

1 1/2 years later, again.  :o
Title: Re: crameeps - AutoKill Script
Post by: pasak on August 15, 2014, 03:14:15 PM
The download link seems to lead to the old version, or I'm doing something wrong.

Some help would be nice :3

Yeh some help us pls :)

LOL He just did

Please read the site rules.  Your "link" question is answered there.

What is deliciously ironic are the similar number of posts above this one that got ridiculed years ago.  Yet here we are again...

1 1/2 years later, again.  :o

Who help us :) Are u joking  :P

Post Merge: August 15, 2014, 03:15:02 PM
I can give my mail.Maybe somebody give me script  :'(
Title: Re: crameeps - AutoKill Script
Post by: Crisis on August 15, 2014, 04:55:15 PM
Please read the site rules.  Your "link" question is answered there.

He helped you right here.....
Title: Re: crameeps - AutoKill Script
Post by: pasak on August 16, 2014, 04:08:24 PM
When I will be member,Can I get some script?   
Title: Re: crameeps - AutoKill Script
Post by: TrailMyx on August 16, 2014, 04:24:57 PM
When I will be member,Can I get some script?   

When you write an acceptable introduction post, you'll get access and can download.  I've asked you to read the rules, please don't make me ask again..
Title: Re: crameeps - AutoKill Script
Post by: pasak on August 16, 2014, 04:26:29 PM
Ok Now I Know,I read sites rules.

Not=Sorry I dont know English very well.But I understood SİTEs rules  8)

Post Merge: August 17, 2014, 11:09:26 AM
Hımm very well script :) But how can ı insert this script recall runebookmarks and kill monster? Or Does Anybody know that script.Rune a rune teleport and kill monster and back go bank.
Title: Re: crameeps - AutoKill Script
Post by: Bldavidson on September 18, 2014, 10:01:32 AM
Is there anyway to modify this script just to send pet to attack, And not your char just vet and keep pet alive? everytime I try this script my char Tab's into war and starts to attack along with pet.  Thanks
Title: Re: crameeps - AutoKill Script
Post by: The Ghost on September 18, 2014, 11:58:47 AM
Maybe you can look at this one and see how it build.

Script Name: RKUltraPetFighter.txt
; Author: Roadkill
; Version: 1.2
; Client Tested with: 4.0.6a patch34
; EUO version tested with: build 009D
; Shard OSI / FS: OSI
; Revision Date: 29Dec04
; Public Release: 29Nov04
; Global Variables Used: *RKPF . #charid
; Purpose: Absolutely Indespensible for hunting with Pets! Up to 5 pets, auto-vetting,auto-attack
Title: Re: crameeps - AutoKill Script
Post by: will78 on March 20, 2015, 08:47:38 PM
Wheres the script
Title: Re: crameeps - AutoKill Script
Post by: Ketchup on March 20, 2015, 09:25:17 PM
Will, I suggest you do like every other user and read the forums rules and do a welcome post, then maybe they will access you   :-*
Title: Re: crameeps - AutoKill Script
Post by: Crisis on March 21, 2015, 06:43:05 AM
Wheres the script

First you should read this http://www.scriptuo.com/index.php?topic=1683.0, next look at the examples of good intros and fail intros, then start a new introduction and introduce yourself properly. http://www.scriptuo.com/index.php?board=20.0 Finally, if you emulated the best intros, you will see this script download link and many more.
Title: Re: crameeps - AutoKill Script
Post by: hmarcelino on August 03, 2015, 12:08:01 PM
Hi friends... i'm new here, get this script (was the first on this site) and when i press play on easyuo appears a menu. I configure this menu and press play and nothing happening :( The script say to move lifebar of my pet and then nothing more :/ can someone help me?
Title: Re: crameeps - AutoKill Script
Post by: Crisis on August 03, 2015, 01:01:47 PM
My guess is that you are playing on a free shard in which modifications need to be made. Most scripts here are made for OSI.
Title: Re: crameeps - AutoKill Script
Post by: hmarcelino on August 03, 2015, 01:30:19 PM
My guess is that you are playing on a free shard in which modifications need to be made. Most scripts here are made for OSI.

Yes i changed some things and start to run...

I insert a sub to cast invisibility when the character is stoped waiting cause the next monster doest not attack me first (it raise the survivel of the script).

Now i'm trying to put vet sub to work, it does not work. My pet almost dead lots of times and i need stop the script. Any ideia what is happening here ? :) lol
Title: Re: crameeps - AutoKill Script
Post by: Crisis on August 03, 2015, 09:28:28 PM
Go to the script debug section so we don't hijack this thread and make a new thread there. Since there is no way to tell from description, you need to post the sub using the # button to insert code. You may also want to post the sub where it is inserted.
Title: Re: crameeps - AutoKill Script
Post by: pasak on September 30, 2015, 12:31:34 PM
can we use two pet? and can we use recall ??
Title: Re: crameeps - AutoKill Script
Post by: suppilein on March 16, 2017, 11:11:05 AM
Title: Re: crameeps - AutoKill Script
Post by: Crisis on March 18, 2017, 06:37:12 AM
This script is from 2009 and he has not been seen since December 2012. You will most likely need to adjust that yourself. it should be an easy adjustment to give the pet time to attack and then call him back.
Title: Re: crameeps - AutoKill Script
Post by: ogre842 on November 08, 2017, 03:47:35 PM
WARNING: This script is not a "finished" script. It does work for what I use it for and I will be activly adding new features and supporting this script the best that I can. (And if I can't I hope for a little help from the masters).

What it does:

It searches for an enemy in range, if your too close the script "Atempts" to move to a safe distance. It then tells your pet to kill that enemy and starts poisoning/peacing it accordingly( if you have those turned on.) Once the enemy is dead the script moves to the corpse loots and loots only the gold. (Gold Farming) Once you start getting heavy the script calculates how much gold it should pick up so it doesn't put you overweight. once you are full it then finds a bag of sending in your pack (pack must be open) and sends the gold to the bank. Rince and repeat. If you do happen to get attacked. the script.. "atempts" to heal you and i plan to improve on the way it defends you though suggestions tips/help would be greatly appretiated on this subject. It doesn't realy defend well yet so I recomend only using it at a spot where you dont get randomly atacked by monsters, IE swoops, meers etc.

Features:

- Auto find/Attack enemys with pet
- Auto Poison's Enemy in a timeframe you define on the menu
- Auto Peace's Enemy in a timeframe you define on the menu
- Choose to attack or ignore Paragon spawns via menu
- Attempts to put a safe distance between you and the enemy before attacking.
- Attempts to heal you while you are taking damage ( Work in progress)
- Moves to corpses and loots gold from them when there are no enemy's present.
- Uses bag of sending to send gold to bank when you are full.
- Change casting timers via menu


Coming soon:
- Start/Exit buttons that work!
- Auto Disco
- Better support for Mages with pets (Earth elly's are popular on my FS)
- Better casting features for extra DPS. eg) Menu to choose what spell to cast for damage?
- Improve Healing methods when taking damage
- Add pet healing
- Feed pets
- Move into mele range to attack after pet takes aggro.
- Improve Targeting ( If you mess around without pausing the script you could end up poisoning yourself I guess. :) hasn't happend to me though.
- More I can't think of atm

To start, dismount, I usualy move to open area where i can see multiple spawns ( That dont attack me automaticaly). With no walls around to block movement too much. Target your pet when it asks and let her rip. If you find yourself in danger. I would pause the script fast.

Warning: PAUSE BUTTON WILL NOT PAUSE WHILE HEALING/ATACKING/Looting. It only checks the pause button during the mainloop at the moment. So please bear with me on that.

Thanks to Cerv's Pause button snippet there is a pause button.

EDIT:
** I need to add headers to this script when I get home and versions. ... no header = version 0.1 :)

3/4/09
EDIT: I've now added a sub that checks the health bar of your pet and heals it at a point you set in the script, IE if you set it at 80 the script will start healing your pet at 80% health until he is above 80% health. I will upload this later this evening after a little more testing.  NEW VERSION UPLOADED PLEASE REDOWNLOAD
Thank you
Title: Re: crameeps - AutoKill Script
Post by: Crisis on November 08, 2017, 03:51:02 PM
It would really help you to go to the new member section and read the stickies. I would have thought you would have learned since it has been almost a year since you tried to download something the first time....http://www.scriptuo.com/index.php?topic=17.msg115302#msg115302
Title: Re: crameeps - AutoKill Script
Post by: mthnksk on January 10, 2018, 01:20:43 PM
wow good and Where's download link  ::)
Title: Re: crameeps - AutoKill Script
Post by: Tidus on January 10, 2018, 02:40:57 PM
wow good and Where's download link  ::)
You also might want to read the statement Crisis just made above....
Title: Re: crameeps - AutoKill Script
Post by: mthnksk on January 16, 2018, 08:10:36 AM
wow good and Where's download link  ::)
You also might want to read the statement Crisis just made above....

I need this script and my English is not so good please give me the download link, thank you
Title: Re: crameeps - AutoKill Script
Post by: Crisis on January 16, 2018, 03:04:06 PM
wow good and Where's download link  ::)
You also might want to read the statement Crisis just made above....

I need this script and my English is not so good please give me the download link, thank you

There are many members here whose English is not the best and we don't hold that against anyone. There are translation tools such as google that can help you. If you are not willing to make an introduction or the effort,  then you won't get the download link. We put a lot of time and effort into our scripts and helping others. The least you can do is go the new member section and make a good introduction.
Title: Re: crameeps - AutoKill Script
Post by: Amoskane1234 on August 14, 2018, 02:18:10 AM
Great happy to see an awesome script this lets me do everything i wanted thanks!  ???
Title: Re: crameeps - AutoKill Script
Post by: Crisis on August 15, 2018, 08:02:09 PM
Great happy to see an awesome script this lets me do everything i wanted thanks!  ???

So easy to please! Glad the script you cannot download worked so well, especially when it came right after a post telling someone to make an introduction!  ::)
Title: Re: crameeps - AutoKill Script
Post by: speedie1991 on November 13, 2019, 03:41:11 PM
ive downloaded this script but the menu looks different to the 2nd pic how do i download that one cause i am a swords tamer and want to use my moves
Title: Re: crameeps - AutoKill Script
Post by: crameep on April 18, 2020, 07:07:24 AM
omg, this things still alive?
Title: Re: crameeps - AutoKill Script
Post by: crameep on April 18, 2020, 08:12:43 AM
HMM, It does dseem to point to the old version on the download link :( I'll try and find a copy of it if i still have it, I just fired it up today, other than some EnemyID changes it worked as intended still.
Title: Re: crameeps - AutoKill Script
Post by: gimlet on April 18, 2020, 08:22:49 AM
HMM, It does dseem to point to the old version on the download link :( I'll try and find a copy of it if i still have it, I just fired it up today, other than some EnemyID changes it worked as intended still.

nice!
+1
Title: Re: crameeps - AutoKill Script
Post by: crameep on April 18, 2020, 08:25:17 AM
Any chance a mod/admin has the ability to look at my uploaded files? Can't seem to find it as of right now, although i know its on an old flash drive somewhere.
Title: Re: crameeps - AutoKill Script
Post by: Danimal2020 on April 30, 2020, 09:13:55 PM
Wondering if there is an easy way to add code to recall to bank and drop gold off when you are close to being overweight? Otherwise I have to assist the script the whole time right?
Title: Re: crameeps - AutoKill Script
Post by: Crisis on April 30, 2020, 10:24:21 PM
There should be a sub for runebook travel by TM: http://www.scriptuo.com/index.php?topic=18.0 and I think EN posted a weight check sub, check here: http://www.scriptuo.com/index.php?topic=2454.0 You would put those in and then do a check for weight and if weight is a certain %, then recall to bank. You would probably need a sub to bank gold as well but it is late so I will leave that up to you.  ;D

EDIT: I just went back and read the original script notes and it says that it calculates weight and sends gold to the bank with the bag of sending. If BoS is fully charged at 30, you can run a while unattended though I think I might prefer a bank run myself.
Title: Re: crameeps - AutoKill Script
Post by: Danimal2020 on May 01, 2020, 02:59:27 PM
Sounds like a task I wont be able to do! I like the theory behind it though.  :)
Title: Re: crameeps - AutoKill Script
Post by: Crisis on May 01, 2020, 03:05:00 PM
Why? Look at the way the subs are called in scripts you do use. You may even have one that recalls to a bank due to weight like maybe a mining or lumberjacking script. I have ZERO coding training. I learned by fixing scripts with errors and adjusting scripts to fit my needs. It is a lot easier than you think.
Title: Re: crameeps - AutoKill Script
Post by: Krayirr11 on October 23, 2022, 03:52:59 AM
Sorry guyz but i'm new. How can i download this
Title: Re: crameeps - AutoKill Script
Post by: gimlet on October 23, 2022, 08:07:04 AM
Sorry guyz but i'm new. How can i download this

you can now!
Title: Re: crameeps - AutoKill Script
Post by: Krayirr11 on October 23, 2022, 11:16:33 PM
Thank you :)
Title: Re: crameeps - AutoKill Script
Post by: derizabel on May 11, 2023, 12:54:32 AM
did he work now?