1. #1

    Unsheat Macro help

    Hey guys, I've been attempting to create a macro that Unsheats my weapon for novelty purposes when out of combat, and does some random spell in combat.

    The command to Unsheat / Sheat is:

    /script ToggleSheath()

    But the problem is that I can't use it in a normal, macro like....

    /cast [nocombat] Prowl(Rank 3); [combat] Ferocious Bite(Rank 8)

    Any help would be most appreciated

    Thanks in advance!

  2. #2

    Re: Unsheat Macro help

    bump ;<

  3. #3

    Re: Unsheat Macro help

    Quote Originally Posted by Nedy
    Hey guys, I've been attempting to create a macro that Unsheats my weapon for novelty purposes when out of combat, and does some random spell in combat.

    The command to Unsheat / Sheat is:
    /script ToggleSheath()
    Any help would be most appreciated

    Thanks in advance!
    im pretty sure if u press z, x, or c you can un-sheath it....( if not go to key bindings and scroll down to look for your unsheath button) no need for macro...
    This user has been banned.

  4. #4

    Re: Unsheat Macro help

    but i do want to make a macro, so i can have X unbinded without loosing the "fun" in unsheating,

    thanks any way mate

  5. #5

    Re: Unsheat Macro help

    Quote Originally Posted by Nedy
    but i do want to make a macro, so i can have X unbinded without loosing the "fun" in unsheating,

    thanks any way mate
    bind it to say F1...
    This user has been banned.

  6. #6

    Re: Unsheat Macro help

    Code:
    /cast [combat] Fan of Knives
    /stopmacro [combat]
    /script ToggleSheath()
    casts spell when in combat and stops the macro, sheaths when out of combat

  7. #7

    Re: Unsheat Macro help

    * hijacks the thread* how do you make a macro like /cast cat form
    /cast prowl???
    This user has been banned.

  8. #8

    Re: Unsheat Macro help

    Quote Originally Posted by deathbysushi-(-_-)-
    * hijacks the thread* how do you make a macro like /cast cat form
    /cast prowl???
    Code:
    /cast cat form
    /cast prowl
    ...

  9. #9

    Re: Unsheat Macro help

    .... /facepalm :-X :-X :-X
    This user has been banned.

  10. #10

    Re: Unsheat Macro help

    anyway guys, no way to use the /script macros in the same context as the [nocombat] ones right? :'(

  11. #11

    Re: Unsheat Macro help

    You're correct, you cannot use conditionals in the usual sense in a /script macro. But you can stop the /script from running. Like was posted earlier, you can...
    Code:
    /cast [nocombat] Prowl; [combat] Ferocious Bite
    /stopmacro [stance:1/2/3/4/5]
    /script ToggleSheath()
    This will sheath/unsteath your weapon when you're not in a form


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •