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

Pages: 1 ... 32 33 [34] 35 36
496
Script Snippets / Re: Candelabra vacume
« on: January 18, 2011, 03:45:26 PM »
I used to mod my client and candelabras are certainly passable.

498
Inactive Submissions / Redrum's Silver Bag of Sending Script
« on: January 18, 2011, 09:29:19 AM »
This is submitted on behalf of redrum with his permission.  It's a pretty simple script, but it occasionally suffers a hiccup or two.  It will send silver, at predetermined quantities to the bank with a bag of sending. It will also recharge your bag of sending if you have powder.

It's very easily modified to send and count anything.  I use it for a variety of my farming needs and have like a dozen variations saved.

All credit for this script belongs to redrum and anyone he gave credit to.  All I did was save it on my computer and test it for him.

Code: [Select]
; ########################################
; Script Name:  Redrum's Silver Farming Bag Of Sending
; Author: Redrum
; Version: 1.0
; Client Tested with: Lastes Patch
; EUO version tested with: 1.5 Version 147
; Shard OSI / FS: OSI/FS
; Revision Date:
; Public Release: 4-9-2009
; Purpose:  Send Silver Over 2,000 To Bank With Bag Of Sending
; ########################################

event macro 8 7

set %backpackID #contid
set %mainpack #contid
set %loot cpf
set %chargesused 0
set %silversent 0
gosub menu

loop:
finditem CPF C_ , #BACKPACKID
if #FINDCNT > 0
{
   if #findstack > 1500
   {
   gosub bagofsending
   }
}
if #FINDCNT < 1
{

}
goto loop

sub bagofsending
findbag:
finditem  CKF C_ , %mainpack
event property #findid
if sending notin #property
   {
   ignoreitem #findid
   goto findbag
   }
if #findkind = -1
  {
      display ok You must have a Bag of Sending on you. $
      halt
  }
set %bagofsending #findid
finditem %loot C_ , %backpackID
set %silver #findid
if #findkind = -1
 {

 }
set %findstack #findstack
set #lobjectid %bagofsending
set #ltargetid %silver
set #ltargetkind 1
event macro 17
target 2s
event macro 22
scanJournal 1
if out_of_charges in #journal
 {
  gosub refill
  set %findstack 0
 }
set %silversent %silversent + %findstack
set %findstack 0
set %chargesused %chargesused + 1
gosub menu
return

sub refill
finditem EUO
if #findkind = -1
 {
 display ok You are out of charges and have no powder. You need to restock. $
 halt
 }
set #lobjectid #findid
event macro 17
wait 1s
set #ltargetid %bagofsending
set #ltargetkind 1
event macro 22
set %wait FALSE
return

sub menu
menu clear
menu show 0 0
menu window size 130 60
menu window title BOS
menu window color black
menu font color red
menu font bgcolor black
menu font style u
menu text stats 5 5 Bag of Sending Stats
menu font style n
menu text gold 5 25 Silver Sent:
menu text charges 5 40 Charges Used:
menu font align right
menu text sent 125 25 %silversent
menu text used 125 40 %chargesused
return

499
Inactive Submissions / Redrum's EV Heal, Cure, Invis Script
« on: January 18, 2011, 09:20:06 AM »
I'm submitting this on behalf of redrum who gave me permission to submit it for him.  I happened to have it from an old winuo project.

It's an excellent little script that works really nicely.  I've used it for ages.  It is great for treasures of tokuno, pink scroll farming, silver farming, and when used in conjunction with a looter, various other types of farming.

All credit for this script goes to Redrum and anyone he credits in the credits section of the script.

Code: [Select]
;========================================================
; Script Name: Ev Caster/Auto Heal/Cure/Invis/MobKiller!
; Author: Redrum
; Version: 1.4
; Client Tested with: 6.0.12.4
; EUO version tested with: 1.5v147
; Shard OSI / FS: OSI/FS
; Revision Date: 2/23/2009
; Public Release: 9/26/2007
; Purpose: To farm and live!
; Thx To: Roke, TrailMyx, Cerveza, Endless Night
;========================================================

event macro 8 2
wait 15
event sysmessage

loop:
set %Invisme #True  ; Set #True Or #False
set %CASTEV #True   ; Set #True Or #False
set %KILL #False   ; Set #True Or #False
set %EVRange 3 ;Deafult 5 Tiles Change to make it closer
set %invisdelay 2s ;Deafult 10 seconds change if you like
set %mob FD ;Set Mob Type here

 if c in #charStatus
   gosub Cure
    if #Hits < 90
   gosub Heal
    Wait 1
   
