Hi all. I just started working on a profession based on Randall Flagg from the Stephen King novel The Stand and I had a few questions.
The plan for the profession was to have it feel like a sociopathic nihilist with a bag full of devious impliments and a mind full of schemes.
Question 1: Is there a balancing guide somewhere on the forums? I want to have an idea of what his point cost should be what he has to compare to and so on. Unfurtuantly I was unable to find one where I looked if there is one please let me know.
Question 2: Could someone help me fix a tiny bug I found when he spawns? it is self inflicted, he spawns with a knife and I wanted to have it be in a sheath not unlike the Special operations profession with the Kukri. I cribbed the code from the special operations profession changed the kukri to one that fit the plan better and it doesn’t spawn right. He spawns with the knife (in the inventory) and the sheath (on his body) but not the knife in the sheath (on his body). stupid I know but I want to get this right.
Question 3: Does anyone have any Suggestions for what I should add to him (or remove) to help him fit the theme better?
Question 4: How do you use the spoiler or code tag? I don’t want to wall of text a post just to provide the code.
Question 5: Did I post these questions to the right board in the forum?
I will provide the code in a separate post when I either have an admins blessing for a “wall of text” or I can figure out how to use a tag to make it less painfull to read. Got it!
The profession I used as a base was Camper
Note: This is still a quite a bit raw, but, here is what is done. I have changed the profession name and flag from the template, Gave him a description, provided him with some of what I thought he would carry.
I did NOT Change the point cost, change the skills, change the clothing, do any more playing with him then just blowing up the shelters in my world a few times… FOR SCIENCE!!!
[code] “type”: “profession”,
“ident”: “mrflagg”,
“name”: “Provacatour”,
“description”: “You always enjoyed stirring up trouble, starting fights, and inciting riots. First as a nihilist tryiing to set the world aflame. Then, for your country toppling regimes. The fun is over now it is time to see if you can put your talent for causing mayham to use when there is no government to topple.”,
“points”: 6,
“skills”: [
{
“level”: 1,
“name”: “survival”
},
{
“level”: 1,
“name”: “swimming”
},
{
“level”: 1,
“name”: “firstaid”
}
],
“items”: {
“both”: [
“tshirt”,
“socks”,
“jeans”,
“jacket_windbreaker”,
“boots_hiking”,
“gloves_light”,
“hat_cotton”,
“knit_scarf”,
“backpack”,
“sheath”,
“ref_lighter”,
“multitool”,
“picklocks”,
“boltcutters”,
“crowbar”,
“c4”,
“c4”,
“firecracker_pack”,
“firecracker_pack”,
“grenade_inc”,
“grenade_inc”,
“scrambler”,
“scrambler”,
“electrohack”,
“dynamite”,
“dynamite”,
“fertilizer_bomb”,
“fertilizer_bomb”,
“gasbomb_makeshift”,
“gasbomb_makeshift”,
“canteen”,
“mil_mess_kit”,
“militarymap”,
“roadmap”,
“1st_aid”
],
“entries”: [
{ “item”: “knife_rm42”, “container-item”: “sheath” }
]
},
“male”: [
“briefs”
],
“female”: [
“sports_bra”,
“boy_shorts”
]
}
[/code]