Skip to content

Commit ee42823

Browse files
author
Kevin Searle
committed
CharacterSheet 1.2.1
1 parent 8ff6deb commit ee42823

File tree

3 files changed

+122
-15
lines changed

3 files changed

+122
-15
lines changed

Charsheet/1.2.1/charsheet.js

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/**
2+
* Generates a blank character sheet for any player in the campaign.
3+
*
4+
* Syntax: !charsheet
5+
*/
6+
7+
var Charsheet = Charsheet || {};
8+
9+
on("chat:message", function(msg) {
10+
// Exit if not an api command
11+
if (msg.type != "api") {
12+
return;
13+
}
14+
15+
if (msg.content.indexOf('!charsheet') != -1) {
16+
Charsheet.Generate(msg);
17+
}
18+
});
19+
20+
Charsheet.Generate = function(msg) {
21+
var generatorversion = "1.2.1";
22+
var playerid = msg.playerid;
23+
var player = msg.who;
24+
25+
/**
26+
* Templates
27+
*/
28+
var template = {
29+
"gmnotes": "Player: " + player +
30+
"<br>Generated By: CharacterSheet " + generatorversion,
31+
"charactername": msg.who + " #" +
32+
(findObjs({_type: "character", controlledby: playerid}).length + 1)
33+
}
34+
template.channelalert = "created a character named \"" +
35+
template.charactername + "\"!";
36+
37+
/**
38+
* Permissions
39+
*
40+
* Valid values are "all" or comma-delimited list of player IDs.
41+
*/
42+
/* Who can view the sheet */
43+
var viewableBy = "all";
44+
/* Who can edit the sheet */
45+
var controlledby = playerid;
46+
47+
/**
48+
* Character generation
49+
*/
50+
/* Create the base character object */
51+
var character = createObj("character", {
52+
name: template.charactername,
53+
archived: false,
54+
inplayerjournals: viewableBy,
55+
controlledby: controlledby
56+
});
57+
/* Set GM Notes */
58+
character.set("gmnotes", template.gmnotes);
59+
/* Set Player's name */
60+
createObj("attribute", {
61+
name: "player_name",
62+
current: player,
63+
_characterid: character.id
64+
});
65+
/* Set Character's name */
66+
createObj("attribute", {
67+
name: "name",
68+
current: template.charactername,
69+
_characterid: character.id
70+
});
71+
/* Set script version, used for debugging */
72+
createObj("attribute", {
73+
name: "sheet_generator",
74+
current: "CharacterSheet v" + generatorversion,
75+
_characterid: character.id
76+
});
77+
78+
sendChat(player, "/me " + template.channelalert);
79+
};

Charsheet/README.md

+28-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1-
# charsheet
2-
Simple Roll20 character sheet creator
3-
Syntax: !charsheet
1+
# CharacterSheet
2+
3+
A simple and easily customizable script allowing players to create their own
4+
character sheets.
5+
6+
## Creating A Character Sheet
7+
8+
Just type:
9+
10+
`!charsheet`
11+
12+
This will generate an empty character. It will be viewable by everyone in the
13+
campaign but only controllable by the player that ran the `!charsheet` command.
14+
15+
The character's name will default to `PLAYER_NAME #X`, where `X` is a sequential
16+
number. In high-fatality games or multi-character funnels, this makes keeping
17+
track of characters a little easier.
18+
19+
## Customizing
20+
21+
A GM with minimal scripting knowledge should be able to customize the script to
22+
adapt to whatever game they are playing.
23+
24+
It's easy to change:
25+
- sheet access permissions
26+
- default character naming
27+
- channel alert template
28+
- default GM notes

Charsheet/script.json

+15-12
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
{
2-
"name": "CharacterSheet",
3-
"script": "charsheet.js",
4-
"version": "1.2",
5-
"previousversions": [""],
6-
"description": "A simple script to allow players to create their own character sheets. Using the command '!charsheet' will generate a character sheet controlled by the user that runs the command and visible in the journal to all players named 'Blank_Character'.",
7-
"authors": "Base code by: GitHub user 'kevinsearle', Minor feature improvement and 1-click compatibility by: TECH",
8-
"roll20userid": "446206",
9-
"useroptions": [],
10-
"dependencies": [],
11-
"modifies": {},
12-
"conflicts": []
13-
}
2+
"name": "CharacterSheet",
3+
"script": "charsheet.js",
4+
"version": "1.2.1",
5+
"previousversions": ["1.2"],
6+
"description": "A simple and easily customizable script allowing players to create their own character sheets. Using the command '!charsheet' will generate a character sheet controlled by the user that runs the command and visible in the journal to all players.",
7+
"authors": "Kevin The Barbarian,TECH",
8+
"roll20userid": "565104,446206",
9+
"useroptions": [],
10+
"dependencies": [],
11+
"modifies": {
12+
"character": "write",
13+
"attribute": "write"
14+
},
15+
"conflicts": []
16+
}

0 commit comments

Comments
 (0)