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

Pages: [1] 2 3 4
1
Stealth archive / Stealth + UOSteam
« on: December 28, 2013, 07:59:35 AM »
So i was able to about 6 months ago use Stealth v 4 with AUO but now with 6.15 i cannot get it to work with UOSteam. I can connect to server but i cannot get past server selection, it gets hung up on character selection. any ideaS?

2
Stealth archive / Re: AssistUO n Stealth
« on: May 13, 2013, 08:28:52 AM »
only works with razor not with assistuo.

3
General UO Chat - Freeshard edition / Re: UOSecondage
« on: May 07, 2013, 05:45:52 AM »
If I remember correctly. UOForever was where all of the people who couldn't or don't play current UO because it wasn't "as hardcore as pub16 era/back in the day" but also couldn't play in an era of that difficulty either and needed something with the same overall texture, minus the difficulty. Aka UO:Gamers Hybrid Mk2.

Oh don't forget the addition of fundamental mechanics that went into play post LBR era and still persist to this day.

Basically, UOG minus bolas and certain other aspects. 300+ playerbase at all times though and its in an era i enjoy so i play it.

4
General UO Chat - Freeshard edition / Re: UOSecondage
« on: May 06, 2013, 02:09:01 PM »
the pvp sucks i went to UOFOrever

5
UOSteam / Re: AssistUO
« on: May 06, 2013, 02:08:35 PM »
Code: [Select]
//mining with shovel
usetype 0xf39
waitfortarget 1000
targettileoffset 0 -1 0
pause 2000

Anyone got any explode pot throwing macro?

I want one for throwing pots and click spell?

6
Stealth archive / Re: Couple Snippets for PVP
« on: May 02, 2013, 06:25:14 AM »
Code: [Select]
/////////////////////////
const
ClickHeal = 50;//change when you want to heal at
ClickStam = 20;//change when you want to refresh at
CurePotionCD = 0;//change per server settings
HealPotionCD = 10;//change per server settings
StaminaPotionCD = 5;//change per server settings
/////////////////////////
var
CurePot, HealPot, StamPot : Cardinal;
/////////////////////////
Procedure DrinkStam;
begin
  if ((Timer > (StamPot + (StaminaPotionCD * 1000))) or (StamPot = 0)) then
  begin
    if (Count($0F0B) > 0) then
    begin
      UseType($0F0B,$0000);
      wait(500);
    end;
    StamPot :=Timer;
  end;
end;

Procedure DrinkHeal;
begin
  if ((Timer > (HealPot + (HealPotionCD * 1000))) or (HealPot = 0)) then
  begin
    if (Count($0F0C) > 0) then
    begin
      UseType($0F0C,$0000);
      wait(500);
    end;
    HealPot :=Timer;
  end;
end;

Procedure DrinkCure;
begin
  if ((Timer > (CurePot + (CurePotionCD * 1000))) or (CurePot = 0)) then
  begin
    if (Count($0F07) > 0) then
    begin
      UseType($0F07,$0000);
      wait(500);
    end;
  end;
end;

Procedure AP;
begin
  repeat
    if (GetHP(self) < (GetMaxHP(self) - 1)) then
      begin
        if IsPoisoned(self) and not IsYellowHits(self) then DrinkCure;
        if (GetHP(Self) < ClickHeal) and (GetHP(Self) > 0) and not Poisoned and not IsYellowHits(self) then DrinkHeal;
      end;
    if (Stam < ClickStam) then DrinkStam;
    wait(50);
  until dead
end;

Procedure AP1;
begin
  while not dead do
  begin
    if (GetHP(self) < (GetMaxHP(self) - 1)) then
      begin
        if IsPoisoned(self) and not IsYellowHits(self) then DrinkCure;
        if (GetHP(Self) < ClickHeal) and (GetHP(Self) > 0) and not Poisoned and not IsYellowHits(self) then DrinkHeal;
      end;
    if (Stam < ClickStam) then DrinkStam;
    wait(50);
  end;
end;   


begin
end.


7
Stealth archive / Couple Snippets for PVP
« on: April 26, 2013, 06:36:24 AM »
Trying to think of different things to script; Would love to have others help with this ; either sending in pm or posting.

PVP
-Automated potion drinking
Code: [Select]
Procedure DrinkStam;
begin
    if (Count($0F0B) > 0) then
    begin
      UseType($0F0B,$0000);
      wait(500);
    end;
