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

Pages: 1 2 3 [4] 5
46
12TimesOvers' Script Library / Re: XIIxOveR's Cartography Trainer
« on: January 03, 2013, 04:18:30 PM »
Fired up this script up tonight:

1/2hr in:  gone from 90.0 to 90.5.

As always thank you!

Casa

47
Off Topic / Re: Get R' Done 2013!
« on: January 01, 2013, 10:54:44 AM »
1) Cliche but...  Better Husband / Father.  Wife & I work opposite schedules so only really see each other 3 days a week.  Need to make those days more fun.  Munchkin just needs more "running time" but seattle winter weather sucks!

2) Lower my monthly expenses..  Need to Refinance, Find better insurance & bust Comcast one because what I'm paying isn't worth the service I get.

3)  Spend more time with Family.   2.5 hour Drive, but little one is only little for so long.

4) Actually PLAY UO more than I have been.  I script 20+ / day but I just really need to get back into a Vent. / new guild because other people are what make UO fun. 

5) Get a Raise!  I deserve one..

Lastly......   "Get R' Done" ....   Lol All that comes to mind is that guy named Tickle off the Moonshining TV show heh.

Nothing cliche about any of that!!

One tip on the refinance part - don't procrastinate!! Set up a couple hour block of time, grab a pen and paper and start making calls!!! talk about cliche but after procrastinating with my insurance for months I finally did just that and bam cut my insurance by 30% with an hour or so of work!

And of course....
Get R' Done!
Haha

Casa

48
Off Topic / Get R' Done 2013!
« on: January 01, 2013, 08:42:51 AM »
Good Morning All,

I wouldn't consider these to be New Year Resolutions but if that's how you want to do yours feel free!


Professionally: Set myself up for promotion. Complete my job schooling and push for another deployment.

Nerdom: Write/create a valuable script that others find useful.

Random: TAKE A VACATION! Somewheres warm, with great snorkeling and fishing!!


Anyone have something they want to get done this year?!?

Casa

49
Off Topic / Re: Gin
« on: December 31, 2012, 05:51:59 PM »
Gotta go with TQ. I tried it for the first time in Australia this summer mixing it with a lemonade soda and it was totally drinkable at 50/50.

50
Scripting Chat / Re: Chiv healer in progress...
« on: December 31, 2012, 12:10:57 PM »

Magnetic manufacturing.

Create magnets to create motors to recharge and build magnets to build machines to use magnets to create energy to do with what you need. Turn that energy into more magnetic charging/building factories to produce more magnets and sustain more energy maybe?

Hrmmm I have permission to cite this? Haha. I think I'm going to stick with the basics though - Solar, Hydro, Wind...

Casa

51
Off Topic / Re: Service Members?
« on: December 31, 2012, 09:56:05 AM »
Air Force calls it OTS.  Thought they rolled weapons system officer and navigator up into one new rated category, combat system officer.  If that's what  your friend was promised, hopefully they will follow through.  Once you're part of the system though, specialty is whatever they assign you.  Been there (OTS), done that (IRR). 

Oh I know all about that area... Needs of the Marine Corps above ALL else! AKA The Green Weenie!

Casa

52
Scripting Chat / Re: Chiv healer in progress...
« on: December 31, 2012, 08:43:57 AM »
This is the Journal Scanning Sub I've been using for ages.  I think I borrowed it from somewhere but don't honestly recall..

Code: [Select]
START:

  Msg 1 One $
  set %Before_Action_jindex #jindex
  Msg 2 Two $
  set %sendThis #jindex - %Before_Action_jindex
  Gosub Checkjournal %sendThis 2_Two
  If #Result = #True
    Display ok You've Found the journal Entry you scanned for !
  Msg 3 Three $

Halt
;------------------------------------
Sub CheckJournal
;%2 = Message to scan for (including underscores)
;%1 = How far to scan up (optional - default = 1)
; #result = #true if the message IS found, #false if otherwise
nameSpace Push
nameSpace local J
if %0 = 0 || %0 = n/a
   set %1 1
for !_i 1 %1
{
   scanjournal !_i
   if %2 in #journal
   {
      nameSpace Clear
      nameSpace Pop
      set %Jindex_success #jindex
      Return #true
   }
}
nameSpace Clear
nameSpace Pop
Return #false

Hope this gives you a place to start .  I just insert this line

set %Before_Action_jindex #jindex

Right before I perform the action that generates the Message I want to scan for  and then insert this line...

set %sendThis #jindex - %Before_Action_jindex

AFTER the action that generates the message has been performed.  You can then use the Sub whenever you want to check #true / #false if the message was found.

Thanks Alpha! Been switching back and forth from my final research project on Renewable Technology and reading journal scanning tutorias and subs within scripts hahah not productive at all!

Thanks Again,
Casa

53
Off Topic / Re: Service Members?
« on: December 30, 2012, 09:01:27 PM »
Current military.  Active Duty Air Force.  And that's all you'll get out of me, spy!

Cool one of my best friends is leaving for Chair Force OCS in Jan  ;)

He's setup to be a weapons officer.. whatever that is for you all.


54
Off Topic / Re: Service Members?
« on: December 29, 2012, 12:20:50 PM »

