18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
#include "utl_i_sqluuid"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
//:: Declare major variables
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
string sRezref;
|
||
|
|
||
|
sRezref = GetResRef(GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, oPC));
|
||
|
|
||
|
if (!(sRezref == "en3_qrapier"))
|
||
|
return FALSE;
|
||
|
|
||
|
return TRUE;
|
||
|
}
|