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

Pages: 1 2 3 [4] 5 6 ... 8
46
Script Debug / Re: Hitechs Mace and shield
« on: April 29, 2017, 05:25:45 PM »
worked on this a bit,

got a rebirth version:
pulls ingots from secure at house and crafts tools

testing right now, needs a few more fail safe checks and some run time to find bugz

I marked rune outside house next to forge, anvil and secure chest with backup tinker tools and ingots.
crafted one buckler and hit play .... its running now



47
Script Debug / Hitechs Mace and shield
« on: April 29, 2017, 12:20:24 PM »
someone asked for this so here it is ...

Quote
;=====================================
; Script Name: Hitech's Mace and Shield
; Authors: Hitech
; Version: 1.0.1
; Client Tested with: 7.0.56.0
; EUO version tested with: 1.5 (308)
; Shard: easyuo's Alexandria & ScriptUO's Rebirth
; Revision Date: 4-30-2017
; Public Release: 4-25-2017
; Purpose: craft bucklers and turn in at the Brit Library
; -------------------------------------------------------
; Thanks to: yolcu for Auto Login - Re Login script
; http://www.easyuo.com/forum/viewtopic.php?f=3&t=53130
;======================================
; - stand at avail and craft one buckler before you start script -
; --- ( it justs clicks the make last button for bucklers) ---
; if your playing some where you have to craft tools
; make sure ingots and some backup tinker tools are in secure
;------------------------------------------------------

mark rune next to avil and secure with ingots
mark rune at turn in npc
set vars at top of script
craft 1 buckler
press play

48
New member introductions / Re: Hello!!!!
« on: April 29, 2017, 12:02:19 PM »
great idea ... i not worked on that script in years ... so would be fun for me to update/upgrade it.

i will see what i can do

49
Scripting Chat / Re: crossheal - multi-cleint
« on: April 26, 2017, 09:21:09 PM »
Here a vid of me setting the vars like i just downloaded it and started testing on rebirth

https://www.youtube.com/watch?v=-2Cu6qtPrjk

50
Scripting Chat / crossheal - multi-cleint
« on: April 26, 2017, 09:09:56 PM »
Someone asked for this so i fig i post it .......

this the small part that i use to cross heal my chrs ... it got broken before when i rewrote script to lower line count.
so i re wrote it a little, so maybe someone can find it useful

it crossheals my 5 chrs on rebirth and 3 chrs on lexia ... and should be easy to edit or add to any script

If you have ideas to make it better / faster or issues ... please post feedback or findings




Code: [Select]
nameSpace global master
set !healHP 90 ;--- hp to start healing

if #shard = xxxxx ;-- shard name
   {
   set !masterchr xxx     ; main chr , the one others follow and cast corpse skin/debuffs ect..
   set !wayToRez lexia    ; rez with armor on already
   set !pet_1 xxxx        ; pet1 id or #false for no pet  ;--- only used to heal / cure pets or friends
   set !pet_2 xxxx        ; pet2 id or #false for no pet  ;--- only used to heal / cure pets or friends
  ; ---- * chr id's only used for crosshealing / xheal * ----
   set !chrsToHeal 3      ;-- number of slave chrs to crossheal / running slave script
   set !ChildSlave_1 xxxx ;-- master chr id
   set !ChildSlave_2 xxxx ;-- slave charater ID
   set !ChildSlave_3 xxxx ;-- slave charater ID
   }

if #shard = RebirthUo
   {
   set !masterchr UBJMB    ; main chr , the one others follow and cast corpse skin/debuffs ect..)
   set !wayToRez rebirth   ; rez with no armor and death robe
   set !pet_1 bovp         ; pet1 id or #false for no pet  ;--- only used to heal / cure pets or friends
   set !pet_2 #false       ; pet2 id or #false for no pet  ;--- only used to heal / cure pets or friends
  ; ---- rebirth chrs ---- ; * chr id's only used for crosshealing /xheal *
   set !chrsToHeal 5       ;-- number of chrs to crossheal
   set !ChildSlave_1 UBJMB ;-- master chr
   set !ChildSlave_2 PTUMB ;-- lowtech - slave charater ID
   set !ChildSlave_3 UXVMB ;-- hitech -slave charater ID
   set !ChildSlave_4 RGWMB ;-- tech - slave charater ID
   set !ChildSlave_5 UVXMB ;-- slave charater ID
   }
if #shard = Alexandria
   {
   set !masterchr WADU     ; main chr , the one others follow and cast corpse skin/debuffs ect..)
   set !wayToRez lexia     ; rez with armor on already
   set !pet_1 NSYS         ; pet1 id or #false for no pet  ;--- only used to heal / cure pets or friends
   set !pet_2 LOTM         ; pet2 id or #false for no pet  ;--- only used to heal / cure pets or friends
   ; ---- lexia chrs ----- ; * chr id's only used for crosshealing *
   set !chrsToHeal 3       ;-- number of chrs to crossheal
   set !ChildSlave_1 WADU  ;--- master chr
   set !ChildSlave_2 JWHR  ;-- slave charater ID
   set !ChildSlave_3 NSHCD ;-- slave charater ID
   }

start:
gosub crossHealing

goto start


sub crossHealing   ;---------------------- crosshealing sub ---------------------
for %aa 1 !chrsToHeal ;-- check life of chrs
      {
      if #charid = !ChildSlave_ . %aa
          {
           if #hits < !healHP
                set !Lheal_ . %aa #true
           else
                set !Lheal_ . %aa #false
          }
      }
for %bb 1 !chrsToHeal   ;-- heal each chr if need be
      {
       if #CharGhost = YES
           return
       if !Lheal_ . %bb = #true && #CHARID <> !ChildSlave_ . %bb
          {
           set #ltargetid !ChildSlave_ . %bb
           set #ltargetkind 1
           for %h 1 2 ;-- heal 2 times
                {
                 event macro 15 3  ; small heal
                 target 2s
                 event macro 22
                }
           }
      }
return

51
RebirthUO / Re: New title - Harrower Bunny Slayer
« on: April 26, 2017, 08:44:37 PM »
Quote
looking at coding its like which way do you go uoxl or namespace. and with that its would take me a month to figureout  the basic of heal.

i not done uoxl ... but im thinking something like

im running 3 cleints

healLoop:
for %i 1 3  ;--- loop 3 times
  {
    if #hits < %blah  ;-- low hp
        {
         event macro   ;- heal
         target
        event macro    ; target self
        uoxl                 ; change client
         }
    else
         uoxl                 ; change client
   }
goto healLoop

52
New member introductions / Re: Hello!!!!
« on: April 26, 2017, 04:05:12 PM »
Welcome .. Fish ... I like fish too :)


I like them soo much i even stock pile 10s of 1000's at a time.

if you want to, read over this script and thread, it might help understand scripting or maybe fill a fish quest crate for you :)

here the link:
http://www.easyuo.com/forum/viewtopic.php?f=3&t=51865&hilit=fish+monger

I will try to run it tonight or tomorrow just to make sure it still works with all the easyuo updates.
If it gives you any issues you can post in that topic or message me here!

53
RebirthUO / Re: New title - Harrower Bunny Slayer
« on: April 26, 2017, 03:47:18 PM »
yes im player111., No im not Twinkle McNugget, hehe ... what a funny name! lol

sweet ghost, best thing i could think of is setting a range of x and y that can only be set for next follow command.
if something was not in a reasonable range, say hey dude, are you crazy? there is no way master just jumped 500 squares
dont be dumb and try to run across the world, maybe he went in a dungeon or cave.

or me setting a button that i press right before i go in cave, says hey guys ... cave here!
then have them do some stuff kinda like the ev sub to find the entrance.

Or the hard way ... me logging everything cave and dungeon entrance x and y in an array,
and having a check that says hey mate, Dungeon here.
but that might cause problem, and would probably still end up adding a button that i press right before i enter


54
RebirthUO / Re: New title - Harrower Bunny Slayer
« on: April 26, 2017, 04:43:13 AM »
if anyone looking to make their own i recommend small stuff like,

" timers " and " timing " of when you do stuff tend to be a big deal here.
Look at ways to make them good, you end up with alot.

also stuff like this makes life easy:

auto mount
enter gate
invis
accept party

plus think of ways to make only 1 chr do an action:
like tamer pet stuff and De-buffs ect..
if tame skill > 100 all kill ect..
if eval skill > 90 cast damage spells ect..

one thing i not tried to fix too much but is big issue,
the child slaves following master into caves and dungeons.
if anyone has code or ideas that does stuff like this , can you please share your ideas



55
RebirthUO / Re: New title - Harrower Bunny Slayer
« on: April 26, 2017, 04:25:27 AM »
thanks, been a lot of changes since creation.

One change that was soo helpful here that i did not even think about that much....
on rebirth you have to loot ur corpse to get armor auto put on after death,
so i added a for loop to open corpses after rez,
i will look at other ways to code it but here it performed prefect.
except for the few times corpse was out of reach.

56
RebirthUO / New title - Harrower Bunny Slayer
« on: April 25, 2017, 08:23:44 PM »
Just a short video of my army slaying harrower from the bunny event,
and my multi-client master control script in full force

https://www.youtube.com/watch?v=CcDOv1brbaE&feature=youtu.be

57
handmade hero, a video series showing a game development from scratch mainly in C with some c++.

https://handmadehero.org/

He is on day 378

https://www.youtube.com/user/handmadeheroarchive

Ideas? what you think? what comes to mind?


58
was thinking about Mr. Blow

last thing he released was the witness, i really liked the game so if you want to check out a puzzle game:

http://store.steampowered.com/app/210970/


Went looking for an update on his progress in the programming language " JAI " and this is what i found:

at around 15 min in he starts talking more about JAI

https://www.youtube.com/watch?v=gWv_vUgbmug

History about jon:
https://www.youtube.com/watch?v=YdSdvIRkkDY


what do you think? what comes to mind?

59
Submit your Script / Re: Hitech's Master Control
« on: March 14, 2017, 02:59:14 PM »

@Ghost .... how you X heal your slaves?


Code: [Select]
rebirthCrossHeal:
for %i 1 5 ;-- check life of 5 chrs
      {
      if #charid = !Rslave_ . %i
          {
           if #hits < !healHP
                set !Rheal_ . %i #true
           else
                set !Rheal_ . %i #false
          }
      }
for %i 1 5   ;-- heal each chr if need be
      {
       if #CharGhost = YES
           return
       if !Rheal_ . %i = #true && #CHARID <> !Rslave_ . %i
          {
           set #ltargetid !Rslave_ . %i
           set #ltargetkind 1
           for %h 1 2 ;-- heal 2 times
                {
                 event macro 15 3  ; small heal
                 target 2s
                 event macro 22
                }
           }
      }
return

60
Submit your Script / Re: Hitech's Master Control
« on: March 13, 2017, 08:41:34 PM »
updated script in first post :

Version 3.0
  • complete menu redesign
  • added more control buttons
  • plus a few bug fixes

built to control characters with skills like - " mage/tamer - necro - weavers "
think im done designing menus for awhile, i will just have to work with what i got  :-X

Pages: 1 2 3 [4] 5 6 ... 8