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

Pages: [1]
1
New member introductions / New Player Introduction
« on: December 29, 2011, 10:54:36 AM »
Hi there,

I go by Flux. I've been around UO for as long as I can remember.  I started playing it as a child when it first came out. I remember being excited about the cloth map, collector pin and the manual that resembled back then what is today's version of YellowPages phonesbook.  I've grown up playing ultima and I play it even now as I'm getting to be an older guy.  I'm married, kids on the way, want to enjoy gaming for now, as I'll be taking a haitus from it all when the babies arrive. XD

I dabble in scripting. Nothing fancy. Usually simple scripts that aren't around (really simple if I'm making from scratch.) I try to modify scripts others made to do things I like them to do. One such example is the Confidence always on script I submitted here a few minutes ago based on Scriblet's LS always on.

I'm Italian living in Canada.  I speak Italian, English and French. I play on Yamato now, whereas I played Atlantic for most of my time spent on UO. Why?  Latency makes it a little more challenging, and it's a good way to practice talking Japanese. I focus primarily on PVM as I'd get blown away in PvP.  I can't play as much as I used to when I was a kid, so I focus on things that are a little more realistic as far as competitive edge goes.

Two things I love in this life so far; My wife, and a black ford mustang convertible.  Everything else is just gravy.

Looking forward to learning a few tricks from you master scripters. Anyone playing on any of the JPN shards, hit me.

-Flux

2
Combat/Healing/Looting / Confidence Always On
« on: December 29, 2011, 10:32:40 AM »
Heya,

Didn't find this kickin' around so I made my own  using Scribblit's Lightning Strike build.

Enjoy!

Post Merge: December 29, 2011, 10:34:33 AM
;==================================
; Script Name: Confidence always on.
; Author: Scriblit (Scope Modified by Flux)
; Version: 1.0
; Client Tested with: 6.0.11.0
; EUO version tested with: 1.5 version 185
; Shard OSI / FS: FS
; Global Variables Used: none
; Purpose: confidence always stays on, will regen mana.
;==================================
gosub setpix
main:
gosub confidence
gosub manacheck
goto main

sub setpix
    display ok Please make sure confidence is on when setting this up.
    display ok Put mouse over confidence, you have 3 seconds.
    wait 3s
    savePix #CURSORX #CURSORY 2
 event SysMessage {Ready to go! Please rate it.}
return

sub confidence
       cmppix 2 f
       {
       event macro 15 146
       wait 4
       }
return

sub manacheck
    if #mana < 3
    {
     regen:
     if #mana <> #maxmana
                {
                goto regen
                }
     }
return

Pages: [1]