• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Assigning multiple copies of tag

Lord Magus

Well-known member
I am trying to write a script that would make an item assign 1 or more copies of a single tag to the hero, the number of copies depending on a chooser set by the user.

Can someone point me to a thing that does something like that?
 
Code:
    var total as number
    total = 5

    var x as number
    x = 0
    while (x < total)
        x += 1
        perform hero.assign[Classes.S2Gestalt]
    loop
 
Last edited:
Back
Top