Official ScriptUO EasyUO Scripts > Scripting Tutorials

Healing Script

<< < (3/3)

Trigs:

--- Quote from: chasemac140 on September 27, 2018, 07:21:33 AM ---So lets say I want to use this to heal one of my other guys on a different account. So this guy just sits back and heals him while the other guy beats on something.

How do I pull the second character as the target?

Is there a way to make the script look for a name?

Can I also make this target mobs in a similar manner?

--- End quote ---

A quick / dirty implementation of healing a second person would be like:


--- Code: ---set %otherChar SOME_ID

<mainloop same as before>

sub heal
   set #LTARGETID %otherChar
   event macro 15 3
   wait 12
   event macro 22 0 ; target last target
   wait 5
   return

<similar for cure>

--- End code ---

Attacking is a little different, but similar to the above.


--- Code: ---set #LTARGETID %monsterID
event macro 27 0 ;; attack last target

--- End code ---

I don't think there is a built in way to find chars by name, but I think some combination of:


--- Code: ---set %humanType IS ;; theres some other types too
finditem  %humanType G_6 ;; search all around you with in 6 tiles
for %ind 1 #FINDINDEX
   event property #FINDID
   if Trigs in #PROPERTY
      set %otherChar #FINDID

--- End code ---

I haven't tested it, or even tried it but that should give you some ideas to get started on both fronts.

chasemac140:
ok, that gets me going in the right direction! Thanks so much

Navigation

[0] Message Index

[*] Previous page

Go to full version