Merged redundant hak files. Moved hak scripts into module. Updated gitignore. Full Compile. Added release folder & archive.
10 lines
328 B
Plaintext
10 lines
328 B
Plaintext
//////////////////////////////////////////////////////////////////////////////
|
|
// npcact_conv_50pe - Custom Conversation 50% chance
|
|
// By Deva Bryson Winblood 08/31/2004
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
if (d100()<51) return TRUE;
|
|
return FALSE;
|
|
}
|