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

Pages: 1 [2] 3 4 ... 16
16
Script Snippets / Re: Helloween CleanUp Donator Assistant
« on: October 09, 2011, 08:03:53 AM »
this combined witht the Trick or treat script, how many clean up points do you think you could get in a 24 hour period?

Hi D,

to be honest I have no clue  ;)

I trow this snippet together because I just was too lazy to donate this stuff manually,
right now I do the Trick and Treat thing basically to get some of the colorfull cloth
and I get this donation items along this task.

I just needed an extra script for the donation because my "donation point holder Char"
hasn't the tailor and begging skill and I am again to lazy to transfer this skills  8)

cu

17
Script Snippets / Re: fast & safe drag and drop sub
« on: October 09, 2011, 04:29:38 AM »
Hi,

I am not the expert here, but I guess this part of your SUB
without any extra wait command will cause a lot trouble
to higher ping (>70) users  ;)
Code: [Select]
...
  set !initcnt #property
  exevent drag !item !amount
  exevent dropc !bag
...

cu

18
Script Snippets / Helloween CleanUp Donator Assistant
« on: October 09, 2011, 03:55:41 AM »
Rana's Helloween CleanUp Donator Assistant

Code: [Select]
;==============================================================================
; Script Name: Rana's Helloween CleanUp Donator Assitant
; Author: Rana
; Version: Check %Ver
; Client Tested with: 7.0.18.x
; EUO version tested with: 1.5 (Build 202)
; Shard OSI / FS: OSI
; Revision Date: 10/09/2011
; Public Release: 10/09/2011
;
; Hisrory
; 0.2 FIX Added missing Wine Bottle IDType
;     FIX DUMP String Error in ScarryStuff;==============================================================================

Purpose
Dumps the Helloween Stuff and more from open Boxes on Screen
to gather Clean Up Event Points for the 2011 event

SETUP
Adjust the %Dump... Vars to select the stuff you like to donate before starting the script !

Code: [Select]
; Adjust the Items you like to move to the Trashbarrel
; Dump it => set to #TRUE
; Keep it => set to #FALSE
Set %DumpCandy #TRUE       ; Lollipops and Candy
Set %DumpFurniture #TRUE   ; Helloween Furniture Items
Set %DumpWebs #TRUE        ; Orange and Black Spiderwebs
Set %DumpScarry #TRUE       ; Skull Items
Set %DumpHelloween #TRUE  ; Milk, Pizza, Wine and Cookie Stuff
Set %DumpBlackrock #TRUE   ; Blackrock Parts

The Trashbarrel and the open Boxes have to be in drag/drop range
max 2 Tiles away from Char position.

Script moves all Items from on screen open Boxes and your Backpack
within drag range into your Trashbarrel

Version History
10/09/2011
0.2 FIX Added missing Wine Bottle IDType
     FIX DUMP String Error in ScarryStuff

19
Script Debug / Re: Fish Cut Up Sub ( Please Critique)
« on: October 08, 2011, 12:21:49 PM »
Hi,

I would add a few waits to make sure you will not end up with hicups,
from what I know about my own scripts the event command can
be very tricky without any delay !



Code: [Select]
Set %DelayEvent 20     ; Waittime for Event Macro Function
Set %DelayDrop 15      ; Waittime after Object Movement

finditem %knife C_ , #backpackid
    set #lobjectid #findid
    event macro 17
    Wait %DelayEvent
    target
    finditem %fish C_ , #backpackid
    set #ltargetid #findid
    set #ltargetkind 1
    event macro 22
    Wait %DelayDrop

20
Off Topic / Re: OT at all: Mail and Calender on the go
« on: June 12, 2011, 12:33:00 PM »
As much as you may hate gmail, their calendar is pretty awesome. Calendars can be shared among people, or you could all just access the same account. If using separate accounts, you can set up who can read/write etc. It also syncs with just about any device including iOS devices.

Thanks for the idea, but the "NoGo" of the Google Sync for Outlook is the fact that you only can
Sync One of the Calenders, only the Main Cal can be Synced...... and so far I was unable to find
a working "caldav plugin" for OL2010

cu

21
Off Topic / OT at all: Mail and Calender on the go
« on: June 12, 2011, 06:33:37 AM »
Hi,

I would like to ask for help with a non UO related topic, maybe one of you can help out.

That is my problem:
I need my Calenders and eMails synced within my family on different locations.
There should be a shared calender between the familymembers (Read and Write able).

That's what I have on different locations:
3 WinOS Computers with Outlook 2010
3 iOS Devices

Anyone has an idea how I can get this to work ?
I have a webspace with webDav, ftp and http access
and there I can run php and cgi stuff.

I hope anyone has an idea, how I can get this solved.
I am really not a fan of gmail at all and I like to avoid this stuff.
There are a lot of google Searchresults about such a topic
but to be honest so far I havn't got a working solution for me.

thx and cu

22
Crafting / Re: CWA Cloth Weaver Assistant
« on: May 13, 2011, 08:37:41 PM »
I wish I had found this before I wrote one, but its fun to look through your code and see what is the same and what is different.  Your menus and tracking are un-paralleled Rana.  Love looking at your stuff.

Thank you very much,
have fun using the script or take it appart as you like :-)

cu

23
Scripting Chat / Re: scripting ?
« on: May 12, 2011, 09:50:48 AM »
error here .. otherwise nice looking code

Set %DisplayOK = #FALSE

I think I got the hint ....
and fixed it

thx
cu

24
Scripting Chat / Re: scripting ?
« on: May 12, 2011, 08:43:12 AM »
Was wondering if there was a way to get the weight of a keg for when you are making potions or a even a way to read what is written in the gump would be even better

any help would be appreciated.... thanks

Hi,

maybe this little test script gives you a few ideas (Target an Item and it will read out the stuff),
check out the STR Commands in the Docs and I am sure you can get what you like !

Basic idea is to read out the text, narrow it down with the STR command
to your needs eg. cut out name or weight numbers and put this into a var to check on it
or calculate ...


Code: [Select]
; SUB Cut down Item Properties and Display
; This SUB will cut down Item Properties in single Lines
; and gives you the option to Display Lines you want
; and ignore Lines by setting up keywords
;
; Grab the ITEMID
Set #targcurs 1
Target
While #targcurs = 1
 wait 0
; Check out the Property of the Item
FindItem #ltargetID
Event Property #FindID
; #Property hold the full String now, store it for later use
Set %FullProperty #Property
; Get the Number of Lines we have
STR COUNT %FullProperty $
; Setup StartParameters for Line Selection
Set %LineCounterMax #strRES
Set %CutLeftPos 1
Set %DisplayOK #TRUE
Set %LineCounter 1
; Check out what to Display and what to Ignore
Repeat
{
 ; Get the most right poition of our Line
 STR POS %FullProperty $ %LineCounter
 Set %CutRightPos #strRES
 ; to Cut it out we need the Length of the Line
 Set %CutLength %CutRightPos - %CutLeftPos
 ; Cut out our Line from the Full Property
 STR MID %FullProperty %CutLeftPos %CutLength
 ; We got one Line out of the Property
 Set %DisplayLine #strRES
 ; Set %DisplayOK to #FALSE when something we don't want is in Line
 ; excludes: lines with weight or insured or requirement
 if weight in %DisplayLine || insured in %DisplayLine || requirement in %DisplayLine || Weapon , #SPC , Speed in %DisplayLine || Durability in %DisplayLine
  Set %DisplayOK #FALSE
 ; Display Line and prevent from SPAM Alert
  if %DisplayOK = #TRUE
  {
   Msg %DisplayLine $
   STR LEN %DisplayLine
   Set %WaitDelay #strRES * 5
   Wait %WaitDelay ; #strRES
  }
 ; Prepair for next Line
 Set %DisplayOK #TRUE
 Set %CutLeftPos %CutRightPos + 1
 Set %LineCounter %LineCounter + 1
}
Until %LineCounter > %LineCounterMax

halt

25
Resource Farming / Re: WFA Wool Farmer Assistant
« on: May 12, 2011, 08:07:35 AM »
Hi,

sorry for the trouble you have with the script and thank you for the feedback !

have a couple of items of feedback.
1. The script doesn't have a failsafe to confirm that it has moved through a gate.  At GM magery you fail to cast gate on occassion.  The script will hang if it fails to cast gate, pausing when it can't find the wool box in the bank -- because it never made it to the bank. I am going to see about adding a position monitor.
You are right, I never had the idea of monitoring this even, because the Gate thing was just for SP
and I never used a char there with trouble to gate :-)


have a couple of items of feedback.
2. I can't seem to get the multi-book to work properly.  I read the directions a couple of times, but for some reason I don't seem to understand it.  Probably because I am think.  What should the second book with bank/home runes be labelled?  
I am sure the directions are not the best, because english isn't my natural language.
I will try my best to fix this, for now I will try to explain.

You can use this script with one (A) or with two (B) RuneBooks.

Version A)
Set the SETUP Menu Option "UseOneRuneBook" to true (signed)
Set the SETUP Menu Option "Allow Alternate Home" to false (unsigned)
Use one Runebook with one Rune to your DropOff Location and max 15 Farming Spots
in it, Place your Bank/Secure Rune into the first Slot of this RuneBook
Let's say you have four Farming Spots put those Runes in the following slots,
rename the RuneBook to "SHEEP (SPACE) (Amount of Farming Runes)" eg "SHEEP 5"

