News:

Welcome to the new Sinister Design forums!

Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - CraigStern

#3451
Not with the game's initial release, no; that wasn't popular enough to become a stretch goal. Possibly in a future expansion or somesuch.
#3452
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 04:40:17 PM
You can now have the game auto-display the name of the character that triggered dialog, in dialog. This comes in 3 varieties:

-NAME-     first name
-LNAME-    last name
-FNAME-    full name

Suppose you have dialog triggered by OnMoveComplete or OnReachingSpace. You can use the name of the character that moved / reached the space automatically using those keys above.

For example: suppose that you have a conversation triggered by OnReachingSpace, and Emma Strider is the first character to reach the space and trigger the conversation. This dialog

-NAME-, look out--it's moving!

would instead be displayed as Emma, look out--it's moving!
#3453
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 03:27:22 PM
In multiplayer, I've made a couple of changes to random item drops to further discourage turtling in your spawn area:


  • the chance of a drop occurring has been increased from 30% per turn to 35% per turn;
  • random item drops are now limited to spaces a certain minimum distance away from player spawn areas. The minimum distance increases proportionally with the size of the map; right now, the minimum distance is calculated as a number of spaces equal to 40% of the average of the map's length and width (4 spaces on a 10 x 10 map, 6 spaces on a 15 x 15 map, and so on).
#3454
Scripts can be run an infinite number of times.

If you're asking about making it so individual conversations can be triggered more than once per scene, that's something I'm planning to support soon.
#3455
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 12:51:22 PM
You can now have the game auto-display the contents of custom string variables--just use this format:

-STR:VariableName-

So let's say that the game has a custom string variable recorded with the player's chosen elemental affinity under the variable name Affinity; we can have it displayed in dialog like so:

"You've chosen -STR:Affinity-; are you sure?"

Suppose the player chose Shadow for her Affinity; the dialog will end up looking like this:

"You've chosen Shadow; are you sure?"
#3456
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 12:04:25 PM
The manual has been updated with all of the new info. ;)
#3457
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 11:39:54 AM
New actions: IfStringRun, IfValRun, IfValsRun, IfStatRun, IfGoneRun, and IfItemRun. These are like their "GoTo" counterparts, except that instead of directing the dialog to a new branch, these run a script instead.

The two big differences:

(1) These have the exact same parameters as their GoTo counterparts, except that they require a script name instead of a dialog branch.

(2) Unlike the GoTo actions, these do not behave in an if / else if / else manner. So if you load up a branch with a whole bunch of IfXRun actions, you can conceivable trigger all of them at once (as opposed to only triggering the first one that returns true).
#3458
Telepath Tactics (2015) / Re: Developer's Log
July 08, 2013, 11:07:05 AM
New action: IfItemGoTo. This action checks to see if a certain character (or any character on the player's team) has a certain item; if he/she/one of them does, then the conversation moves to the specified branch.

This action has four parameters: Character Name, Item Name, Equipped, and Branch Number. Character name is the name of the character to check for the item; if the name provided is Anyone, then the game checks all the player's characters on the battlefield instead of just one character. Item Name is the name of the item the game will check for. Equipped is either true or false; if true, it will specifically check to see if the named item is equipped, and will only count the item as "found" if it is in fact equipped. Branch number tells the game what branch to go to if the item is found.

So! If I want to see if anyone in the player's army has the Golden Orb equipped and move to branch 6 if they do, I'd use this:

IfItemGoTo/Anyone,Golden Orb,true,6

If I just want to see if Durango Hasslegourd has Bandages sitting around and go to branch 3 if he does, I'd use this:

IfItemGoTo/Durango Hasslegourd,Bandages,false,3
#3459
Telepath Tactics (2015) / Re: Developer's Log
July 07, 2013, 06:25:56 PM
I've just updated the game installer online; update to gain access to the new scripting / weapon degradation features. :)
#3460
Telepath Tactics (2015) / Re: Developer's Log
July 07, 2013, 02:34:23 PM
Scripts are now in-game and working! ;)

A script is a bundle of script actions thrown together under a single name (for those of you who program, this is the Telepath Tactics equivalent of a function.)

Scripts can be be created anywhere that dialog can (i.e. PersistentDialog.xml and individual battles) using the <Script> tag. They're formatted like dialog, but instead of the speaker and dialog info, it just contains the name of the script and some nested actions.

Here are a couple of example scripts that I've placed into PersistentDialog.xml:

<Script>Nightfall
<Action>ChangeCondition/Global Lighting,Night</Action>
<Action>ChangeCondition/Fog of War,true</Action></Script>

<Script>Daybreak
<Action>ChangeCondition/Global Lighting,Daylight</Action>
<Action>ChangeCondition/Fog of War,false</Action></Script>


So we have a Nightfall script that turns the battlefield dark and turns on fog of war; and a Daybreak script that turns the battlefield bright and turns off fog of war.

To run a script, just use the new action Run. Run takes only one parameter: the name of script to run. That's it! ;)
#3461
Telepath Tactics (2015) / Re: Developer's Log
July 07, 2013, 01:16:33 PM
I've added support for custom string variables to Telepath Tactics (as opposed to only supporting custom integer variables, which is what the game had before). This will let you more easily track non-numerical data, such as factional alliances and past dialog choices.

New actions:

SetString -- two parameters: variable name and string.
SetStringByString -- two parameters: variable name and second variable name. (The string contained in the second variable is copied to the first.)
IfStringGoTo -- three parameters: variable name, string and branch. (If the named variable contains the specified string, go to the specified dialog branch.)

The manual has been updated.
#3462
Quote from: Ertxiem on July 04, 2013, 05:50:11 AM
Craig: Can the "weapon degradation" be used to do something like giving the bowman 10 flaming arrows?  So, the bowman would have that extra attack until the 10th flaming arrow was shot.

Yup! Just make a new weapon (a "Flame Bow," say) that is consumedAfter 10, useableWith Weapon Hand, and has grantsAtk set to--say--Bow/Flaming Arrow.
#3463
I composed the music for Telepath RPG: Servants of God.

Nick Perrin adapted the Telepath Theme for the title music in Telepath Tactics; I did the default "Tacticians' Duel" battle theme, and Ryan Richko is doing the remainder of the Telepath Tactics soundtrack (though I'll probably make a couple of tracks I did myself available as bonus material for modders and such).
#3464
Telepath Tactics (2015) / Re: Developer's Log
July 04, 2013, 02:33:47 AM
I've now added support for Fire Emblem-style weapon degradation in Telepath Tactics! Just set an equippable weapon's consumedAfter attribute to any number above 0; the weapon will be useable for exactly that number of strikes before it breaks. (If you keep consumedAfter at 0, the weapon will not degrade with use.)

I won't be using this in multiplayer or in the Kovit mini-campaign, but you can bet your britches I'll be making this a thing in the official campaign. ;)
#3465
Politics / Re: Outdated Voting Rights Act
July 03, 2013, 12:08:27 PM
Quote from: SmartyPants on July 03, 2013, 08:21:58 AMShouldn't the judicial branch be the ones who decide what voting laws are constitutional instead of elected officials, like Obama, who have a political agenda?

Not necessarily; it's the political branches, after all, that have the power to amend the Constitution. The courts are merely an interpretive body.