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