mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-14 00:02:07 -04:00
11 lines
157 B
Python
11 lines
157 B
Python
import sys
|
|
|
|
def isAlly(ally):
|
|
if ally == 'narmle':
|
|
return 1
|
|
return 0
|
|
|
|
def isEnemy(enemy):
|
|
if enemy == 'garyn' or enemy == 'cobral':
|
|
return 1
|
|
return 0 |