diff options
Diffstat (limited to 'player.py')
-rw-r--r-- | player.py | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -18,10 +18,15 @@ ######################################################################################## # Player Module (parties, inventory, and player data) -from utils import * -from consts import * +from utils import (stdout, dl_search, allunits, date_from_sql, date_from_now, + now, compress) +from consts import (SQL_DELAY, SQL_SAVE_TIME, MAX_INV_SIZE, AP_REGEN_TIME_F, + Job_Swordsman, Job_Mage, Job_Assassin, Job_Archer, Job_Gunner, SQL_CLEAR, + ERR_LOGIN, MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY, + ERR_BAD, ERR_OFF, ERR_ERR, CLIENTVERSION, UNSELLABLE, DOUBLE_GP, EXP_UP, + ERR_DONE, ERR_OK, MAX_PARTIES, NO_PARTY, SUPEREVOMAT, EVO_MAT) import sql -import time, json, re +import json, re #,time from copy import copy from threading import Timer |