end;
-Automated stuns (pre uor shards)
Code: [Select]
Procedure AutoStun;
begin
if (Stam < 20) then DrinkStam;
begin
UseSecondaryAbility;
wait(1000);
end;
end;

-Target Lowest Enemy
(working on now) - buggy
-Explosion pot kicker (kicks back xplode pots)
(completed but depends on timers for shard)
-Xheals
(having problem with target quene'ing)
-Auto Pop pouches
Procedure AutoPop
(was working now not working on new shard)

8
UOSteam / Re: AssistUO
« on: April 26, 2013, 05:24:24 AM »
Regarding messed status bar display, it is probably a UO patch issue.
I had the same problem after patching my old UO install, a few files got "badly" updated, instead of searching for a fix I just reinstalled, patched and it is fine.

The fix we released tonight is regarding the update of health bars that was not working properly on OSI.

I did this and it fixed, my old files were corruptd.

9
Stealth Snippets\Library / Re: GM detect
« on: April 24, 2013, 01:20:45 PM »
Yea, the one i personally use (has maybe an additional 10 lines) scans for people trying to talk to the bot, with about 10 different catchphrases to scan for.. posted this as something to develop from. Originally found it on a russian shard site not working so i fixed for the freeshards i play

10
Stealth Snippets\Library / GM detect
« on: April 24, 2013, 09:18:25 AM »
i use this for fs uosa change names if you know them.
Code: [Select]
Unit GM_detect;
interface
 
function is_GM_around():boolean;
function does_GM_name_match(ID:cardinal):boolean;
implementation
 
Var
   GM_name_contains :array of string; // general prefixes+official uosa staff
      
 
function does_GM_name_match(ID:cardinal):boolean;
var
   HisName:String;
   i:integer;
begin
   HisName := GetName(ID);
  GM_name_contains := ['GM','Seer', 'Counselor', 'Helper', 'Administrator', 'Admin','GM_name1', 'GM_name2', 'GM_name3', 'GM_name4', 'Derrick', 'Kaivan'];
   For i:= Low(GM_name_contains) to High(GM_name_contains) do
   begin
      if (BMSearch(1,HisName,GM_name_contains[i])>0) then
      begin
      // the name of the character mached with one of known GM names
         AddToSystemJournal('Found by a GM, CARE');
         Result := true;
         Exit;
      end;
   end;
   Result := false;
end;

function is_GM_around():boolean;
var
   GM_ID :Cardinal;
begin
   FindDistance := 30;
  
   GM_ID := FindType($0190, Ground);  // looking for a male GM
  
   if (GM_ID >0) then
      if (does_GM_name_match(GM_ID)) then
      begin
         Result := true;
         Exit;
      end;
 
   GM_ID := FindType($0191, Ground);   // looking for a female GM
      
   if (GM_ID >0) then
      if (does_GM_name_match(GM_ID)) then
      begin
         Result := true;
         Exit;
      end;
      
   // Found no Staff
  
   Result := false;
end;
 
begin
AddToSystemJournal('Found Nothing, Keep Macroing');
end.

11
UOSteam / Re: AssistUO
« on: April 23, 2013, 08:08:35 AM »
Has anyone came up with pvp oriented macros yet for AUO?

12
General UO Chat / Re: Aaaaand I'm back. Kinda.
« on: April 19, 2013, 08:16:29 AM »
Stealth is now banned on multiple freeservers by banning krrios client (UOForever being at the forefront)

13
Stealth archive / Re: AssistUO n Stealth
« on: April 17, 2013, 09:58:39 AM »
I can use razor with stealth just fine. Its when i try to use Stealth and AssistUO together that i have errors.

Basically; i will connect to account via stealth; then load graphical client. Then i load AssistUO connect to local address but when it goes to load client it says cannot open client.exe then stealth gives me the error i posted above.

14
Stealth archive / Re: AssistUO n Stealth
« on: April 17, 2013, 07:20:08 AM »
Anyone have any ideas on how to bypass this error?

15
Stealth archive / AssistUO n Stealth
« on: April 16, 2013, 05:48:15 PM »
With the new AUO version, ive officially decided i should move over to it with RC8 - my problem now is connecting through stealth.

Client send game packets again to LoginServ against connecting to GameServ
 is the error i get?

Pages: [1] 2 3 4