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.


Topics - welgill

Pages: [1]
1
Signature Hosting / Cerveza
« on: September 06, 2009, 10:25:27 PM »
here Cerv a temp while I work on a perm

2
Scripting Chat / Menu designer
« on: September 06, 2009, 07:43:59 PM »
I need glasses is one there already sorry

3
Signature Hosting / my siggy
« on: September 04, 2009, 04:41:35 PM »
here we go hope I do this right lol

4
General UO Chat / Bard Madness
« on: September 04, 2009, 11:16:39 AM »
10 days training
106 disco
103 provo
120 music <stoned> then back up to GM
115 peace

all going to 120
stoned off all but disco now total skill points on toon 340

how in the HELL do people do this without macros? sometimes dont gain for HOURS

and if I see another damn CU after i 120 all these for a month I swear I will SCREAM!!!

/venting off


5
Off Topic / Clarification from TM
« on: September 03, 2009, 05:26:41 PM »
Did I read right TM that at 20k posts we all get elite scripts?
or was it elite status? :p
 
set %postcount +1
if %postcount = 20000
{
make all elite
}
gosub makemoreposts
return

6
Script Debug / WeaverAssistant
« on: September 02, 2009, 03:21:35 PM »
Ok now that I have a basic script going I guess it should go here.
I have a couple of problems that are stumping me
1) It seems it is ignoring the return commands it just goes on to next area
2) it keeps opening the buffbar over and over usualy to different place than setup

Other than that it casts the spells long way to go but its definitly coming along will post the code here let me know if you see something that might be screwing me up

Updated to 1.5 bit of a rewrite
Code: [Select]
;==================================
; Script Name:WeaverAssist  
; Author:Welgill
; Version: 1.5
; Client Tested with:
; EUO version tested with:1.5
; Shard OSI / FS:Osi
; Revision Date:
; Public Release:
; Global Variables Used:
; Purpose: Script will keep spellweaving buffs up to date and active will also keep bless going
; Script requires EN's ScanBuffBar subs that can be downloaded from this URL http://www.easyuo.com/forum/viewtopic.php?t=28548 or http://www.scriptuo.com/index.php?topic=1508.msg11033#msg11033
;==================================
set %mana 50
gosub setup
main:
repeat
if #TARGCURS = 0
gosub buffs
if #TARGCURS = 1
gosub waiting

until #CHARGHOST = yes
while #CHARGHOST = yes
goto main

sub buffs
Call ScanBuffBar.txt
  set %ae _ArcaneEmpowerment_  NOTIN %BuffBarIconNames
    if %ae = #true
  {
    Gosub Ae
   }
wait 2s
return  
  set %at _Atunement_  NOTIN %BuffBarIconNames
    if %at = #true
  {
    Gosub At
   }
wait 2s
return
  set %GoR _ArcaneEmpowerment_  NOTIN %BuffBarIconNames
    if %GoR = #true
  {
    Gosub GoR
   }
wait 2s
return
  set %GoL _GiftOfLife_  NOTIN %BuffBarIconNames
    if %GoL = #true
  {
    Gosub GoL
   }
wait 2s
return
sub GoL
if #MANA < %mana
{
  gosub Med
}
Event Macro 15 615
  target 4s
Event Macro 23 0
return

sub GoR
if #MANA < %mana
{
  gosub Med
}
Event Macro 15 602
  target 4s
Event Macro 23 0
return
sub Ae
if #MANA < %mana
{
  gosub Med
}
Event Macro 15 616
wait 2s
return
sub At:
if #MANA < %mana
{
  gosub Med
}
Event Macro 15 604
wait 2s
return
sub setup
event macro 8 1
  wait 5
  contpos 650 0
  wait 5
event macro 8 2
  wait 5
  contpos 650 500
  wait 5
event macro 8 7
  wait 5
  contpos 615 330
  wait 5
Call ScanBuffBar.txt 1 493
return
sub med
repeat
if #MANA < %mana
wait 30
until #MANA > %mana
return

sub waiting
wait 60
return

7
Scripting Chat / My new project
« on: September 02, 2009, 04:37:16 AM »
I am going to attempt to make a spellweaver assistant that will keep all the buffs going.
Now I have two ways I can go here and would like advice from someone better at scripting than I am.
Option1: use EN's buffbar subs to keep scanning buffbar and cast each spell as icon goes away

Option 2: use a timer for each spell and cast at intervals

which is going to be the most stable/best and which is going to be esiest to write please remember this will be my first project in umm 7 years or so.... anyway looking forward to your views

8
Scripting Chat / EN's scripts
« on: August 22, 2009, 12:48:41 AM »
whats with all the scripts moved to private library :p some great looking ones

9
Script Debug / Strange Problem
« on: August 01, 2009, 10:38:14 PM »
I am updating an older script but it is giving me fits.
I dont want to post it in the open at this time.
It has several seperat files and when they are called nothing happens but if i test the files individualy all is peachy.
any ideas on what might stop calls from happening?
I will pm it to someone that knows their stuff but like i said really dont want it in the open

10
New member introductions / Hello
« on: August 01, 2009, 07:55:56 AM »
Just found this site its welgill from the other forums :)
Just read guidlines so here goes
Been playing UO for about 9 years used to write simple scripts helped vanbelle a bit on fishing and played and wrote some with lord sid.
Quit UO for a year or two and just coming back I live in Texas and work from home.

Pages: [1]