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
16
UOSteam / Re: AssistUO
« on: April 12, 2013, 07:55:35 AM »
Alot has to do with whether or not you are using the Scavenger and/ autoloot function. What server are you playing with it?

17
UOSteam / Re: AssistUO
« on: April 11, 2013, 02:22:52 PM »
i have it at home, if you can wait give me 3 hours

18
Stealth archive / May be helpful for some (Paralyze - Instant MA)
« on: April 11, 2013, 09:13:28 AM »
At work so i have not yet tested this but it should be fine, report any problems and i will fix.

Code: [Select]
Program Paramenot
var
ctime: TDateTime;

Procedure Arrow;
begin
  if Mana > 10 then
    begin
    Cast('Magic Arrow');
     WaitTarget(1,1000);
      TargetToObject(Self);
    end; 
end;


Procedure CheckJournal;
begin
 if InJournalBetweenTimes ('Paralyze', ctime, Now) <> -1 then
  begin
   Arrow;
  end;
end;

Could even go further to remove targetself or have it wait until journal reads "you feel yourself resisting" thus insuring you get para'd for those being attacked by slow fingers

19
UOSteam / Re: AssistUO
« on: April 11, 2013, 07:16:22 AM »
Kraz, saw the update for RC8 it looks like it will be great!

3 questions for you but you might not be able to answer one.

1) When i use stealth client with AssistUO, the looting still seems bugged, has anyone else had this problem?

2) I found a way to pull player bars through AssistUO and through stealth, the problem i've encountered is that the method i use in AssistUO and Stealth pull them through paperdolls, is there going to be a feature implemented in AUO to closer paperdolls, would it constitute as a gump?

3) UO Revelations, are you getting first hand look at that server and when is it suppose to launch?

20
General UO Chat - Freeshard edition / Re: UOSecondage
« on: April 05, 2013, 08:30:07 AM »
Just to bump to bring more people to this server, its essentially the best uo sa shard out. Nothing is allowed but razor but there are many who break the rules. It is very popular on US/EU.

21
Stealth archive / Re: how to access DLL
« on: April 04, 2013, 07:47:02 PM »
There is a seperate "" that i am trying to access

22
Stealth archive / how to access DLL
« on: April 04, 2013, 07:00:13 PM »
how do i access the portion where it lets me bind hotkeys?

23
Stealth archive / Re: targetting
« on: April 03, 2013, 01:23:53 PM »
still stumped, tried even removing the ability for multiple targets and just adding one target . didnt manage to fix. There must be another way?

24
Stealth archive / Re: targetting
« on: April 01, 2013, 07:14:42 PM »
that fixed that error, now running into variable expect at ", 1,"
Code: [Select]
    begin
      if (GetPathArray(PredictedX, PredictedY, PredictedZ, GetX(Host), GetY(Host), 1, True, p) > 0) then
      begin
        StepQ(CalcDir(PredictedX, PredictedY, p[0].X, p[0].Y), True);
      end;
    end

25
Stealth archive / Re: targetting
« on: April 01, 2013, 06:01:09 PM »
having an issue here
Code: [Select]
(* Procedure Check_Targets *)
Procedure Check_Targets();
var FriendList : Array of Integer; // If only accessed in this Procedure, no need to reserve Variable Global.
var CurrentFriend : Integer;
begin
  FriendList := [$0002A4EF, $0002CE7F, $000F7F27];
  if CurrentFriend in FriendList do
  begin
    if  ( (GetHP(CurrentFriend) < GetMaxHP(CurrentFriend)) AND ( GetHP(CurrentFriend) > 0 ) AND ( TargetPreset() ) AND ( GetDistance(CurrentFriend) < 11 ) AND ( Mana() > 10 ) AND (CheckLOS( GetX(Self()) , GetY(Self()) , GetZ(Self()) , GetX(CurrentFriend) , GetY(CurrentFriend) , GetZ(CurrentFriend) , WorldNum() ) ))then
    begin
      TargetToObject(CurrentFriend);
      exit;
    end;
  end;
end;

[Error] (test.sc at 14:34):  Type mismatch at " if CurrentFriend in FriendList do "

26
Stealth archive / Re: targetting
« on: April 01, 2013, 05:38:52 PM »
It wasnt to be insulting. Just as both of you have mentioned, no time for review and it seems you 3 are the only active ones in SUO that i've encountered. I am currently working on debugging it ;x

27
New member introductions / Re: returning to UO...new to scriptuo
« on: April 01, 2013, 11:18:48 AM »
Welcome to SUO, i live in florida as well, near St Pete.

28
Stealth archive / Re: targetting
« on: April 01, 2013, 11:02:56 AM »
did not want to release everything until its completely owrking - sent you a pm with whole script revised to see if you can see what the problem is

29
Stealth archive / targetting
« on: April 01, 2013, 10:03:05 AM »
I am having difficulties with LOS issues and checking between assigned friends healthbars

I am using

Code: [Select]
begin
losOptions := losTypeRunUO;
while not dead do
  begin
//edited out
    begin
     c := GetPathArray(PredictedX, PredictedY, PredictedZ, GetX(Host), GetY(Host), 1, True, p);
     if c > 0 then StepQ(CalcDir(PredictedX, PredictedY, p[0].X, p[0].Y), True);
    end;
//edited out
  end;
end.

Code: [Select]
procedure checkthem;
begin
 Friend := [$assigned, $assigned, $assigned, $assigned];
 for i := 0 to Length(Friend) -1 do
  begin
   res := CheckLoS(getX(self), getY(self), getZ(self) + 15, getX(Friend[i]), getY(Friend[i]), getZ(Friend[i]) + 15, WorldNum);
//edited out
  end;  
end;


constant is defined as my chars ID$
and vars i : Integer;
Friend: array of Cardinal;


any ideas? Ive tried to pm a few people with no luck, seems this community is a graveyard.

30
General UO Chat - Freeshard edition / Re: UOSecondage
« on: March 29, 2013, 11:56:30 AM »
Neo, maybe you can help me with my problem :p

Pages: 1 [2] 3 4