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 5 ... 16
31
UO Reference Information / Re: Ricardo's Book Quest
« on: May 08, 2010, 10:37:50 PM »

32
UO Reference Information / Re: Ricardo's Book Quest
« on: May 07, 2010, 10:12:20 PM »

33
UO Reference Information / Re: Ricardo's Book Quest
« on: May 06, 2010, 11:09:35 PM »

34
UO Reference Information / Re: Ricardo's Book Quest
« on: May 05, 2010, 10:59:32 PM »

35
UO Reference Information / Re: Ricardo's Book Quest
« on: May 05, 2010, 04:07:06 AM »

36
UO Reference Information / Re: Ricardo's Book Quest
« on: May 03, 2010, 11:54:19 PM »

37
UO Reference Information / Ricardo's Book Quest
« on: May 03, 2010, 04:50:38 AM »
Hi,

today is Book Day No 4.

This one is in the North/East Corner of the Black Solen Area close to the entrance of Wind.

cu

38
General UO Chat / Re: Ids for weaving scrolls
« on: April 29, 2010, 08:45:22 PM »
Hi _c2_,

so far I have those ID's for SW :

;Spellweaving 16 Scrolls: X1X SUM Friend is missing Quest Scroll
Set %Scroll_SWEAV DCR_GCR_FCR_ACR_ZBR_CCR_BCR_X1X_LCR_OCR_NCR_ICR_HCR_KCR_JCR_UCR_

39
Questing / Re: Donate-o-Matic (for library and museum donations)
« on: March 26, 2010, 01:14:07 PM »
Wow, the waits made a huge difference in the speech spam.

Do you have any ideas as to why it's still spouting the '400', even after putting in the wait from the animal pack open?

If I get _c2_ correct .. you should add the wait after you walked the final destination ...
and before you open up the animal .... just to make sure your animal isn't out of Range ...
so I would recommand to add the wait ... after the script has finished the whole rail SUB and before the OpenUp
SUB takes over ...

40
Script development tools / Re: Trailmyx's Runebook/Spellcast Subs
« on: March 26, 2010, 12:34:49 PM »
I have to remember to add that back into the subs.  But someone else pointed this out and doing a quick search from the main page revealed this:

http://www.scriptuo.com/index.php?topic=235.0;highlight=addunderscore

SMF search function is VERY good, BTW.  It's based on where you are in the board, so if you want to search the entire board, make sure you start the search from the main page.

Hi TM,

I know this post is an older one ... but you are confusing me a little.
I asked you a few moons ago the same question about the non existng underscore SUB
and you told me that in was outdated ... and not used anymore by the Travel SUB.

If I remember correct I figured out this must be the truth because of the fact that you
even never use the %charname var within the whole travel SUB.

btw thank you for this great travel SUB :-)

@Paulonius
I use TM's Travel SUB mostly with Recall and I havn't had issues so far even my ping is about 120
I havn't read your script but do you check the #RESULT after using the SUB correctly to make sure
the requested recall worked ?

cu

41
Questing / Re: Donate-o-Matic (for library and museum donations)
« on: March 26, 2010, 10:58:16 AM »
Maybe I'm adding the wait in at the wrong time?

event pathfind 1413 1594
until #charposx = 1413 && #charposy = 1594
if %containerprop = animal
wait 8s
   return
repeat
event pathfind 1413 1605
until #charposx = 1413 && #charposy = 1605
repeat
event pathfind 1411 1607
until #charposx = 1411 && #charposy = 1607
return

Is the the right spot in the rail?  It's still doing it, so I have to assume I'm not doing it correctly.  Or should I add it before the =animal line?

Thanks!

This is for sure the wrong place ..
your wait kills the "IF" construct

try this

Code: [Select]
if %containerprop = animal
{
wait 8s
return
}

if you use an if construct without brackets
like this :

Code: [Select]
if %containerprop = animal
 return

you are only allowed one line after the IF
this line is executed when the result is "true"


if you need to run more commands after an IF
you have to use the brackets to "mark" the part you like to run when the result is "true"

cu

42
Hi,

just in case you are too lazy to search :-)

Code: [Select]
     if #FindType in HS_IS
      Set %RACE HUMAN
     if #FindType in XU_AV
      Set %RACE ELF
     if  #FindType in OCB_NCB
      Set %RACE GARGOYLE


 :D

43
Scripting Chat / Re: REPEAT/UNTIL Loops - Do you use brackets or none?
« on: March 26, 2010, 09:24:00 AM »
There are still places in the UO script Community
 .. where a script without brackets ...
even if it works ...
is considered tooooo bugy to be proven :-)

 ;) :'(

44
New member introductions / Re: ok... i am back (for the third time)
« on: March 26, 2010, 08:37:37 AM »

45
Virtualization / Re: Tutorial - Setting up Microsoft Virtual PC 2007
« on: March 23, 2010, 03:41:30 AM »
Is there any chance to boot from an USB Stick
within MS Virtual PC 2007 ?

I just play around with creating bootable sticks
and it would be nice to check them out this way

cu

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