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

Pages: 1 2 3 [4] 5
46
Scripting Tutorials / A simple code to test aviable UO colors
« on: September 25, 2009, 12:18:41 PM »
A simple code to test aviable UO colors

Code: [Select]
set %speed 20                         ;20=1sec delay; 40=2sec delay;
set %maxcolor 10000                ;how many colors to test

for %counter 1 %maxcolor
   {
   event ExMsg #charID 3 %counter %counter
   }
halt

47
New member introductions / Re: hi :)
« on: September 25, 2009, 11:51:00 AM »
Bulls. With bulls you can get past 110 and you don't need more than 110 taming.

48
New member introductions / Re: hi :)
« on: September 25, 2009, 11:38:00 AM »
With a nice little script, of course, but it is the location that is important. Here is a screenshot:

49
General UO Chat / Re: CEO locked the status post
« on: September 25, 2009, 09:41:00 AM »
lol CEO deleted 50% of the posts in this thread.
Now I'm only checking this link for update: http://www.easyuo.com/forum/profile.php?mode=viewprofile&u=5

50
New member introductions / Re: hi :)
« on: September 25, 2009, 09:33:10 AM »
Wanna hear a secret?
There is a way in OSI to rise a full tamer within 1 week :)
A tamer bard 3x120 bard the rest on tamers skills took me about 3 weeks :)
you know the "tamers farm" on osi right?

51
New member introductions / Re: hi :)
« on: September 24, 2009, 09:14:03 PM »
Nooooo, I'm totally not interested!

-{"Now he would be so disappointed, he will fall in deep depression and finally he'll take his own life. @cgeorgemo has been taken care of. Only the tigress remains"}
Um....Someone has an over inflated opinion of what their rejection would mean to me.....I'm not going to mention any names but their initials are THIMOTTY.

Plus if etchings aren't your thing I also happen to have some exquisite wood carvings that are quite spectacular.

Actually it was a joke pointed at @Toptwo but at your expense :)
I really apologize!


yes, i do prefer more meat. but i prefer the challenging meat..............
I only play innocent...... :P

52
New member introductions / Re: hi :)
« on: September 24, 2009, 02:57:41 PM »
Nooooo, I'm totally not interested!

-{"Now he would be so disappointed, he will fall in deep depression and finally he'll take his own life. @cgeorgemo has been taken care of. Only the tigress remains"}

53
General UO Chat / Re: Who else???
« on: September 24, 2009, 09:27:53 AM »
I cannot play without easyuo. Looting manually?....Ohhh Please....

54
New member introductions / Re: hi :)
« on: September 24, 2009, 06:11:27 AM »
100x  :P
So I'm writing a note on my wall:
"Take care of tigress"
"Take care of cgeorgemo"
.
.
.
or is was "be careful of"......  :P

55
Television/Movies / Re: Saddest movie
« on: September 24, 2009, 03:46:02 AM »
This is either a joke or noone arround really watch movies :)
How could noone mention "Brave Heart"?????

56
Ahh i see now :P
Thanks

57
New member introductions / Re: hi :)
« on: September 23, 2009, 10:54:28 PM »
My first thought was:
"Developers with social abilities......"
and the second one:
"Impossible"
lol

58
New member introductions / Re: hi :)
« on: September 23, 2009, 09:58:01 PM »
LOL I know but as I said I'm not good at introducing myself so I've decided to play the "innocent" meat :P

For the last 8 years I have played in free shards but 2 months ago I have finally moved to OSI. Anyone else here on Europa?  ;)
I play tamers, tamers and tamers :P in my last shard I had 4 tamers and 1 crafter. I had a pvp tamer (I hate pvp but it was useful from time to time), champ tamer, bard tamer and my favorite treasure hunter tamer. Since I've moved to OSI I have only bard and champ tamers. For now.... ;)

I'm writing scripts. The main reason I have only 2 submitted in the easyuo PCL is that I'm too lazy to make them useful for anyone else. Usually I make a script just for the task I need and nothing more. However I have some very advanced scripts (mostly tamers related) and in time I may get them posted here. But - well I've just added my first contribution to this community - just to avoid being eaten alive by the Tigress  :P  :P

59
Here is my first contribution - my most used subs file.


Installation:
Just unzip the file "_ThimSubs_.zip" in the same folder with euox.exe


Usage:

1) The targeting sub:
In your code insert this:
Code: [Select]
call _ThimSubs_ choosetarget
set %somevar %temptarget
This will bring a targeting cursor in the game, waiting for you to target something. Once you target something it's ID will be stored into the "%somevar" variable.

2) The teleporting sub:
In your code insert this:
Code: [Select]
call _ThimSubs_ teleport_to_rune_in_book %runebook %rune %teleport_try %teleport_skill
this will teleport you to the rune number %rune in the runebook %runebook using the skill %teleport_skill and will try %teleport_try times on failure (for example if your chivalry skill is not enough).



Here is a sample script that uses both subs and will teleport you to each rune in 3 runebooks:
Code: [Select]

set %teleport_skill chiv  ; define the skill you will be using to teleport - chiv/mage
set %teleport_try 3       ; define how many times the script will try to teleport you on failure

event ExMsg #charID 3 1673 target your runebook 1
call _ThimSubs_ choosetarget
set %runebook1 %temptarget
wait 5

event ExMsg #charID 3 1673 target your runebook 2
call _ThimSubs_ choosetarget
set %runebook2 %temptarget
wait 5

event ExMsg #charID 3 1673 target your runebook 3
call _ThimSubs_ choosetarget
set %runebook3 %temptarget
wait 5

loop:
wait 1
for %counter 1 16
   {
   call _ThimSubs_ teleport_to_rune_in_book %runebook1 %counter %teleport_try %teleport_skill
   }
for %counter 1 16
   {
   call _ThimSubs_ teleport_to_rune_in_book %runebook2 %counter %teleport_try %teleport_skill
   }
for %counter 1 16
   {
   call _ThimSubs_ teleport_to_rune_in_book %runebook3 %counter %teleport_try %teleport_skill
   }

goto loop


I use those subs in almost all my scripts so i think they could be useful. And i know the semple script can be made much much more shorter, but i'm posting it as tutorial and I wanted  it to be as readable as possible.

Post Merge: September 23, 2009, 09:57:34 PM
Hmm i cannot see the attached file although if i edit the post in the advanced options it say it is there?!?!?!

60
New member introductions / Re: hi :)
« on: September 23, 2009, 07:21:11 PM »
Of course i did?!?!
I'm sorry, but i didn't get your point?

Pages: 1 2 3 [4] 5