Forum in READ ONLY mode! All questions and discussions on Discord official server, invite link: https://discord.gg/VxsGzJ7

Search found 53 matches

by Crome696
12.01.2015 21:27
Forum: Help
Topic: Server Names
Replies: 15
Views: 11403

Re: Server Names

The Runebook is a generic Gump. This means each Button has an BaseValue and Offsets. When you send a Click Reply you sent the Value the Component would send if you click. You can capture those informations by using <Prefix>GumpInfo while the Gump is open. Then the Buttons have a return_value you nee...
by Crome696
28.07.2014 13:56
Forum: Help
Topic: problem in LastTarget
Replies: 3
Views: 3858

Re: problem in LastTarget

Runuo and other shardsoftware also handle Target as object containing any entity you last got through any target interaction.
So if you use any method to target to anything it will be assigned to Character.Target.
by Crome696
18.05.2014 3:04
Forum: Help
Topic: problem when i try connect
Replies: 12
Views: 9119

Re: problem when i try connect

Neo published his Mul Converter here : http://www.scriptuo.com/index.php?topic=11071.0 Scriptuo requires a registered Account + Introduction to get access to attachments. I can recommning his work since it works perfectly with stealth. Alternative would be http://servuo.com/threads/uofiddler-uop-ext...
by Crome696
17.04.2014 18:13
Forum: Help
Topic: Help using script.
Replies: 9
Views: 7434

Re: Help using script.

Can you explain why you need to set it up from it's name? Becouse it won't be as secure as it would be done by ID. In Order to dynamicly load the Books. I dont know wich shard the author plays but EA and many shards nowadays have complete random spots, there it isnt required to filter books. Old sc...
by Crome696
17.04.2014 18:06
Forum: Help
Topic: Help using script.
Replies: 9
Views: 7434

Re: Help using script.

Yea with gump i mention GUI (my bad) Can u throw me a bone on how to make the runebook recognization with i've list (ORE & BASE) Ratio should be fine to implement into GUI. I maked a ICQ and added you already, i got some questions, hehe. 1) GUI not possible with Stealth 6.x and Pascal Script. T...
by Crome696
17.02.2014 17:46
Forum: Help
Topic: Stealth+Razor for Dummies, how?
Replies: 3
Views: 4522

Re: Stealth+Razor for Dummies, how?

Connect to Server via Stealth.

Connect to Stealth via Razor using IP 127.0.0.1 Port 5005. Username : Stealthclient , Password : Admin

Enjoy Playing. Don´t work for UOSteam.
by Crome696
13.02.2014 0:36
Forum: Scripts
Topic: i want to find item id, not type
Replies: 6
Views: 11491

Re: i want to find item id, not type

mixers wrote:i finded 2 same type item,if i need item in backpack, so unquip all armor and equip the item.
thanks.
Check if Item is Exist, then check if Parent of Item is Backpack. there you go
!
by Crome696
13.02.2014 0:35
Forum: Help
Topic: help me, Unknown identifier
Replies: 4
Views: 5628

Re: help me, Unknown identifier

Well its like normal process.. You can enter the Train if you know howto.. So if someone say you should enter, your process must be known how to. Keep this in Mind. Another Sample : Bite the Red Apple. Before you know how to bite you should know what is "An Apple" and the Color "Red&q...
by Crome696
10.02.2014 15:29
Forum: Scripts
Topic: i want to find item id, not type
Replies: 6
Views: 11491

Re: i want to find item id, not type

ok , i know , 'GetDistance' can help me. now i want know how to find item by id? you cant directly Search for an ID. The possibilitys to look if the ID exist or is valid would be that you check "isObjectExist" and then check the Distance. Finding Objects in the Objectlist for the ID would...
by Crome696
10.02.2014 15:22
Forum: Help
Topic: help me, Unknown identifier
Replies: 4
Views: 5628

Re: help me, Unknown identifier

Your issue is due following on your Scriptflow : You declare variables, then the Body of Script then the functions. But you need first declare variables, then Functions and then the body. Another required thing is the terminology. Like : Procedure b(); begin a(); end; Procedure a(); begin AddToSyste...
by Crome696
23.01.2014 1:16
Forum: Help
Topic: UOSteam
Replies: 10
Views: 9973

Re: UOSteam

UOSteam is great. It's similar to razor but a much better software with the ability to script (which razor does not truly have). I would highly recommend trying it out. I am very new to stealth. To make sure I understand you correctly; the client must be decrypted by software (like razor) or must a...
by Crome696
18.12.2013 8:11
Forum: Scripts
Topic: how to get current skill level
Replies: 2
Views: 8005

Re: how to get current skill level

getskillvalue('resisting spells') it's can get real skill level. the skill value 100, now cast spell "protection", current skill value 66, if use getskillvalue, the value still keep 100. Use Buff\Debuff Event => http://stealth.od.ua/Doc:Manual/Reference/Events Whenever you activate a buff...
by Crome696
29.11.2013 16:04
Forum: Help
Topic: finditem something in bank
Replies: 4
Views: 5295

Re: finditem something in bank

Take Info from Item in Bank and Check Parent may help ( untested ) Then you have ID of BankContainer..
by Crome696
16.11.2013 16:21
Forum: Scripts
Topic: how to use "valor" and "justice"
Replies: 7
Views: 12366

Re: how to use "valor" and "justice"

Program New; begin //Body of Script UseVirtue('Honor'); end. error message: 21:27:11:718 [kaitan]: Compiler: [Error] (111.sc at 4:5): Unknown identifier 'UseVirtue' 21:27:11:718 [kaitan]: Compiling failed 21:27:11:718 [kaitan]: Script 111.sc stopped successfuly Program Test; Function Honor(TargetID...
by Crome696
16.11.2013 13:54
Forum: Scripts
Topic: how to use "valor" and "justice"
Replies: 7
Views: 12366

Re: how to use "valor" and "justice"

Function Honor(TargetID:Integer):Boolean; var myResult : Boolean; begin myResult := False; ReqVirtuesGump(); UseVirtue('Honor'); if(WaitForTarget(500) = True)and (GetDistance(TargetID) < 6) then begin TargetToObject(TargetID); myResult := False; end; Result := myResult; end; Sample of using Honor