Author Topic: Honor  (Read 3280 times)

0 Members and 1 Guest are viewing this topic.

Offline KhameleonTopic starter

  • Script Tester - Team Leader
  • Elite
  • *
  • *
  • Posts: 2574
  • Activity:
    0%
  • Reputation Power: 30
  • Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!
  • Gender: Male
  • Respect: +238
  • Referrals: 0
    • View Profile
Honor
« on: August 03, 2008, 12:09:56 PM »
0
Just Curious if anyone has an Honor Script already in the makes?

if Not.. Just May be my next project.


Idea's will Include
Honor Monster Type once until Dead
Repeat...


Don't think there is that much more to it :P

Offline rana70

  • Elite
  • *
  • *
  • Posts: 294
  • Activity:
    0%
  • Reputation Power: 5
  • rana70 has no influence.
  • Gender: Male
  • Respect: +37
  • Referrals: 2
    • View Profile
    • MyScripts
Re: Honor
« Reply #1 on: August 03, 2008, 12:16:30 PM »
0
There are a few auto honor scripts around ....
just check the usual places...

Code: [Select]
;================================================================
; Script : Auto Honor and Attack Snipp
; Author : Rana
; Version: 1.0
; Client Tested with: 6.0.8.0
; EUO version tested with: 1.50 (build 139)
; Shard OSI
; Revision Date: 27/06/08
; Public Release: 27/06/08
; Purpose:
;         Wait for an Enemy
;         Honor and Attack Enemy
;         Attacks until target is dead
;================================================================
SET #LPC 50

; Add any Enemy ID here

SET %gegner TG_FD_ ; TG_ Deers for Test FD_Deamon

SET %gegnerid N/A

MainLoop:

 SearchLoop:
  findItem %gegner G_7       ; Check if Target is in Range for Honor
  if #findkind = -1
 Goto Searchloop

 SET %gegnerid #findid                ; Get Enemy ID
 SET #ltargetid #findid               ; Set LTarget
 Gosub Honor                          ; Honor the Enemy
 Gosub Kill                           ; Kill marked Enemy
Goto MainLoop

; ------------ SUBs AREA --------------------

SUB Honor
MSG Honor the Enemy $
Event Macro 49 1   ; Honor Enemy
Target 2s
Event Macro 22 0
Wait 10
Return

SUB Kill
MSG Kill the Enemy $
;Attack Target
 Event Macro 27 0
 Wait 10

;Wait for dead Target
 While #enemyhits <> N/A && #enemyid <> N/A
 {
 Wait 10
 }
 MSG Enemy is Dead $
Return

Offline KhameleonTopic starter

  • Script Tester - Team Leader
  • Elite
  • *
  • *
  • Posts: 2574
  • Activity:
    0%
  • Reputation Power: 30
  • Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!Khameleon is a rising star!
  • Gender: Male
  • Respect: +238
  • Referrals: 0
    • View Profile
Re: Honor
« Reply #2 on: August 03, 2008, 01:43:23 PM »
0
I understand that there are a few out there.. mainly on sites you need to be registered users to to either download or view.. Which I understand the reasoning behind this.  I'm not gonna register and leech a script from a site I'm not going to participate in, therefore I asked on the forums I do Participate in....

on another Note... :)
Thank you for sharing....

Offline rana70

  • Elite
  • *
  • *
  • Posts: 294
  • Activity:
    0%
  • Reputation Power: 5
  • rana70 has no influence.
  • Gender: Male
  • Respect: +37
  • Referrals: 2
    • View Profile
    • MyScripts
Re: Honor
« Reply #3 on: August 03, 2008, 07:15:31 PM »
0
Ahh OK I understand .... ;)

I totaly agree it is really hard to be a "good" active user on more than one scripting side ...

About the honor snip .... if was a fullfill of a request over at winuo for someone who
asked for a auto honor for melee attacks on deamons ....

I am sure you can turn it into everything you need ... and kick my stupid findkind loop  ;D

Have a great day

Tags: