Ejemplo n.º 1
0
def onPlayerConnect(player):

	defaultUnlocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
	host.pers_plrSetUnlocks(player.index, defaultUnlocks, defaultUnlocks)

	if not player.isAIPlayer():
		id = player.index
		reconnect = id in sessionPlayerUnlockMap
		
		# always get new unlocks on reconnect/map restart/map change etc
		if reconnect:
			del sessionPlayerUnlockMap[id]
			
		newUnlockSet = UnlockSet()

		newUnlockSet.unlockLevel = {}
		for i in range(0, NUM_KIT_TYPES):
			newUnlockSet.unlockLevel[i] = 0

		sessionPlayerUnlockMap[id] = newUnlockSet
		
		player.unlocks = sessionPlayerUnlockMap[id]

		if bf2.serverSettings.getUseGlobalUnlocks():
			if player.getProfileId() > 2000:		
				success = host.pers_plrRequestUnlocks(player.index, 1)
				if not success:
					if g_debug: print "Failed requesting unlocks"
			else:
				if g_debug: print "Player %d had no profile id, can't request unlocks" % player.index
				
		if g_debug: print "Added player %d to unlock checking" % (player.index)
Ejemplo n.º 2
0
def onPlayerConnect(player):

	if not player.isAIPlayer():
		#if bf2.serverSettings.getUseGlobalUnlocks():
		if player.getProfileId() > 2000:		
			success = host.pers_plrRequestUnlocks(player.index, 1)
			if not success:
				if g_debug: print "unlocks.py[27]: Failed requesting unlocks"
		else:
			if g_debug: print "unlocks.py[29]: Player %d had no profile id, can't request unlocks" % player.index
		if g_debug: print "unlocks.py[30]: Added player %d to unlock checking" % (player.index)
Ejemplo n.º 3
0
def onPlayerConnect(player):

    if not player.isAIPlayer():
        #if bf2.serverSettings.getUseGlobalUnlocks():
        if player.getProfileId() > 2000:
            success = host.pers_plrRequestUnlocks(player.index, 1)
            if not success:
                if g_debug: print "unlocks.py[27]: Failed requesting unlocks"
        else:
            if g_debug:
                print "unlocks.py[29]: Player %d had no profile id, can't request unlocks" % player.index
        if g_debug:
            print "unlocks.py[30]: Added player %d to unlock checking" % (
                player.index)
Ejemplo n.º 4
0
def onPlayerConnect(player):

    defaultUnlocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
    host.pers_plrSetUnlocks(player.index, defaultUnlocks, defaultUnlocks)

    if g_debug: print "Unlock module: onPlayerConnect"
    if not player.isAIPlayer():
        id = player.index
        reconnect = id in sessionPlayerUnlockMap

        # always get new unlocks on reconnect/map restart/map change etc
        if reconnect:
            del sessionPlayerUnlockMap[id]

        newUnlockSet = UnlockSet()

        newUnlockSet.unlockLevel = {}
        for i in range(0, NUM_KIT_TYPES):
            newUnlockSet.unlockLevel[i] = 0

        sessionPlayerUnlockMap[id] = newUnlockSet
        player.unlocks = sessionPlayerUnlockMap[id]

        # Added by Chump - for bf2statistics stats (plus de-indenting)
        #if bf2.serverSettings.getUseGlobalUnlocks():
        if player.getProfileId() > 2000:
            # Added by ArmEagle needed to prevent servercrash on linux on offline account connect
            #    but host.pmgr_p_set logically raises an exception when called on an online account
            if host.pmgr_p_get("profileid", player.index) == 0:
                host.pmgr_p_set("profileid", player.index,
                                player.getProfileId())

            success = host.pers_plrRequestUnlocks(player.index, 1)
            if not success:
                if g_debug: print "Requesting unlocks: Failed"
            else:
                if g_debug: print "Requesting unlocks: Success"

        else:
            if g_debug:
                print "Player %d had no profile id, can't request unlocks" % player.index

        if g_debug: print "Added player %d to unlock checking" % (player.index)
Ejemplo n.º 5
0
def onPlayerConnect(player):

	defaultUnlocks = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
	host.pers_plrSetUnlocks(player.index, defaultUnlocks, defaultUnlocks)

	if g_debug: print "Unlock module: onPlayerConnect"
	if not player.isAIPlayer():
		id = player.index
		reconnect = id in sessionPlayerUnlockMap
		
		# always get new unlocks on reconnect/map restart/map change etc
		if reconnect:
			del sessionPlayerUnlockMap[id]
			
		newUnlockSet = UnlockSet()

		newUnlockSet.unlockLevel = {}
		for i in range(0, NUM_KIT_TYPES):
			newUnlockSet.unlockLevel[i] = 0

		sessionPlayerUnlockMap[id] = newUnlockSet
		player.unlocks = sessionPlayerUnlockMap[id]
		
# Added by Chump - for bf2statistics stats (plus de-indenting)
		#if bf2.serverSettings.getUseGlobalUnlocks():
		if player.getProfileId() > 2000:
			# Added by ArmEagle needed to prevent servercrash on linux on offline account connect
			#    but host.pmgr_p_set logically raises an exception when called on an online account
			if host.pmgr_p_get("profileid", player.index) == 0:
				host.pmgr_p_set("profileid", player.index, player.getProfileId())
			
			success = host.pers_plrRequestUnlocks(player.index, 1)
			if not success:
				if g_debug: print "Requesting unlocks: Failed"
			else:
				if g_debug: print "Requesting unlocks: Success"
				
		else:
			if g_debug: print "Player %d had no profile id, can't request unlocks" % player.index
				
		if g_debug: print "Added player %d to unlock checking" % (player.index)