Version B)
Set the SETUP Menu Option "UseOneRuneBook" to false (unsigned)
Set the SETUP Menu Option "Allow Alternate Home" to false (unsigned)

Use two RuneBooks
RuneBook ONE
Named "SHEEP (SPACE) (Amount of Farming Runes)" eg "SHEEP 4"
Holds all your farming runes and the amount of runes is added to the Runebook Name

RuneBook TWO
Any other Runebook in your Backpack can be used and during SETUP you will
be asked to target this Runebook.
The first slot of the Runebook holds your Dropoff/Secure Rune.

The Version B Setup is my personal favorite because
the most of use have a "regular" Runbook with the home/secure Spot in Slot one.

Finally the Option if you sign the OPTION "Allow Alternate Home"
you can add an extra dropoff / secure Rune to the Book setting you like,
to make sure even if spot one is blocked you use spot two.
In Version A setting you just put this alternate home rune in Slot 2
and the farming runes will follow.
In Version B you also place the alternate Spot in Slot 2 of the 2nd RuneBook


I hope this makes it easier.
If you have sugestions please let me know and I will change the "HELP" stuff in the script

cu
Rana

26
Resource Farming / Re: WFA Wool Farmer Assistant
« on: April 20, 2011, 07:09:56 AM »
Has anyone got a good list of consistent sheep locations?

Hi,

just south of Yew you have 3 fenced areas with about 10-15 sheep

The script kills the sheep so I usualy had no need for more locations
because the sheep respawn fast enough.

cu

27
_C2_ Script Library / Re: C2's Trick or Treater 2.0
« on: October 31, 2010, 12:34:03 PM »
Hi C2,

it's me again and since you know I love to have counters in scripts
I would like to sugest this add-on to your script ....
If you like it too.... just put it in  ;)


Code: [Select]
   ; INSERT this at Line 91 START Counter and Display Mod
   if #FindType IN ZUAB
     {
       Set %CountZUAB %CountZUAB + 1
       Menu Delete CNT_L1
       Menu Text CNT_L1 10 40 Grim , #SPC , Warning %CountZUAB
     }
   if #FindType IN MHG_LHG
     {
       Set %CountMHG %CountMHG + 1
       Menu Delete CNT_L2
       Menu Text CNT_L2 10 55 Spider , #SPC , WEB %CountMHG
     }
   if #FindType IN JJZ
     {
       Set %CountJJZ %CountJJZ + 1
       Menu Delete CNT_L3
       Menu Text CNT_L3 10 70 Skul , #SPC , Pike %CountJJZ
      }
   if #FindType IN JAY
     {
       Set %CountJAY %CountJAY + 1
       Menu Delete CNT_L4
       Menu Text CNT_L4 10 85 Helloween , #SPC , Guillotine %CountJAY
      }
   if #FindType IN KAY
     {
       Set %CountKAY %CountKAY + 1
       Menu Delete CNT_L5
       Menu Text CNT_L5 10 100 Covered , #SPC , Chair %CountKAY
      }
   if #FindType IN RZX
     {
       Set %CountRZX %CountRZX + 1
       Menu Delete CNT_L6
       Menu Text CNT_L6 10 115 Iron , #SPC , Maiden %CountRZX
      }
    ; END Counter and Display

Code: [Select]
Just tweak the dislpay size to fit the extra lines
and add a Left Align 

Have a good day and thx for the script
ci

28
_C2_ Script Library / Re: C2's Trick or Treater 2.0
« on: October 30, 2010, 11:51:21 PM »
Hi C2,

I gues sit was me who downloaden the first 2.2 version.

So far I did not end up with the problem you said,
I will monitor the later 2.2 version for a while.

I think it would be a great idea to skip the manual
hard code edit of the chars location within the script.

What do you think about just store the position of the
char when the script starts. I guess most people like me
used to start scripts at the dropoff location with the drop
box in range.

thx for the update ..
cu

29
General UO Chat / Re: Post your halloween treats here...
« on: October 30, 2010, 09:45:04 PM »
Hi,
after about and hour of GM Trick & Treating I have got this noteworhty Items

1 orange colored Spider Web
2 Iron Maidens
2 Grim Warnings

I wait for more  ;)
cu

30
Site News / Re: Welcome to the new Elites - Humpday Edition!
« on: May 26, 2010, 05:53:57 AM »
Welcome to all the new Elites ...
have a great time and thanks for all your "work"

cu

Pages: 1 [2] 3 4 ... 16