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

Pages: [1]
1
Stealth Client / script causes stealth to crash after 3+ hours.
« on: May 29, 2018, 01:01:26 PM »
ok i run this script 24/7 on freeshard and works fine except when i go to bed and wake up  stealth has crashed.  tried it on latest version and  older version of the stealth client.   someone maybe able to tell me if i screwed the code up somewhere. purpose of script is to  auto invite people to party if they are not in party.
Code: [Select]
Program New;
var
i,k: Integer;
plist:array [1..12] of Integer;
flaginparty: Boolean;

begin
  plist[1]:=1477405;     
  plist[2]:=845656;     
  plist[3]:=472288;     
  plist[4]:=424031;     
  plist[5]:=1437837;   
  plist[6]:=1743999;   
  plist[7]:=2701064;   
  plist[8]:=1157204;   
  plist[9]:=2047781;   
  plist[10]:=1324970;   
  plist[11]:=731296;     
  plist[12]:=5755626;   
  while true do
  begin
    for i:=1 to 12 do
    begin

      if (IsObjectExists(plist[i])) and (GetDistance(plist[i])<7) then
      begin
        if InParty() then
        begin
          flaginparty:=false;
          for k:=0 to PartyMembersList.Count-1 do
          begin
            if IntToStr(plist[i])=PartyMembersList[k] then
            begin
                flaginparty:=true;
            end;
          end;
          if flaginparty=false then
          begin
            InviteToParty(plist[i]);
            AddToSystemJournal('Inviting: ' + GetName(plist[i]));
            wait(1000)
          end;
        end
        else
        begin
          InviteToParty(plist[i]);
          AddToSystemJournal('Inviting: ' + GetName(plist[i]));
          wait(1000)
        end;
      end;
      wait(10);
    end;

     if(not Hidden) then
  begin
    UseSkill('Hiding');
  end;
  end;
end.

2
Stealth Client / 8.7.6 bug
« on: April 13, 2018, 02:02:30 PM »
Client broke closing gumps on update latest update.  revereted back to 8.7.5 and no problems again.  on free shard.  uoevolution.com
 :(

3
Stealth Client / Re: scriptAPI for dot net
« on: April 08, 2018, 07:19:05 PM »
so the scriptapi.cs file isn't valid cant find it anywhere i'm assuming its just compile the dll and use it long hand style instead of using the short version like in the youtube video

4
Stealth Client / scriptAPI for dot net
« on: March 23, 2018, 06:35:19 AM »
can someone point me in the right direction for the C# api dll/cs?

5
New member introductions / Hi, my name is Fayen
« on: May 23, 2017, 07:09:20 PM »
i've been gaming since early 90's(currently 34 years old)  been in and out of mmo's  but first ever was Earth and beyond. played some mud in and out of that time then beta Wow and also Eve online.    no longer play those at all though i still do some website stuff for eve and still learning about databases and api, php and all the stuff  that runs with it. ^.^  i love dabbling in code i started in qbasic back before i was ever in highschool with windows 3.1. since then i've moved through C++ and some basic linux scripts in bash.   since being out of highschool i've not really had much time to mess with code and still dabbled where i could never got good enough for anything carreer wise. since being out of eve online  i've bounced around between games and finally last feb a friend turned me to UO and i cant believe i missed this game in my younger years.  so here i am in UOsteam working through scripts. I started on the lost city shard and have since moved on to Evolution shard as it seems to be alot more active and  people there are great,  there  tons of events and lots of help. (one of the players turned me to this site).   thanks for taking the time to read my horrible intro =p

Pages: [1]