Character Vault
Any Concept / Any System
Compendium
Your System Come To Life
Roll20 for Android
Streamlined for your Tablet
Roll20 for iPad
Streamlined for your Tablet

Personal tools

Difference between revisions of "Script:Auto Initiative"

From Roll20 Wiki

Jump to: navigation, search
(Code)
(Api discontinued, link to closest replacement)
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Code ==
+
#redirect[[Script:Group_Initiative]]
  
<pre>// Gist: https://gist.github.com/DarokinB/5826648
+
script overview
 +
|name=Auto Initiative
 +
|author={{user profile|84478|Josh}}
 +
|lastmodified=2013-12-30
 +
|version=2.2
  
var Combat_Begins = Combat_Begins || {};
+
'''Auto Initiative''' creates the API commands <code>!CombatBegins</code> and <code>!CombatEnds</code>. The former will roll initiative for all selected tokens and show the turn tracker window, while the latter will clear the turn tracker and hide it. Only the GM may execute these commands.
+
<br clear="both">
Combat_Begins.statName = new Array ("Dex"); //Stats to be added to roll, commas between values
+
 
Combat_Begins.rollValue = 20; //rolling 1d20, change if you roll 1dXX
+
=== Syntax ===
Combat_Begins.sendChat = true; //True if you want the chat log to show their results
+
 
Combat_Begins.includeChars = true; //set false if you want to roll for players
+
CombatBegins
+
CombatEnds
//If you want players to roll, make this a global macro (add other stats as needed):
+
 
//    @{selected|token_name} rolls a [[ 1d20 + @{selected|Dex} &{tracker} ]] for initiative!
+
=== Installation ===
+
There are four configuration variables near the top of the script. You may alter them to customize the script functionality:
on("chat:message", function(msg) { 
+
 
    if (msg.type == "api" && msg.content.indexOf("!CombatBegins") !== -1 && msg.who.indexOf("(GM)") !== -1) {
+
* '''Combat_Begins.statName''' &ndash; Stats to be added to roll, commas between values
       
+
* '''Combat_Begins.rollValue''' &ndash; Size of die to roll for initiative (for example, 1d20)
        Campaign().set("initiativepage", false );
+
* '''Combat_Begins.sendChat''' &ndash; Set to <code>true</code> if you want the chat log to show the initiative results, or <code>false</code> otherwise
       
+
* '''Combat_Begins.includeChars''' &ndash; Set to <code>false</code> if you want to roll for players. It determines players based on if the token is linked to a character in the journal pane.
        if (Combat_Begins.sendChat == true) {
+
 
            sendChat("", "/desc Combat Begins!");
+
=== Changelog ===
        }
+
{{changelog version|2.2|2013-12-30|* Release}}
       
+
        try{
+
            _.each(msg.selected, function(selected) {
+
                var obj = getObj("graphic", selected._id);
+
               
+
                //Test for players, exit if players roll themself
+
               
+
                var currChar = getObj("character", obj.get("represents")) || "";
+
                var initString = "";
+
                var TokenName = "";
+
                var CharName = "";
+
               
+
                if (currChar.length != 0) {
+
                    CharName = currChar.get("name");
+
                    if (currChar.get("controlledby") != "" && Combat_Begins.includeChars == false ) return;
+
                   
+
                    if (CharName != "") {
+
                        _.each(Combat_Begins.statName, function(stat) {
+
                            //cycle through each stat and add it to mod
+
                            var mod = findObjs({
+
                                name: stat,
+
                                _characterid: obj.get("represents"),
+
                            }, {caseInsensitive: true});
+
                         
+
                          if ( mod.length != 0 ) { initString = initString + " + " + mod[0].get("current"); }
+
                        });
+
                    }
+
                   
+
                    var pre = "";
+
                   
+
                    if (Combat_Begins.sendChat == false || currChar.get("controlledby") == "") {
+
                        pre = "/w GM ";
+
                    };
+
                   
+
                    var string = "I rolled a [[1d" + Combat_Begins.rollValue + initString + "]] for initiative!";
+
                    var result = 0;
+
                   
+
                    sendChat("character|" + obj.get("represents"), string, function(ops) {
+
                        var rollresult = ops[0];
+
                        result = rollresult.inlinerolls[1].results.total;
+
                        var turnorder;
+
                   
+
                        if(Campaign().get("turnorder") == "") {
+
                            turnorder = [];
+
                        } else turnorder = JSON.parse(Campaign().get("turnorder"));
+
                       
+
                        turnorder.push({
+
                            id: selected._id,
+
                            pr: result,
+
                        });
+
                       
+
                        turnorder.sort(function(a,b) {
+
                            first = a.pr;
+
                            second = b.pr;
+
                           
+
                            return second - first;
+
                        });
+
                       
+
                        Campaign().set("turnorder", JSON.stringify(turnorder));
+
                        sendChat("character|" + obj.get("represents"), pre + "I rolled a " + result + " for initiative!");
+
                    });
+
                } else {
+
                    //handles non-linked tokens. Rolls the die value and uses it.
+
                    sendChat(obj.get("name"), "I rolled a [[1d" + Combat_Begins.rollValue + "]] for initiative!", function(ops) {
+
                        var rollresult = ops[0];
+
                        result = rollresult.inlinerolls[1].results.total;
+
                        var turnorder;
+
                   
+
                        if(Campaign().get("turnorder") == "") {
+
                            turnorder = [];
+
                        } else turnorder = JSON.parse(Campaign().get("turnorder"));
+
                       
+
                        turnorder.push({
+
                            id: selected._id,
+
                            pr: result,
+
                        });
+
                       
+
                        turnorder.sort(function(a,b) {
+
                            first = a.pr;
+
                            second = b.pr;
+
                           
+
                            return second - first;
+
                        });
+
                       
+
                        Campaign().set("turnorder", JSON.stringify(turnorder));
+
                        sendChat(obj.get("name"), "/w GM I rolled a " + result + " for initiative!");
+
                    });
+
                }
+
            });
+
        } catch(err){return;}
+
        Campaign().set("initiativepage", true );
+
    }
+
   
+
    if (msg.type == "api" && msg.content.indexOf("!CombatEnds") !== -1) {
+
            Campaign().set("turnorder", "");
+
            Campaign().set("initiativepage", false );
+
            if (MovementTracker.MovementTracker == true) { ResetAllPins() };
+
    };
+
});
+

Latest revision as of 22:07, 20 September 2021

  1. redirectScript:Group_Initiative

script overview |name=Auto Initiative |author=Josh |lastmodified=2013-12-30 |version=2.2

Auto Initiative creates the API commands !CombatBegins and !CombatEnds. The former will roll initiative for all selected tokens and show the turn tracker window, while the latter will clear the turn tracker and hide it. Only the GM may execute these commands.

[edit] Syntax

CombatBegins CombatEnds

[edit] Installation

There are four configuration variables near the top of the script. You may alter them to customize the script functionality:

  • Combat_Begins.statName – Stats to be added to roll, commas between values
  • Combat_Begins.rollValue – Size of die to roll for initiative (for example, 1d20)
  • Combat_Begins.sendChat – Set to true if you want the chat log to show the initiative results, or false otherwise
  • Combat_Begins.includeChars – Set to false if you want to roll for players. It determines players based on if the token is linked to a character in the journal pane.

[edit] Changelog

v2.2 (2013-12-30)

  • Release