Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Tana

Pages: [1] 2 3 ... 5
1
Thanks for the advice ive included it in the first line of the instructions :))

2
Character skill advancement / Re: Tana's Legendary Taming Mastery Trainer
« on: September 18, 2016, 10:39:01 AM »
Wow thanks for all the testing guys glad to see its working! My first script in the PSL!

3
New member introductions / Re: Hello@all... :)
« on: June 13, 2016, 12:19:37 PM »
Welcome to SUO! if your working fishing TM has a GREAT script for it. you can find it here http://www.scriptuo.com/index.php?topic=41.0

Enjoy!

PS. i dont know how fishing works on your free shard but on OSI you need ALOT of fish to get the 120 power scroll so i would  advise you dont cut up ANY fish. some of the High seas fish have the same type id as reg fish and it will try to cut them up.

4
Hey guys Wrote a script to get my taming from 90 - 120 using nothing but the Animal Taming masterys!
Code: [Select]

;=============================================================================
;-- Script Name:Legendary Taming Trainer
;-- Author: Tana
;-- Version: 1.0
;-- Client Tested with: 7.0.50.0
;-- EUO version tested with: 1.5.1.300
;-- Shard: OSI
;-- Revision Date: 6/9/16
;-- Public Release: 6/6/16
;-- Copyright: 2016
;=============================================================================
;--------------------Purpose--------------------------------------------------
;Trains Animal Taming frorm 90 to 120 using Masterys
;=============================================================================
;-------------------Instructions----------------------------------------------
;REQUIRES Taming Mastery (Any LvL) and Book of Masterys set to taming.
;Get a pet and press play!
;For fastest training wear as much Mana Regen as possible
;Meditation is recomended this script will attempt to med.
;Enjoy!
;=============================================================================
;Special Thanks to TM! For his med sub, The Ghost! for his debug help, and to Endless Night! for clearing up a buff problem!
;Also want to thank the SUO community without whom i would never have started scripting!
;=============================================================================

5
Script Debug / Re: ENs buff bar help!
« on: June 09, 2016, 10:28:47 AM »
Thanks so much EN! I thought maybe i was doing something wrong glad to know my coding was right lol. As an update to my progress i just hit 120 taming from 90 it took me around 3 days doing nothing but using the mastery.

PS. if anyone wants a copy of Taming Mastery Trainer you can check it out here http://www.scriptuo.com/index.php?topic=13808

6
Script Debug / Re: ENs buff bar help!
« on: June 08, 2016, 06:56:05 PM »
Also i get the variables from scanbuffbar if i do a var dump so it is calling the script.


Another update ran the code call scanbuffbar event sysmessage %BaffBarrIconNames on my samp and it came back with vamp embrace so im guessing its something to do with my master buff.

7
Script Debug / Re: ENs buff bar help!
« on: June 08, 2016, 02:54:31 PM »
Thanks for the advice en. The file is in the same location as EUO and i actually had the same idea as that and did it and i get nothing. not sure why tho. i have a modded version of TMs mana sub that works i just wanted it to work correctly if i wrote anything else that needed to use the scanbuffbar sub.


EDIT: the result is _

8
Script Debug / Re: ENs buff bar help!
« on: June 07, 2016, 06:22:49 PM »
i have not. just tried throwing it in the script. ill try just the sub and see if that helps

9
Script Debug / Re: ENs buff bar help!
« on: June 07, 2016, 01:24:49 PM »
right the message didn't pop up for me telling me that the if statement is returning false, not sure why its returning false tho.

10
Scripting Chat / Re: Training on a horse while mounted
« on: June 06, 2016, 11:15:55 PM »
update! it appears you can para the mount!

11
Script Debug / Re: ENs buff bar help!
« on: June 06, 2016, 06:15:27 PM »
ok ghost i tried what you said i still cant get it to work! not sure what im doing wrong at all!! heres the entire script its a simple mastery trainer this one is currently written for taming.

Code: [Select]
set %getpet #true

Call ScanBuffBar
Repeat
if %getpet = #true
 {
 Gosub pet
 }
gosub mana
gosub train
until #false

sub pet
finditem %pet
 if #findcnt < 1
 {
  display Select pet to train on
  set #targcurs 1
  while #targcurs = 1
  {
  wait 1
  }
  set %pet #LTARGETID
 }
set %getpet #false
Return

Sub train
  event macro 15 744
  target 4s
  set #LTARGETID %pet
  event macro 22 0
  wait 20
return

Sub mana
if #mana < 30
 {
  medloop:
 event sysmessage meditation
  event macro 13 46
  wait 11s
  call ScanBuffBar
  if _Meditation_ in %BuffBarIconNames
   {
   event sysmessage Waiting   ;<<<<<<<<<<<<<<<<<< i dont get this system message so the scan buff bar isnt returning a value.
   gosub wait
   }
  if #mana < #maxmana
   {
   goto medloop
   }
 }
return

sub wait
Repeat
  wait 1
until #mana = #maxmana
return


12
Script Debug / Re: ENs buff bar help!
« on: June 06, 2016, 02:09:29 PM »
yes ghost my EUO and my scanbuffbar are in the same folder. i double checked that when i was trying to figure out what was wrong with it and sure enough its in there

13
Script Debug / Re: ENs buff bar help!
« on: June 06, 2016, 11:52:49 AM »
well i i ended up using TMs med sub found here http://www.scriptuo.com/index.php?topic=1527.0 id still like to know what i did wrong with ENs scanbuffbar so i can use it in later scripts

Code: [Select]
Sub mana

if #mana < 30
 {
  gosub meditate #true 0
return

14
Script Debug / ENs buff bar help!
« on: June 06, 2016, 12:43:35 AM »
Hey guys ive been messing with a script that trys to med when mana is low however im trying to use ens buff bar to see if my char is meditating but its not working properly. not sure what to do to fix the sub can someone give it a look?

Code: [Select]
Sub mana
if #mana < 30
 {
  medloop:
  event macro 13 46
  wait 11s
  call ScanBuffBar
  wait 10
  if  _Meditation_ in %BuffBarIconNames
   {
   gosub wait
   }
  if #mana < #maxmana
   {
   goto medloop
   }
 }
return

sub wait
Repeat
  wait 1
until #mana = #maxmana
return

not sure what im doing wrong but it ignores the buff and keeps casting med over and over instead of repeating the wait.

15
Scripting Chat / Re: Training on a horse while mounted
« on: June 03, 2016, 06:08:23 PM »
the mount doesnt take damge but you can gain on it endlessly not sure what you mean by effect the mount like does it poison them? as far as i can tell it tkaes no damage and no effects.

Pages: [1] 2 3 ... 5