Initial upload
Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
This commit is contained in:
22
_module/nss/dmw_test_dialog7.nss
Normal file
22
_module/nss/dmw_test_dialog7.nss
Normal file
@@ -0,0 +1,22 @@
|
||||
#include "dmw_inc"
|
||||
//
|
||||
int StartingConditional()
|
||||
{
|
||||
int nMyNum = 7;
|
||||
|
||||
object oMySpeaker = GetLastSpeaker();
|
||||
object oMyTarget = GetLocalObject(oMySpeaker, "dmwandtarget");
|
||||
location lMyLoc = GetLocalLocation(oMySpeaker, "dmwandloc");
|
||||
|
||||
string sMyString = GetLocalString(oMySpeaker, "dmw_dialog" + IntToString(nMyNum));
|
||||
|
||||
if(sMyString == "")
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
else
|
||||
{
|
||||
SetCustomToken(DMW_START_CUSTOM_TOKEN + nMyNum, sMyString);
|
||||
return TRUE;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user