55
Off Topic / Re: What'd everyone get this year?
« on: December 28, 2012, 09:23:51 AM »
Funny you said that about the pants Alpha.  We had a friend over for Christmas dinner who was a front line machine gunner for the Canadian Army last night and he rolled his eyes when I told him about the pants.  However when I showed them to him and he felt the fabric the tone changed from "that is stupid and you are a moron Mr. Canuker" to "Wow, I think I have to buy some of these".  I work in a stuffy office where how one dresses is a indication of where on falls on the totem pole and I have a reputation to keep up with.

http://epicureandealmaker.blogspot.ca/2012/11/the-rules.html see rule number 7.  I'm not in IBing but retail stock market investing and I run a portfolio worth a little over $400mil. 

That all said the best part was having the kids around, my mom and mother in-law, my buddy and his dog all over for the day.  A cold beer http://www.innisandgunn.com/en/the-range/spiced-rum-2012.aspx and a bowl of something yummy at the end.  And, if the dad is so lucky, a little christmas cheer from the wife to say goodnight.

Thanks for the link to the blog. I found it very interesting. Is it yours?

Casa

56
Off Topic / Re: What'd everyone get this year?
« on: December 28, 2012, 05:08:44 AM »
A Microsoft Surface RT.... Love it!

57
Scripting Chat / Re: Chiv healer in progress...
« on: December 28, 2012, 05:07:44 AM »
Thank you Maddog and dxrom. I'll check both of these out and put up the results tonight.

Post Merge: December 28, 2012, 07:30:50 PM
Suggestion for something I noticed...

You have the line:
Code: [Select]
if #hits < 114
Most likely this means that 114 is perhaps your maximum HP minus 20 (or something similar). Instead of putting in a hard-coded value (like 114), you may want it to work with different characters that have a different amount of HP. So I would recommend using:
Code: [Select]
if #hits < ( #maxhits - 20 )


Ok Made this change. Went with ( #maxHit - 10 ) though. Thank you!

Casa

Post Merge: December 28, 2012, 05:34:41 PM
When casting you want to be careful. You don't want to overcast spells and get caught in a fizzle loop. You also want to make sure to scan for fizzles.

Something like uh...

Code: [Select]
set %dmgBeforeHeal 25
set %spellTimer #scnt2


if #hits < (#maxhits - %dmgBeforeHeal) && ( %spellTimer < #scnt2 )
  gosub castHeal

sub castHeal
  event macro 15 202
  set %spelltimer #scnt2 + %safety
  gosub fizzleCheck
  if %fizzled = #true
    return
  else
    event macro 23 0
return

sub fizzleCheck
;insert some journal scanner here to check for fizzles.
return

Just something to get you started.

Okay. I'm trying to look into the journal scanning stuff using the easyuo wiki... It's a bit beyond my newb level but I'm gonna take a swing at it.... Standby! Haha

Casa

58
Off Topic / Service Members?
« on: December 27, 2012, 09:11:07 PM »
Just wondering if there are any current or former service members lurking the board?

I'm currently active duty Marine Corps.

59
Scripting Chat / Chiv healer in progress...
« on: December 27, 2012, 09:08:53 PM »
Okay I was looking for something that would heal me using chivalry and maybe my searching prowess is as poor as my scripting prowess but allow me to take you through my last 3 or so hrs.

Search for self healer - nothing that was simple or as easy as that I could understand.
Started looking for something just plain and simple to understand - find Cervezas bushido/ai script that was based on mana...

Code: [Select]
gosub setpixel-LightningStrike
gosub setpixel-ArmorIgnore
display ok Ready to Begin

repeat
if #mana > 30
  gosub exec-ArmorIgnore
if #mana < 30
  gosub exec-LightningStrike
wait 1
until #false

sub exec-LightningStrike
wait 5
cmppix 1 t ; Lightning Strike
  return
event macro 15 149
wait 5
return

sub exec-ArmorIgnore
wait 5
cmppix 2 t ; Lightning Strike
  return
event macro 35 0
wait 5
return

sub setpixel-LightningStrike
event macro 15 149
display ok Move the mouse to your Lightning Strike Icon.$You have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 1
wait 5
return

sub setpixel-ArmorIgnore
event macro 35 0
display ok Move the mouse to your Armor Ignore Icon.$You have 2 seconds
wait 2s
savePix #CURSORX #CURSORY 2
wait 5
return

Now I'm thinking well if this can check against mana to then do something maybe I can change it to check hp to cast close wounds...

As a total and complete newb programmer/scripter I didn't even know where to start, so I started searching for help guides, tutorials heck anything I could think of that might aid me in changing it to what I desired, and JUST when I was about to give up I stumbled across the Easyuo wiki in the tool section of script uo!!

Once I found out what event macros were I started making some changes, saving them and opening/running them in easyuo. Step by step and save by save I got to here and while likely the most ridiculous thing some of you have ever seen I'm excited by it! Haha simple right?

Code: [Select]
repeat
if #hits < 114
  gosub healme
until #false

sub healme
 event macro 15 202
 event macro 25 0
 event macro 23 0
return

Now obviously this is so crude... but it's my first time and although I'm falling asleep writing this I can't wait to get back at it tomorrow after work. I plan on adding a check for poison and a sub to cast cleanse by fire and maybe a couple other little fun things!!!

I'm hooked! I'm up for any constructive criticism or otherwise.

Casa


60
Just wanted to say worked flawless tonight for over 2 hrs, netting me about 40k boards.... WOW! As I said was flawless and efficient. I look forward to checking out the inner workings with this script!

10/10

Casa

Pages: 1 2 3 [4] 5