Note: LucasForums Archive Project
The content here was reconstructed by scraping the Wayback Machine in an effort to restore some of what was lost when LF went down. The LucasForums Archive Project claims no ownership over the content or assets that were archived on archive.org.

This project is meant for research purposes only.

TSL-Creating "Witcher"-Style Books

Page: 1 of 1
 Rtas Vadum
08-20-2010, 8:56 PM
#1
This is how I create "books" that give spells/feats/experience, similar to those in The Witcher computer game.

Screenie:
http://i714.photobucket.com/albums/ww150/ajkfjaioIIl9Wkk/082010.jpg)

1) Use the KOTOR Tool to extract plc_datapad .utp from Kotor II-Templates.bif-Blueprint, Placeables

2) Rename it to something else. Under the Basic tab, change the Name to the name of your "book". Change the Tag (Basic tab) and Template ResRef (Advanced tab).

I *always* use the exact same name for the .utp, Tag, and Template ResRef.

Also under the Advanced tab, select "Usable". Under the Scripts tab, in the OnUsed field, enter the name of the script that will fire your conversation (without the .ncs extension). Example: ev_dlg001.

Example script, where ev_givewpnmstr is the name of the .dlg file:
void main()
{

ActionStartConversation(GetFirstPC(), "ev_givewpnmstr", 0, 0, 0, "", "", "", "", "", "", 0);

}

3) Create a dialog, then attach a script to one of the lines that gives the player some spell, feat, or other bonus.

Example Script:
void main()
{

AddMultiClass(CLASS_TYPE_JEDIWEAPONMASTER, GetFirstPC());
AddBonusForcePoints( GetFirstPC(), 100 );


}

4) Place your "book" where it will be easily found. I like to use door "OnOpen" fields to fire a script like this, where ev_givewpnmstr is the "object template" of your new .utp:
void main()
{
vector vPosition=Vector(-1.52743, -4.13317, 9.09430);
location lSpawn=Location(vPosition,0.0);
CreateObject( OBJECT_TYPE_PLACEABLE, "ev_givewpnmstr", lSpawn);

}
The Vector coordinates are (in this order) X, Y, and Z coordinates that I obtained with Darth333's ingenious Whereami Armband.

Thanks to TK102 and this thread for scripting syntax that made it possible for me to figure out how to do this:
[url]http://www.lucasforums.com/showthread.php?t=143412)

[Tutorial by:e-varmint (http://lucasforums.com/member.php?u=151928)
Original Thread:Click Here (http://lucasforums.com/showthread.php?t=205225)])
Page: 1 of 1