Author Topic: Regarding Armor Ignore  (Read 5352 times)

0 Members and 1 Guest are viewing this topic.

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Regarding Armor Ignore
« on: May 31, 2014, 03:13:04 PM »
0
How do you guys check to see if you have it on your weapon?
:-[

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: Regarding Armor Ignore
« Reply #1 on: June 01, 2014, 12:45:26 AM »
0
This is something you should predefine. You should know what weapons are to be used with your character and thus should define how to use them.. For example, I used to use this procedure in stealth (Dunno about EUO)

Code: [Select]
procedure CheckSpecial(Wep:Cardinal; Ability:String; Special:String; Hands:Integer);
begin
  if( Hands = 1 ) then
  begin
    if( GetType(ObjAtLayer(RHandLayer())) = Wep ) then
    begin
      if( (GetActiveAbility<> Ability) AND (GetMana(SELFID)>10) ) then
      begin
        if( Special = 'Primary' ) then
        begin
          UsePrimaryAbility;
        end;
        if( Special = 'Secondary' ) then
        begin
          UseSecondaryAbility;
        end;
        ClientPrint(GetActiveAbility);
        wait(175);
      end;
    end;
  end;
 
  if( Hands = 2 ) then
  begin
    if( GetType(ObjAtLayer(LHandLayer())) = Wep ) then
    begin
      if( (GetActiveAbility<> Ability) AND (GetMana(SELFID)>10) ) then
      begin
        if( Special = 'Primary' ) then
        begin
          UsePrimaryAbility;
        end;
        if( Special = 'Secondary' ) then
        begin
          UseSecondaryAbility;
        end;
        ClientPrint(GetActiveAbility);
        wait(175);
      end;
    end;
  end;
end;

And I call it via this as an example for a composite bow.

Code: [Select]
CheckSpecial($26C2,'Armor Ignore','Primary',2);
It's not the prettiest or even probably close to the best way to do it (You could predefine an entire library of weapons if you wanted and employ it some way.)



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Regarding Armor Ignore
« Reply #2 on: June 01, 2014, 01:35:42 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: Regarding Armor Ignore
« Reply #3 on: June 01, 2014, 01:51:20 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Why would they need to? When it comes to Stealth, EUO is obsolete.



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Regarding Armor Ignore
« Reply #4 on: June 01, 2014, 01:57:41 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Why would they need to? When it comes to Stealth, EUO is obsolete.

But it also means I have to learn a new language, and my collection of working scripts worthless....   *Wishes someone would come up with a EUO to Stealth converter*
« Last Edit: June 10, 2014, 01:56:30 PM by Grandewd »

Offline gimlet

  • Very Super Secret
  • Global Moderator
  • *
  • *
  • Posts: 6210
  • Activity:
    2.8%
  • Reputation Power: 71
  • gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!gimlet is awe-inspiring!
  • Gender: Male
  • Respect: +274
  • Referrals: 3
    • View Profile
Re: Regarding Armor Ignore
« Reply #5 on: June 01, 2014, 02:36:51 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Why would they need to? When it comes to Stealth, EUO is obsolete.

But it also means I have to learn a new language, and my collection of working scripts worthless....   *Wishes someone would come up with a EUO to Steam converter*

I use euo and stealth every time there is a forced patch.

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: Regarding Armor Ignore
« Reply #6 on: June 01, 2014, 03:11:00 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Why would they need to? When it comes to Stealth, EUO is obsolete.

But it also means I have to learn a new language, and my collection of working scripts worthless....   *Wishes someone would come up with a EUO to Steam converter*

I use euo and stealth every time there is a forced patch.


You can use stealth to bypass patching a client in order to get logged in to continue scripting with EUO. But that's barely taking advantage of Stealth itself at all :(

That's like telling a junky "We're out of crack, try pcp laced with crack instead."



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Regarding Armor Ignore
« Reply #7 on: June 01, 2014, 03:24:17 PM »
0
This is no doubt a dumb question, but I have to ask (because I've heard good things about Stealth):
Can EUO and Stealth run concurrently?

Why would they need to? When it comes to Stealth, EUO is obsolete.

But it also means I have to learn a new language, and my collection of working scripts worthless....   *Wishes someone would come up with a EUO to Steam converter*

I use euo and stealth every time there is a forced patch.


You can use stealth to bypass patching a client in order to get logged in to continue scripting with EUO. But that's barely taking advantage of Stealth itself at all :(

That's like telling a junky "We're out of crack, try pcp laced with crack instead."

Ok, can you point me to a good Stealth primer?

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: Regarding Armor Ignore
« Reply #8 on: June 01, 2014, 04:26:52 PM »
0
I'm unsure what you mean by "primer".

However we have a section on Stealth here: http://www.scriptuo.com/index.php?board=145.0

Scripts user's have written that you can check out: http://www.scriptuo.com/index.php?board=146.0

Snippet's of useable code you can look at here: http://www.scriptuo.com/index.php?board=147.0

I have a thread of subs I have made and use in this thread: http://www.scriptuo.com/index.php?topic=11562.0

The Stealth API: http://stealth.od.ua/Doc:Api



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Regarding Armor Ignore
« Reply #9 on: June 01, 2014, 05:36:17 PM »
0
Excellent !
Tyvm  ;)

Offline Crome969

  • Elite
  • *
  • *
  • Posts: 2098
  • Activity:
    0%
  • Reputation Power: 25
  • Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.Crome969 is on the verge of being accepted.
  • Gender: Male
  • UO Enthusiast
  • Respect: +211
  • Referrals: 10
    • View Profile
    • ScriptSDK
Re: Regarding Armor Ignore
« Reply #10 on: June 02, 2014, 12:31:09 AM »
0

Offline dxrom

  • Master of the milestones!
  • Elite
  • *
  • *
  • Posts: 1080
  • Activity:
    0%
  • Reputation Power: 15
  • dxrom is working their way up.dxrom is working their way up.dxrom is working their way up.
  • KEYBOARD COWBOY, GREAT SAMURAI OF THE INTERNET.
  • Respect: +100
  • Referrals: 1
    • View Profile
Re: Regarding Armor Ignore
« Reply #11 on: June 02, 2014, 12:38:11 AM »
0



 ​_██​_
(ಠ​_ృ)
I do say, ol' Chap! Come play EVE Online! Why here is a 21 Day Free Trial!

Offline GrandewdTopic starter

  • Full Member
  • ***
  • Posts: 239
  • Activity:
    0%
  • Reputation Power: 3
  • Grandewd has no influence.
  • Respect: +24
  • Referrals: 0
    • View Profile
Re: Regarding Armor Ignore
« Reply #12 on: June 02, 2014, 02:07:14 AM »
0
Outstanding, thanks a lot guys...  ;)
It's 3am my time and I'm up way too late... I'll check all that tomorrow.
Thx again!

Tags: