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

Pages: 1 [2] 3
16
Scripting Chat / Re: help please with small script
« on: July 12, 2015, 04:49:26 AM »
Would this work with the mana check and 2 spells?
Code: [Select]
SUB attack
    attack_loop:

    finditem !_enemy G_
 if #findcnt > 0
  {
   If #MANA > 40
   event macro 15 50
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
  }
   If #MANA < 40
  event macro 15 17
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
    FINDITEM !_enemy G_
    IF #FINDKIND = 1
    {
             GOTO attack_loop
    }
    RETURN

17
Scripting Chat / Re: help please with small script
« on: July 12, 2015, 02:48:38 AM »
This is how it should look

Code: [Select]
;                                Set up part
; ------------------------------------------------------------------------------
SET !_creature OE;_XF_IE_LD_VE_BI_UB_HE_OE_CI_NG
    SET !_AutoMoveToTarget #false ;#TRUE or #FALSE
    SET !_lowHits 55
    SET !_maxRange 10
    set %spellTimer #scnt2 + 48000
    ; =====================================
    IGNOREITEM reset
; ------------------------------------------------------------------------------------------
 

;                  Main loop     <--  insert what you want to do here.
; ------------------------------------------------------------------------
   enemyloop:
    FOR !_range 1 !_maxrange
    {
       FINDITEM !_creature G_ , !_range
       IF #FINDKIND <> -1
       {
         SET #LTARGETID #FINDID
         SET !_enemy #FINDID
         GOSUB attack
       }
       WAIT 10
    }
    SET !_range 0
  if ( %spellTimer < #scnt2 )   
          {
          gosub CS
           }
    goto enemyLoop
 ; -----------------------------------------------------------------------------

   ;================

 
    ; ================
    SUB attack
    attack_loop:

    finditem !_enemy G_
 if #findcnt > 0
  {
   event macro 15 50
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
  }
    FINDITEM !_enemy G_
    IF #FINDKIND = 1
    {
       IF #HITS > !_lowHits && !_AutoMoveToTarget = #TRUE && #FINDDIST > 1
          MOVE #FINDX #FINDY a
       WAIT 20
             GOTO attack_loop
    }
    RETURN
    ; ================
SUB CS
finditem !_enemy G_
 if #findcnt > 0
  {
   event macro 15 103
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
   }
   RETURN



I tried this, couldn't get it to work, am I missing somthing?
I don't under stand why this is being so difficult

Find target
Cast corpse skin
Set 48s timer on corpse skin before next cast
Begin attack loop
Cast flam strike
If mana is below 40
Cast fireball
Return

That's all I'm trying to achieve any help appreciated

18
Player Templates / mage barracoon
« on: July 10, 2015, 04:44:41 AM »
I'm currently running a necro/mage doing barracoon, what spell do you guys think will be best on coon damage wise, to kill him the fastest, my current best solo time killing all the spawn and coon is 50 minutes.
I've been doing corpse skin, the doing explode/flamestrike combos, with repond spellbook and around 85% SDI, I'm looking to get these times lowered, what is the best mage spell or necro spell combo to spam,

19
Scripting Chat / Re: help please with small script
« on: July 08, 2015, 02:35:43 AM »
Thank you ghost, I'll work on it tonight, last night I worked on spell combo rotation, wich works awesome,  looks like I missed the set spell timer at the top, thank you again hopefully it works tonight

20
Scripting Chat / Re: help please with small script
« on: July 07, 2015, 06:03:30 PM »
i tried to implement the spell timer,, it was a fail,,,
i think im missing somthing to activate it

21
Scripting Chat / Re: help please with small script
« on: July 07, 2015, 04:40:35 PM »
this is what i have,,, but i think im missing somthing here


SET !_creature OE;_XF_IE_LD_VE_BI_UB_HE_OE_CI_NG
    SET !_AutoMoveToTarget #false ;#TRUE or #FALSE
    SET !_lowHits 55
    SET !_maxRange 10
    ; =====================================
    IGNOREITEM reset

    enemyloop:
    FOR !_range 1 !_maxrange
    {
       FINDITEM !_creature G_ , !_range
       IF #FINDKIND <> -1
       {
         SET #LTARGETID #FINDID
         SET !_enemy #FINDID
         GOSUB attack
       }
       WAIT 10
    }
    SET !_range 0
    goto enemyLoop
    ;================
    set %spellTimer #scnt2 + (48s)
    if ( %spellTimer < #scnt2 )
    gosub CS
    ; ================
    SUB attack
    attack_loop:

    finditem !_enemy G_
 if #findcnt > 0
  {
   event macro 15 50
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
  }
    FINDITEM !_enemy G_
    IF #FINDKIND = 1
    {
       IF #HITS > !_lowHits && !_AutoMoveToTarget = #TRUE && #FINDDIST > 1
          MOVE #FINDX #FINDY a
       WAIT 20
             GOTO attack_loop
    }
    RETURN
    ; ================
SUB CS
finditem !_enemy G_
 if #findcnt > 0
  {
   event macro 15 103
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
   }
   RETURN

22
Scripting Chat / Re: help please with small script
« on: July 07, 2015, 05:17:02 AM »
For example - If you have 120 Spirit Speak and your target has 100 Resisting Spells:

(120 - 100)/2.5+40 = 48 seconds

If your target has 0 Resist it would be 88 seconds.

etc


Ty for clearing that up, I was mixing up his actual resists with skill resists

23
Scripting Chat / Re: help please with small script
« on: July 06, 2015, 06:24:27 PM »
Here some little stuff that might help you.   Have u think of those thing

find how long Corpse skin last

set %spellTimer #scnt2 + ( insert delay)

if ( %spellTimer < #scnt2 )
gosub CS


excellent info, ty sir i will work on that

Post Merge: July 06, 2015, 06:28:46 PM
im not understanding this formula tho

(caster's Spirit Speak - target's Resisting Spells) / 2.5 + 40 in seconds

is it SS minus total targets resists?  divided by 2.5 + 40
or

SS and targets total resists?

24
Scripting Chat / Re: help please with small script
« on: July 06, 2015, 05:13:29 PM »
im currently using this for attacking, works well i left the authors for respect and because i didnt write it...  i would like to add a timed corspe skin loop, where once target is found, it casts corpse skin, the does an explosion / flamestrike combo


;=========================================
    ; Script Name: Raziel's Attack Script
    ; Author: Raziel, Tecmo
    ; Version: 1.20a
    ; Client Tested with: 5.0.1a
    ; EUO version tested with: 1.50.0060
    ; Shard OSI / FS: OSI and FS (Alexandria Tested Only)
    ; Revision Date: 2005-Nov-22
    ; Public Release: 2003-Aug-19
    ; Global Variables Used: None
    ; Purpose: Makes your warrior's hunting life all that much easier
    ; by Auto attacking preset creature when nearby.
    ;=========================================

    ;USER VARIABLES
    ;Set !_creature to the type of creatures you wish to auto attack

    SET !_creature OE;_XF_IE_LD_VE_BI_UB_HE_OE_CI_NG
    SET !_AutoMoveToTarget #false ;#TRUE or #FALSE
    SET !_lowHits 55
    SET !_maxRange 10
    ; =====================================
    IGNOREITEM reset

    enemyloop:
    FOR !_range 1 !_maxrange
    {
       FINDITEM !_creature G_ , !_range
       IF #FINDKIND <> -1
       {
         SET #LTARGETID #FINDID
         SET !_enemy #FINDID
         GOSUB attack
       }
       WAIT 10
    }
    SET !_range 0
    goto enemyLoop

    ; ================
    SUB attack
    attack_loop:

    finditem !_enemy G_
 if #findcnt > 0
  {
   event macro 15 50
   set #ltargetkind 1
   set #ltargetid #findid
   target 3s
   event macro 22 0
   wait 5
  }
    FINDITEM !_enemy G_
    IF #FINDKIND = 1
    {
       IF #HITS > !_lowHits && !_AutoMoveToTarget = #TRUE && #FINDDIST > 1
          MOVE #FINDX #FINDY a
       WAIT 20
             GOTO attack_loop
    }
    RETURN
    ; ================

25
Scripting Chat / Re: help please with small script
« on: July 06, 2015, 07:02:55 AM »
I do have some chopped up stuff that works at the house, I'll post it tonight, I'm not sure how to do a corpse skin timer loop tho

26
Scripting Chat / help please with small script
« on: July 06, 2015, 06:18:10 AM »
Like to get some of you vet scripts help with a small mage attack/heal routine
I'm not the best scripter, usually I just piece allot of code together to get it to do what I want,  now I'm looking for something that will suit my needs better.
Looking to make a single target attack script for boss fights that take awhile,

Actions: set corpse skin on boss, then set a timer to recast corpse skin on boss when it runs out, then proceed to attack loop: explosion/flames strike combo and have a heal/cure check before each cast

Kinda feel bad for asking for help with this, but I'm sure I'll learn something along the way,
Thank you in advance if anyone chooses to help




27
Crafting / Re: MeWon's Smith BOD Sorter-er
« on: April 13, 2012, 04:36:25 PM »
testing

29
hello i am new to SUO and cannot get a script to play,,, is there a tutorial on how to run a script... or is SUO down/.? any help would be nice... i been searching threw the forums for awile and cant find anything that can help me  Embarrassed

30
Scripting Chat / hello,
« on: June 11, 2011, 12:42:39 PM »
i am new here and this is my first time   :o


so i am wondering does this work on OSI and if so is it working now? i am trying to get it to work now but after i load a script the play icon is not enabled

i been searching for a tutorial for noobs like my self.. but have not run across it yet...

any help eppreciated :)

Post Merge: June 11, 2011, 01:17:46 PM
can anyone help me ? or point me in a direction?   i searched threw all forums and cant find why  the script i downloaded will not play....

Pages: 1 [2] 3