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

Pages: 1 [2] 3
16
Scripting Chat / Re: Need help
« on: March 28, 2020, 03:57:43 AM »
Awesome man! I will give this a try! Thank you so much

17
Scripting Chat / Need help
« on: March 28, 2020, 03:47:48 AM »
How would I write a tamer script that will scan for a specific monster and say all kill and then target that monster?

18
UOSteam / Re: Lifebars not updating
« on: February 08, 2020, 05:03:28 PM »
Happen few day ago to a friend on his pet.   I'm not aware of a occurrence.   Thos this happen with all the lifebar?

Yes. It will not update. Example being, when I heal someone, it still shows them as having 0 HP
But If I close the lifebar, and pull it again, its updated

19
UOSteam / Lifebars not updating
« on: February 07, 2020, 05:52:15 PM »
Anyone have this problem, or know how to fix it? When I pull lifebars, they do not update. Very annoying in PvP

20
Scripting Chat / Re: Dismount,cast spell, say all kill
« on: February 07, 2020, 02:42:10 PM »
My problem is that I can not find a dismount event macro. How would I search that in EUO?

21
Scripting Chat / Dismount,cast spell, say all kill
« on: February 07, 2020, 12:01:12 PM »
I am trying to figure out how to write a script in EUO that, upon a hotkey press, will cast explode, dismount from my mount and say all kill on a selected target, and then finish with targeting the explode. Can anyone help me out?

Basically I want this:

press hotkey
Cast spell explosion
dismount from horse
whisper all kill and target enemy
target explosion on same target

22
Scripting Chat / Re: Looking for help
« on: January 09, 2020, 07:22:55 PM »
I hate gotos and repeated code so i rewrote your script with no gotos.   And added in an attack function...     This is just an example for you to expand your knowledge with...

I miss how GOTOs would make Cerveza's veins in his head nearly burst. lol

So I was kind of on the right track?

23
Scripting Chat / Re: Looking for help
« on: January 07, 2020, 04:33:19 PM »
So I want a script for my archer to auto attack a monster that I set up Via a target curser in the beginning of the script.

This is what I have so far. I know its probably not even close to being correct, But I am trying lol.
I'd like to be able to set this so it will attack within 10 tiles of the enemy, but I don't know how to do that yet either.
Any help is very much welcomed.


Code: easyuo
  1. ;==================================
  2. ; Script Name: Mayhem's Auto Attack
  3. ; Author: Mayhem
  4. ; Version: 1.00
  5. ; EUO version tested with: 1.6.0.334
  6. ; Shard OSI
  7. ; Revision Date:
  8. ; Public Release:
  9. ; Global Variables Used: N/A
  10. ; Purpose: Automatically Attacks Selected Target
  11. ;===================================
  12.  
  13. set %hotkey DELETE  ; Pauses Script
  14. set %paused #false
  15. set %Enemy N/A
  16.  
  17. goto Setup
  18.  
  19. Setup:
  20. {
  21.      set #targcurs 0
  22.      set #targcurs 1
  23.  
  24.      event SysMessage Target The Enemy You Wish To Attack
  25.  
  26.      while #targcurs = 1
  27.      {
  28.           wait 1
  29.      }
  30.  
  31.      set %Enemy #ltargetid
  32.      
  33.      event SysMessage Enemy set.
  34.      
  35.      goto Loop
  36. }
  37.  
  38. Loop:
  39. {
  40.      onhotkey %hotkey
  41.      {
  42.          event sysmessage Paused.
  43.          wait 10
  44.          goto Pause
  45.      }
  46.      
  47.      Pause:
  48. {
  49.      set %paused #true
  50.  
  51.      while %paused = #true
  52.      {
  53.         onhotkey %hotkey
  54.         {
  55.             event sysmessage Resumed.
  56.             set %paused #false
  57.             wait 20
  58.             goto Loop
  59.         }
  60.      }
  61. }
  62. Return
  63.  

24
Scripting Chat / Re: Looking for help
« on: January 05, 2020, 09:32:57 AM »
TBH, the best way to get help is to post what you have an let others look at it and help with fixes or suggestions.

Well, I don’t have anything written just yet, but I will give it a go, and post what I write.

25
Scripting Chat / Looking for help
« on: January 05, 2020, 07:51:08 AM »
Hey everyone!! I’m trying to write a script, but I need some guidance. I’ve read the tutorials on here, and they helped somewhat. But what I have in mind, is a little different. I don’t want to put specifics on here, but would love it if an experienced coder could pm me, and maybe we can work together to create the script.

26
Scripting Chat / Re: BOD Obtaining Script?
« on: January 05, 2020, 07:48:13 AM »
Will do!

27
Scripting Chat / Re: BOD Obtaining Script?
« on: January 02, 2020, 06:18:42 AM »
Did you check script library I cannot imaging this does not exist already,.

I found 1, but it doesn't seem to work for me :(

28
New member introductions / Re: Old EUO guy here
« on: January 02, 2020, 06:17:51 AM »
welcome to scriptuo,   how much does a 120 fishing scroll sell for in game now...  I might have a few in a box someplace...

I think somewhere around 100 mill

29
Scripting Chat / BOD Obtaining Script?
« on: December 31, 2019, 03:26:25 PM »
I am trying to find a script that will have my smith stand in the shop and get BODs and put them in my BOD book. Is there such a script, or should I try to write one?

30
New member introductions / Re: Old EUO guy here
« on: December 30, 2019, 02:54:35 PM »
I am only PVM now. I have just about every skill you can imagine on soulstones! I am trying to find a 120 fishing scroll. I refuse to do all of those fishing quests lmao!!! Thank you all for the warm welcome!! I’m headed home from work now, and will be logging in on my pc to explore this site, and try to learn the scripting language!!! More to come soon I hope 😊

Pages: 1 [2] 3