10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
|
// I am casting spells even during melee
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
int iResult;
|
||
|
|
||
|
iResult = 1-GetLocalInt(OBJECT_SELF,"DoNotCastMelee");
|
||
|
return iResult;
|
||
|
}
|