Search found 16 matches

by Paulo
2005-09-09 00:21:36
Forum: General
Topic: Project Guardian
Replies: 7
Views: 5209

haha ae brasilerao. vai aprende a escreve ingles, vacilao :)

q porra seria evict ??


evitar = avoid

an client = a client


e eu duvido muito que alguem daqui vai fazer algo que so sirva pro teu shard :(

como o yoko diz

"no PAY, no gain"

paga pra ele q ele faz. capische?
by Paulo
2005-05-23 19:36:18
Forum: Scripting Ore
Topic: Follow Script (Not fully tested)
Replies: 3
Views: 1074

Mihail wrote:if you want following to the character, move to him cursor and press Alt + Left-click mouse :D


but u cant simulate a ALT press + left click while sleepin :)
by Paulo
2005-05-23 10:36:07
Forum: Scripting Ore
Topic: Follow Script (Not fully tested)
Replies: 3
Views: 1074

Follow Script (Not fully tested)

For those who want to follow targets while macroing.


sub follow()
var togoX
var togoY
while 1
togoX=UO.GetX('self') - UO.GetX('lasttarget')
togoY=UO.GetY('self') - UO.GetY('lasttarget')

if togoX > 1 then
repeat
uo.press(78)
wait(100)
togoX=UO.GetX('self') - UO.GetX('lasttarget ...
by Paulo
2005-05-14 02:00:13
Forum: Requests
Topic: binging hotkeys from the script
Replies: 4
Views: 3495

that'd be great.

its hard 4 me to talk ingame, cause i got lots of key binding
by Paulo
2005-05-05 19:17:14
Forum: Help
Topic: Autotaming help
Replies: 5
Views: 1517

Try doing this thing:
1) Check ID of untamed animal. Write it down.
2) Tame it manually.
3) Recheck its ID. There is a big chance that it changes the ID when becomes tame.
If it is so, thats why you cant use waittargetobject. When you try using it, there is no animal with such ID left in the world ...
by Paulo
2005-05-04 18:36:22
Forum: Help
Topic: Autotaming help
Replies: 5
Views: 1517

It can be so, that a tamed pet and dire pet have different types.
Check it in first place.
Also it can be that your script uses UO.Ignore() somewhere.
And the last thing coming to mind is maybe you try writing its ID to a var and after taming just use it with that ID?




for i=1 to 6
uo ...
by Paulo
2005-05-04 02:35:13
Forum: Help
Topic: Autotaming help
Replies: 5
Views: 1517

Autotaming help

Hi, im working on a autotaming script.

Its almost done, but theres 1 thing missing.


When i use findtype to find the animal i wanna tame, it finds the animal w/o any problems.


But after i tame it and use findtype again to shrink the animal, it wont find my pet !!


why ?!?
by Paulo
2005-05-01 23:45:40
Forum: Help
Topic: Frozen flag..
Replies: 6
Views: 1530

Server adds it, but doesnt send it to the client.
Thats why if you are frozen and try to move, you are not simply standing on your place, but bouncing on the ground. Thats because client doesnt know that you are frozen, sends new coordinates to the server but server ignores them because of frozen ...
by Paulo
2005-04-29 09:24:52
Forum: Help
Topic: Frozen flag..
Replies: 6
Views: 1530

There is no packet sent to the client when you got paralyzed or frozen, only the message. So you can get your state only by actually inspecting all incoming messages on for example "You are frozen and can not move" or something like that.

r u sure bout that ??

when someone paralyzes me ...
by Paulo
2005-04-28 04:15:10
Forum: Help
Topic: Gumps !
Replies: 2
Views: 1146

Gumps !

Are there any limitations (server side) for me to open a Dialog ??

If not, is by any chance possible to "record" my last gump used and re-use it w/o having to click/use some stuff...


In other words, can i send a packet directly requesting a dialog ?
by Paulo
2005-04-25 08:02:02
Forum: Requests
Topic: setuotitle
Replies: 1
Views: 2193

setuotitle

well, that would be something like this:


,set uotitle h:{UO.Life} | m:{UO.Mana} . . . . . . . | bandages:{<bandaga object type>} | Mana potions: {<mana potion object type>} and so on


that´d be really great if u could do that :P
by Paulo
2005-02-11 22:40:04
Forum: General
Topic: Is there anyway of doing absolute target?
Replies: 9
Views: 3170

Well Yoko...
,target is not the ideal solution, since I could wish to use multiple actions on the same target, and the target_key wouldn't allow me.

Put simple, what I want is to have a hotkey to target a guildmate.


addobject guildmate

cast Heal guildmate
cast Cure guildmate ...
by Paulo
2005-02-11 22:33:54
Forum: Requests
Topic: My target&#180;s layer
Replies: 1
Views: 2229

My target&#180;s layer

using ,info in my backpack returns:

ID=0x40096451 Type=0x0E75 RXJALMD Name=a backpack (15 items)
Quantity: 0 Colour: 0x0000 Layer: 21 Has: 1
X=65535 Y=65535 Z=0 C=0x00096454 F=0x00


using ,info in someone else backpack returns:


ID=0x400650AF Type=0x0E75 DVXOKMD Name=
Quantity: 0 ...
by Paulo
2005-01-21 18:17:09
Forum: Help
Topic: Help with target
Replies: 3
Views: 1279

Yoko wrote:uo.[yhlp_ObjAtLayer]



yeah, but that would work for my backpack

not my target´s backpack :(
by Paulo
2005-01-21 01:21:02
Forum: Help
Topic: Help with target
Replies: 3
Views: 1279

Help with target

Hey there.

Id like to know if theres a way i can directly target my target´s layer 21 (aka. backpack) without settin it as an specific object with addobject.

Thank ya.
by Paulo
2004-04-14 22:13:59
Forum: Scripting Ore
Topic: Howto ??
Replies: 2
Views: 2303

Howto ??

Store variables ??

what i want to do is like..

Get my X and Y once, and store it (like %firstX and %firstY on Euo).
then i wait 1000ms
and get my X and Y again

i compare the results
2ndX - 1stX = result 1
2ndY - 1stY = result 2

if result 1 > 0 && result 2 > 0 then
if result 1 ...