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

Pages: 1 2 3 [4] 5 6 ... 10
46
Needs, directional antennae,  Another way to make this device with a little know how is the thing called nike+ it goes in your sho, cell phone not required, and a couple of arduino style gadgets. Presto blamo, a unique digital key already in your shoe, well in mine, and away we go, never have to carry keys when i run again.  i saw this on Absinthes JB site, the lockitron, the other day, way cool.

47
hehehe heh, hehehe hehehe heh......

48
Off Topic / Re: The new election process.
« on: October 06, 2012, 06:27:33 AM »
We DON'T live in a democracy, This here be a Constitutionla Republic!

http://www.thisnation.com/question/011.html

49
Off Topic / Re: The new election process.
« on: October 05, 2012, 03:35:37 PM »
For me, in WA state, I live in the wrong county to have my presidential vote matter anyways.  It might sound like i have a defeatus attitude, I still vote, but unless you are voting in Skagit county, who's population out ranks all the other counties here in WA your ideas don't equal enough to make a differance.  Especially because, the biggest city (Bellingham) in my county (Whatcom) majority outvotes my ideals on almost every election that matters!  So, unless I am voting the way of Seattle (which I usually would never do) My vote = Diddly.  and also look at all the people on the East side of our mountains, more spread out lower populations, Hey Guess what! there vote means almost less then mine. Example the way Seattle decided to pay for Safeco Field.  Eastern WA farmers, that will never set foot in that stadium are paying for it, because the voters in and around Seattle voted for it......Sheesh. 


Also, If we could give jobs to people who wanteed them, well they probably wouldn't take them.  In my county (Whatcom) we are the number one producer of Raspberries on the entire planet.  Guess who does most of the work? Not locals, they all feel entitled to 401k and bennefits, and paid vacation and paid holidays.  hard to find anyone who is willing to "put there time in"  or get there hands dirty. Most of the labor here is done by "out of towners"  And they just send there money back home, as in a whole different country!



Cheers,
  Xander

50
Character skill advancement / Re: Freddy's Poison Express
« on: October 03, 2012, 10:57:52 PM »
I added a repeat for the using the poison on the dagger process until a skill gain and then changed the wait timer for the siege ROT I just manually change it for the skill level in the 80's now!
Best easiest poison script around. Hardest part was getting enough regular poisons. But once you get into ROT the amount required drops dramatically! Just need it to figure the delay time and log out log in between skill gains and this would be the most Epic siege skill gainer our there! But it's perfect already too!!!!

51
Home Entertainment PCs / Re: Raspberry Pi
« on: September 27, 2012, 10:37:04 PM »
http://cubieboard.org/
OC to 1.5 ghz more Ram has anyone seen this one?

52
Home Entertainment PCs / Re: Raspberry Pi
« on: September 18, 2012, 02:59:25 PM »
UOMadDog, What is that nifty keyboard remote you have?!

53
UO-Related Tutorials / Re: Cora
« on: September 14, 2012, 06:44:00 AM »
With out the Bard that Chica Hits Like a Friggin' Mack Truck.  It was hopeless for me to go in there on a single account Sampy in any configuration.  And It got worse when more people were there.  Is there any Ankhs down there?

54
UO-Related Tutorials / Re: Solo Twisted Weald/Glade Champion Spawn (Sampire)
« on: September 12, 2012, 05:35:39 PM »
Anyone here Have a single account Siege Template for this or the other Champ with the shadow wisps?  I feel as if I can-not do this champ solo on Siege with the fear in having all my things ganked if I'm PK'ed or die and start getting looted by the mobs. <---- super sucks. As PK'ers sometimes sell or give back gear. depending on who it is.  IF you have ever or currently play Siege and have advice to offer for this champ or the other one I'd appreciete it.

55
General UO Chat / Re: Fishing and Ancient SOS Bottles
« on: September 11, 2012, 05:47:23 PM »
It's not the bottle that's an ASOS right? It's what's inside that becomes ancient or regular SOS? So split them down the middle and start a trial account with out high seas and crack em open to see which one gives more. Or am I mistaken? You get an MIB and once you open it you get either a ASOS or a SOS? Right?

http://www.uoguide.com/Message_In_A_Bottle

56
New member introductions / Re: Old Member Returning
« on: September 05, 2012, 10:39:31 PM »
Well where the heck is your keep?! Sign that ish!

57
Off Topic / Re: Do you have a Facebook account?
« on: September 05, 2012, 10:33:12 PM »
I guess I'm old school, I caught up with my high school chica on MySpace. She is my wife now as well. Heh, MySpace.......pfft!

58
Off Topic / Re: Do you have a Facebook account?
« on: September 05, 2012, 06:13:12 PM »
Best way to plan huge family functions, holiday get togethers, snowboarding trips, and a great place to Alienate myself with my random political soap box rants.

59
Siege Perilous related / Re: RoT Weapon Gainer for Siege
« on: August 26, 2012, 07:22:39 PM »
So, I took His Parry script that summoned earth Elementals, and edited it with bits and pieces from his weapon gainer and made this: (which summons a demon wacks and releases all the  while adjusting the rate of summoning and wacking based on your skill level to account for the ROT, I didn't really write anything here just took parts from his 2 scripts.  And It's not clean, but works. and needs no input from the user to set-up)

Code: [Select]
set %timer_delay 30
set %timer_delay1 ( 60 * 5 ) ;seconds between summons
set %timer_delay2 ( 60 * 8 )
set %timer_delay3 ( 60 * 12 )
set %timer_delay4 ( 60 * 15 )
Chooseskill Archery
Set %temp_skill #skill

Loop:
  Gosub Summon_EarthElm
  repeat
    finditem %elemental G_2
  until %temp_skill <> #skill || #FINDCNT = 0 ; wait until you get a skillgain or creature dissappears


  Set %temp_skill #skill
  if #skill <= 700
     {
     set %timer #sCnt + %timer_delay 60
     }
  if #skill >= 700 && #skill < 800
     {
     set %timer #sCnt + %timer_delay1
     }
  if #skill >= 800 && #skill < 900
     {
     set %timer #sCnt + %timer_delay2
     }
  if #skill >= 900 && #skill < 1000
     {
     set %timer #sCnt + %timer_delay3
     }
  if #skill >= 1000
     {
     set %timer #sCnt + %timer_delay4
     }
  repeat
  until #sCnt > %timer ; delay for next elemental
Goto Loop

;=====================================================
;=                  Gosub Summon_EarthElm            =
;=====================================================
Sub Summon_EarthElm
Summon_EarthElm1:

  event macro 15 60
  set %timer #SCNT + 10 ; cast timer just incase of fizzle
  repeat
    finditem ID G_2
  until #FINDCNT > 0 || #SCNT > %timer
  if #SCNT > %timer
    goto Summon_EarthElm1 ; cast again

  set %elemental #findid
  set #ltargetid %elemental
  set #ltargetkind 1
 msg all stop $
wait 1s
msg all stop $
wait 1s
msg all stay $
wait 1s
msg all stay $
wait 1s
event macro 27
wait 5s
exevent popup #findid
wait 1s
click 39 175
    wait 5s
set %elemental N/A
return

Cheers,
  Xander

60
Siege Perilous related / Re: RoT Weapon Gainer for Siege
« on: August 26, 2012, 10:21:22 AM »
The more stuff the merrier!  Cheers tothe quick reply.  I'll check tonight maybe. As I'm working right now.  :(

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