Taming Razor Scripts for use with Khal Draco's Taming Guide: (2024)

M

Malbolger

Neophyte
  • Jul 31, 2020
  • #1

These two scripts can be bound to hot keys and automatically look for the correct tames based on your skill level and also release the same tames based on your skill level. This script will assume that you save your passive points for the levels stated in the guide. (Does not look for tames in them skill ranges.) This also assumes that you start with 50 skill and tame frogs all the way to 60 (skipping corpse eaters). I am only about 70 skill at the moment now so there may be issues I have not yet gotten to. If you have any issues let me know and I can try to help out.

Taming Script: You will need to be within a couple tiles of the creature you want to tame. (Will continue taming until stopped)

Code:

hotkey 'Animal Taming'waitfortarget//TAMING SECTION BASED ON SKILLif skill 'Animal Taming' < 50.0 overhead 'You should train to 50 at a trainer' overhead 'Then head on over to the Newb Dungeon'endifif skill 'Animal Taming' >= 50.0 and skill 'Animal Taming' <= 59.9 targettype 'a giant frog' true //targettype 'a colossal frog' trueendifif skill 'Animal Taming' >= 60.0 and skill 'Animal Taming' < 70.0 targettype 'a cave bear' trueendifif skill 'Animal Taming' >= 70.0 and skill 'Animal Taming' < 72.5 targettype 'a scarab' trueendifif skill 'Animal Taming' >= 72.5 and skill 'Animal taming' <= 74.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 75.0 and skill 'Animal Taming' < 77.5 targettype 'a drake whelp' true //targettype 'an aegis slime' trueendifif skill 'Animal Taming' >= 77.5 and skill 'Animal Taming' <= 79.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 80.0 and skill 'Animal Taming' < 82.5 overhead '3' targettype 'a deep crawler' trueendifif skill 'Animal Taming' >= 82.5 and skill 'Animal Taming' <= 84.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 85.0 and skill 'Animal Taming' < 87.5 targettype 'a drake' trueendifif skill 'Animal Taming' >= 87.5 and skill 'Animal Taming' <= 89.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 90.0 and skill 'Animal Taming' < 92.5 targettype 'a husk crab' trueendifif skill 'Animal Taming' >= 92.5 and skill 'Animal Taming' <= 94.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 95.0 and skill 'Animal Taming' < 97.5 targettype 'a dragon' trueendifif skill 'Animal Taming' >= 97.5 and skill 'Animal Taming' <= 99.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 100.0 and skill 'Animal Taming' < 102.5 targettype 'a snowdrift' trueendifif skill 'Animal Taming' >= 102.5 and skill 'Animal Taming' <= 104.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 105.0 and skill 'Animal Taming' < 107.5 targettype 'a acarid' true //targettype 'an earth drake' true //targettype 'an eldritch drake' trueendifif skill 'Animal Taming' >= 107.5 and skill 'Animal Taming' <= 109.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 110.0 and skill 'Animal Taming' < 112.5 //CHOOSE WHICK targettype 'a sphinx' trueendifif skill 'Animal Taming' >= 112.5 and skill 'Animal Taming' <= 114.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' >= 115.0 and skill 'Animal Taming' < 117.5 //CHOOSE WHICK targettype 'a snowdrift' trueendifif skill 'Animal Taming' >= 117.5 and skill 'Animal Taming' <= 119.9 overhead 'Time to use passive points!' breakendifif skill 'Animal Taming' == 120.0 overhead 'CONGRATULATIONS!' overhead 'You have already achieved 120 taming!'endif//SECTION TO HANDLE NOT FINDING TARGETSif insysmsg 'That is too far away." pause 10000 replay endifif insysmsg 'No item of type' hotkey 'Cancel Current Target' pause 10000replayendifpause 12000replay

Release Script: (Will attack after releasing unless you comment it out the "attack lasttarget" line at the end by placing a double backslash in front of that line like "//attack lasttarget")

Code:

if skill 'Animal Taming' < 60.0 say 'a giant frog release' //say 'a colossal frog release'endifif skill 'Animal Taming' >= 60.0 and skill 'Animal Taming' <= 70.0 say 'a cave bear release'endifif skill 'Animal Taming' >= 70.0 and skill 'Animal Taming' <= 72.5 say 'a scarab release'endifif skill 'Animal Taming' >= 75.0 and skill 'Animal Taming' <= 77.5 //CHOOSE WHICH YOUR TAMING say 'a drake whelp release' //say 'an aegis slime release'endifif skill 'Animal Taming' >= 80.0 and skill 'Animal Taming' <= 82.5 say 'a deep crawler release'endifif skill 'Animal Taming' >= 85.0 and skill 'Animal Taming' <= 87.5 say 'a drake release'endifif skill 'Animal Taming' >= 90.0 and skill 'Animal Taming' <= 92.5 say 'a husk crab release'endifif skill 'Animal Taming' >= 95.0 and skill 'Animal Taming' <= 97.5 say 'a dragon release'endifif skill 'Animal Taming' >= 100.0 and skill 'Animal Taming' <= 102.5 say 'a snowdrift release'endifif skill 'Animal Taming' >= 105.0 and skill 'Animal Taming' <= 107.5 say 'an acarid release' //say 'an earth drake release' //say 'an eldritch drake release'endifif skill 'Animal Taming' >= 110.0 and skill 'Animal Taming' <= 112.5 say 'a sphinx release'endifif skill 'Animal Taming' >= 115.0 and skill 'Animal Taming' <= 117.5 say 'an eldritch dragon release'endif waitforgump gumpresponse 1 pause 2000 attack lasttarget

Last edited:

A

Aevyian

Neophyte
  • Oct 25, 2020
  • #2

Thanks @Malbolger for this! I got caught up on initiating the skill haha! I wonder why we have to use the hot key command for taming instead of just the skill command (as easily as animal lore for example).

Last edited:

A

Aevyian

Neophyte
  • Jan 3, 2021
  • #4

Draxis said:

cant get it to work at all Taming Razor Scripts for use with Khal Draco's Taming Guide: (2) could use some help.

What happens when you run the script as is? I was working on my own from scratch before finding this one. It worked right out of the box for me though.

L

Locust

Neophyte
  • Mar 5, 2021
  • #5

Aevyian said:

What happens when you run the script as is? I was working on my own from scratch before finding this one. It worked right out of the box for me though.

Whenever I run it says target(item type 000 not found) cant be found also just seems like I did something wrong.

I simply made new macro in razor then copy and paste and walla.

You must log in or register to reply here.

Taming Razor Scripts for use with Khal Draco's Taming Guide: (2024)
Top Articles
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 5494

Rating: 4.4 / 5 (55 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.