if #followers < 4
{
 IF %CASTEV
  {
   gosub cast
  }
  wait 20
}

IF %KILL
  {
   gosub kill
  }
   
IF %InvisME
   {
    set %enemyID #enemyID
    finditem %enemyID G
    if #findcnt > 0
      {
       event macro 15 43 ; invisibility
       target
       set #targetKind 1
       event macro 23 0
       wait %invisdelay
       set %enemyID n/a
      }
   }
goto loop

sub cast
if #followers < 4
  {
    event macro 15 57
    target 10s
    gosub TM_RandomTargeting %EVRange
  }
return

sub TM_RandomTargeting
  namespace push
  namespace local RT
  set !radius %1
  set !randx #RANDOM % !radius + 1
  set !randy #RANDOM % !radius + 1
  if #RANDOM > 500
    set !randx !randx * -1
  if #RANDOM > 500
    set !randy !randy * -1

  set !randx !randx + #CHARPOSX
  set !randy !randy + #CHARPOSY
  set #LTARGETX !randx
  set #LTARGETY !randy
  set #LTARGETZ #CHARPOSZ
  set #LTARGETKIND 2
  event macro 22 0
  namespace pop
return

sub heal
event macro 15 3
target
event macro 23 0
return

sub Cure
event macro 15 10
target
event macro 23 0
return

sub kill
finditem %mob g_10
 if #findcnt > 0
  {
   event macro 15 29
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
  }
return

500
General UO Chat / Re: To whomever thought Luna was safe...
« on: January 17, 2011, 09:03:29 PM »
You could just pk people in luna.  It's really not even that hard right now.

501
Gold Farming / Re: Whole Book BOD Filler
« on: January 17, 2011, 09:01:09 PM »
Just to clarify. Your script doesn't require alterations with the snippets in the original post?  I've been running it a few minutes and I've seen no flaws so far that might require alteration.

Impressions:
It's not a script to run in conjunction with s7 but rather a modification of s7 that functions as a stand alone script. (an amazing one). 
It's pretty great.  The various gumps appear to function correctly, so it's up to date.

Bravo.  Thank you Paulonius.

502
_C2_ Script Library / Re: C2's BOD Collector Script
« on: January 17, 2011, 10:17:08 AM »
Ah Thanks Gentlemen.

503
_C2_ Script Library / Re: C2's BOD Collector Script
« on: January 16, 2011, 09:26:34 PM »
c2  Do, you recall a script from winuo that removed bods from 1 bod book. filled the bod. then filled another book? I vaguely recall the script being written by you but I really only recall the letter C lol.

504
Player Templates / Re: Nox Mystic Mage
« on: January 16, 2011, 05:35:29 PM »
120 Mage  (+20 mage on crystalline, -20 on mage wep) = 120
120 Resist
120 Eval Int
100 Focus (+20 focus on crystalline) = 120
120 Mystic
80   Poison
60   Necro

All purpose, beast mode, mage fighter.  Lots of utility in group fights.

Would it be better in PvP to go with 60 Spellweaving? Or necro for doing champs in wraith form?

60 spellweaving  doesn't offer that much utility.  I'd rather have evil omen.  Spellweaving+mystic and mage is alot of spells and in the long run, spells just go to waste. You can only cast so much.

505
IDOC tools / Re: TrailMyx's IDOC Finder v1.6
« on: January 15, 2011, 07:21:13 PM »
TM,

I found a bug with the script.  It detects homes with the owner's name of Danger, and possibly variations of that as being IDOC.  Not an end of the world thing, but it is a bug.

506
General UO Chat / Re: Leaving OSI. Off to the freeservers!
« on: January 15, 2011, 05:51:17 PM »
Can I have your stuff on your shard?

507
General UO Chat / Re: Creating Character Bug - FE Solved
« on: January 15, 2011, 12:05:23 PM »
The old bug was with forensic eval, and name your char tact.  It started you out with your stats at like 70/70/70

508
General UO Chat / Re: Housing
« on: January 14, 2011, 04:48:42 PM »
Kaiser. I can. I have room for a house.

509
Player Templates / Re: Nox Mystic Mage
« on: January 12, 2011, 05:23:29 PM »
They basically make mince meat of cleansing winds...

510
Player Templates / Re: Nox Mystic Mage
« on: January 11, 2011, 04:09:02 PM »
Ah the 60 necro is guaranteed casting of evil omen.  As for playing an elf mage char in pvp.  Just say no to elves.

Pages: 1 ... 32 33 [34] 35 36