hxp
2019-09-20 67bcc2ab06912fc3d9cf31ceae533da76e50d5ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/python
# -*- coding: GBK -*-
 
##@package GetPlayerDetail
# »ñÈ¡ËùÓÐÍæ¼ÒÏêϸÐÅÏ¢
#
# @author Administrator
# @date 2010-3-31
# @version 1.0
#
# ÐÞ¸Äʱ¼ä ÐÞ¸ÄÈË ÐÞ¸ÄÄÚÈÝ
# VER = "2010-05-14 9:30" zhengyang Ìí¼Ó×¢ÊÍ
#
# Ä£¿éÏêϸ˵
#×÷ÕߣºAdministrator
import LogUI
import Lang
import IPY_GameServer
import GameWorld
 
#
#2008-10-13 ÏÂÎç02:20:21
## Ö´ÐÐÂß¼­
#  @param curPlayer µ±Ç°Íæ¼Ò
#  @param playerList []
#  @return None
#  @remarks º¯ÊýÏêϸ˵Ã÷.
def OnExec(curPlayer,playerList):
    GameWorld.DebugAnswer(curPlayer, '->ÕʺÅ\tÈËÃû\tµÈ¼¶')
    for i in range(0, GameWorld.GetPlayerManager().GetPlayerCount()):
        curTagPlayer = GameWorld.GetPlayerManager().GetPlayerByIndex(i)
        if curTagPlayer.GetPlayerID() == 0:
            continue
        GameWorld.DebugAnswer(curPlayer, '->%s\t%s\t%s'%(
                curTagPlayer.GetAccID(), curTagPlayer.GetName(), curTagPlayer.GetLV()))
        
    GameWorld.DebugAnswer(curPlayer, '->Over')
    return