PDA

View Full Version : C&C Effects and Conditions...options and some help...



TheMetal1
September 8th, 2015, 03:14
Hey All,

I've wanted to do some better implementation of the Effects and Conditions for Castles & Crusades. As the Ruleset has a space for it, but nothing really in it. While a lot of C&C CK'er's are used to doing things on the fly (as am I), I think there is a lot of functionality and automation that will speed things up. I've attached a screen shot of the Effects I've developed so far. This is from my CK Screen so typing these in "as is" is the way to go.

10913

Note. The image above didn't catch "UNCONSCIOUS; AC:-10" (as I added in Primary Hand attack twice :o there are some challenges, and this is where I need the communities help. For some reason, the conditions/effects are not as robust as in 3.5 or Pathfinder. The big issue for is how to remove Levels, i.e. Negative Levels as an effect. Having drop and drag levels, would make this a lot easier (hint to developers!!!). The other place this comes into play is with "Negative Impact" this is an alternate "Death and Dying" Option from the Castle Keeper's Guide. I use this because it allows the PCs to still communicate at 0 Hit Points and below (if they make their CON Save), with the trade off of rolling on the Limb Loss Table. In "Negative Impact" no level is added to SIEGE CON Check. But I can't figure out what code to type in. I've tried using the 3.5/PFRPG version from the Wiki here: specifically the "NLVL" but nothing happens.

Additionally, I had to make a guesstimate for my players with "NEGATIVE IMPACT (-01 to -03) - DRAG, HALTING SPEECH, PUT WEIGHT ON (Save vs. CON, CL:0, NO LEVEL BONUS or 1/2 PHYSICAL ABILITIES); AC:-10; STR: -10; DEX: -10; CON:-10" The CKG says with a failed CON Save that Physical Attributes are reduced to 1/2. I've tried using "HSTR" for half Strength, but it doesn't work. Anyone who's done this, let me know.

To Recap - looking for
1. How deal with Level Increase and Decrease (more specifically Decrease to remove all Ability bonuses).
2. How to deal with Half or Double an Ability

damned
September 8th, 2015, 05:31
You will have to do some coding to make this work as there is only very basic effects support in Castles&Crusades.

You would probably start in /scripts/manager_effect.lua

-- REGEN: # Regeneration
-- DMGO: # [<type>] Ongoing damage
-- ATK: # [melee|ranged] Attack bonus (targeted)
-- DMG: # [melee|ranged] Damage bonus (targeted)
-- HEAL: # Heal bonus
-- AC: # AC bonus (targeted)
-- STR|DEX|CON|INT|WIS|CHA: # Ability score bonus
-- CONC1|CONC2|CONC3|CONC4 Concealment (targeted)
-- COVER1|COVER2|COVER3|COVER4 Cover (targeted)
-- Blinded (Attacker: Applies CONC4 for target)(Defender: AC: -5) (targeted)
-- Invisible CONC4 (targeted)
-- Prone AC: -5
-- Stunned AC: -2
-- Cowering AC: -2

Trenloe
September 8th, 2015, 19:06
You will have to do some coding to make this work as there is only very basic effects support in Castles&Crusades.
I think it's been a while since you've checked out the C&C effect page. There's a lot of effect support now: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects


-- Blinded (Attacker: Applies CONC4 for target)(Defender: AC: -5) (targeted)
-- Invisible CONC4 (targeted)
-- Prone AC: -5
-- Stunned AC: -2
-- Cowering AC: -2
There's no need to code these as coded effects. They are built in conditions: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects#Conditions Just use the name and FG will apply the listed "Modifiers Applied" automatically.

TheMetal1
September 9th, 2015, 01:58
I think it's been a while since you've checked out the C&C effect page. There's a lot of effect support now: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects


There's no need to code these as coded effects. They are built in conditions: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects#Conditions Just use the name and FG will apply the listed "Modifiers Applied" automatically.

damned and Trenloe, thanks for info. Any thoughts on the effects codes I did in the picture? Any thoughts on how to do negative levels or half attribute? I'm guessing it's outside the scope of the C&C ruleset for now. Was the code for 3.5 ever used?

damned
September 9th, 2015, 02:39
I think it's been a while since you've checked out the C&C effect page. There's a lot of effect support now: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects


There's no need to code these as coded effects. They are built in conditions: https://www.fantasygrounds.com/wiki/index.php/CnC_Effects#Conditions Just use the name and FG will apply the listed "Modifiers Applied" automatically.

:) I have used those effects - or some of them anyway.
The text I pasted was from the /scripts/manager_effect.lua

Andraax
September 11th, 2015, 03:57
PM me, I have a pretty comprehensive set that send out as modules to load.