generated from Jaysyn/ModuleTemplate
14 lines
398 B
Plaintext
14 lines
398 B
Plaintext
/////////////////////////////////////
|
|
// Dragon's Edge
|
|
// by Charly Carlos
|
|
/////////////////////////////////////
|
|
// Checks if the sword card has the same number with the shield card.
|
|
/////////////////////////////////////
|
|
int StartingConditional()
|
|
{
|
|
int iResult;
|
|
|
|
iResult = (GetLocalString(OBJECT_SELF, "sSwordNumber") == GetLocalString(OBJECT_SELF, "sShieldNumber"));
|
|
return iResult;
|
|
}
|