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 - Terathel

Pages: [1]
1
Gold Farming / Re: Trailmyx's Artifact Monitor
« on: October 25, 2009, 07:44:00 PM »
Hey TrailMyx, what's up?

I'm having some trouble using this script that I have modded a little.

I want to use it for alerting me about paragon artifacts and insure it after.

The only thing I changed besides the insure function is this:

Quote
 gosub TM_AdvJournalScan artiscan VALID_ADVANCE slaying_the_mighty

The problem is that it doesn't find the message about the artifact, which is weird cause Razor is getting the SysMessage normally.


Do you have any idea of what is happening?

Thanks !!!


Edit:
I tried this now also:

Quote
  gosub TM_AdvJournalScan artiscan NONE slaying_the_mighty

Still doesn't work =/

I play in a RunUO Shard and I'm using Razor, without Filtering reapeating system messages

2
Scripting Chat / Re: Stealing Power Scrolls
« on: October 19, 2009, 06:56:35 AM »
So, this is what I did...

The script detects a player in screen and keep trying to open his backpack.
When his backpack is open, it will search for PS and identify them.
That's all for now.
Maybe next weekend I'll have some time to improve it.

Code: [Select]
;============================================
; Script Name:   Star Room Stealer
; Author: Terathel
; Version: 0.01
; Client Tested with: 7.0.1
; EUO version tested with: 1.5 [build 155]
; Shard OSI / FS: OSI/FS
; Revision Date: 16-10-09
; Global Variables Used:
;=============================================
;Sub GetName taken from TrailMyx's IDOC Monitor/Looter v1.0c - Many thanks, TrailMyx!

 ignoreitem #charid

START:

finditem IS_HS_XU_AV_KS_JS_ZU_KV_SAB_MAB_LAB_SH_EH_VD_JG_BB_SC_OAB_QAB_PAB_RAB_HN_IN_FN
If #findcnt < 1
  {
     wait 10
     goto start
  }
For #findindex 1 #findcnt
  {
     If #findrep = 7 || #findrep = 3
       {
         ignoreitem #findid
       }
     set %Target_id #findid
     Gosub Check_NPC
     If #Result = #FALSE
       {
          Display Hello... Is there anybody in there? Just nod if you can hear me.
          wait 3000

       }
  }


goto START

;-----------------
;-----------------

Sub Check_NPC

linespercycle 1000

Event_property:
set %waituntil #scnt2 + 10
Repeat
    {
    event property %Target_id
    wait 2
    }
Until #property <> $ || #scnt2 > %waituntil
set %player_property #property
If %player_property = $ || %player_property = N/A
   {
   ignoreitem %Target_id
   linespercycle 10
   return #false
   }
If #spc , the , #spc in %player_property || #spc , The , #spc in %player_property
   {
     Linespercycle 10
     Return #True  ;--Return #TRUE if it's an NPC
   }
gosub GetName #FindID
event ExMsg #charID 3 90 Our target: #RESULT
set %personsID #FindID
set #LOBJECTID #FindID

event macro 17 0
wait 10
finditem ZJF_KUD C_ , %personsID ; Handles Both Reg Packs and Reverse
if #FINDKIND <> -1
{
  set %stealfromID #FindID
  wait 7
  event macro 17 0
  wait 30
  finditem EWH C_ , %stealfromID
  For #findindex 1 #findcnt
    {
       If #findcol <> 1153
         {
           ignoreitem #findid
           break
         }

      If %stealList = N/A
            set %stealList #findid , _
      Else
            If #findid notin %stealList
               {
                   set %stealList %stealList , #findid , _

                   set %itemID #FindID
                   gosub GetName #FindID
                   set %itemName #RESULT
                   event ExMsg #charID 3 90 Item: %itemName
                   if 120 in %itemName
                   {
                      set #LTARGETID %itemID
                      event ExMsg #charID 3 90 Last target: %itemName
                   }
                   set %Target_id #findid
               }
    }
}
Return #False  ;--Return #False if NOT an NPC

sub GetName
  event property %1
  str pos #PROPERTY $ 1
  set #STRRES #STRRES - 1
  str left #PROPERTY #STRRES
return #STRRES

Sorry for the messy script  :-[

3
Scripting Chat / Re: Stealing Power Scrolls
« on: October 16, 2009, 02:00:24 PM »
I started scripting something right now.

Will share it in a while.. Maybe today  ;)

4
Scripting Chat / Re: Stealing Power Scrolls
« on: October 14, 2009, 05:19:04 PM »
Sorry to ressurect this thread but did you had success on this script Cerveza?

Have you started something?

Need some help?

I'm really interested on doing this but I am too lazy to start it from nothing ;D

5
New member introductions / Re: Hi there
« on: October 04, 2009, 12:48:51 PM »

6
New member introductions / Re: Hi there
« on: September 28, 2009, 04:15:53 PM »

7
IDOC tools / Re: TrailMyx's IDOC Monitor/Looter v1.0c
« on: September 22, 2009, 12:44:45 PM »
PERFECT!

Just used it in a RunUO Shard.
The house had like 10 items, I got 5! That is awesome since there was like 7 people there and I wasn't home to loot it

Thanks for the great script

8
New member introductions / Re: Hi there
« on: September 18, 2009, 01:26:26 PM »
OMG, you have quick fingers!  :o


Thanks guys!

Now I can leech some stuff  ;D

9
New member introductions / Hi there
« on: September 18, 2009, 01:17:42 PM »
Hello guys!

Greetings from Brazil!
I play UO for about 8 years. I have played in Sphere and RunUO shards and used all kinds of programs to play: UO Assist, Yoko Injection, Razor and mainly for macros EasyUO. I have done some stuff on my own like a split 1 by 1 and smelt ore script, nothing too complicated. Also, I mod some scripts to feed my needs.

Hmmm.. I guess this is it. I want to try the TrailMyx's IDOC Finder v1.6 in my shard since I found a lot of houses are decaying now.

I promise you all I will search before posting.

Thanks

Pages: [1]