15 lines
289 B
Plaintext
15 lines
289 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
string sTag = "hlslang_2";
|
||
|
|
||
|
// Make sure the PC speaker has these items in their inventory
|
||
|
if(!HasItem(GetPCSpeaker(), sTag))
|
||
|
return FALSE;
|
||
|
|
||
|
SetLocalString(GetPCSpeaker(), "iDMFIremove", sTag);
|
||
|
return TRUE;
|
||
|
}
|
||
|
|