| #!/usr/bin/python  | 
| # -*- coding: GBK -*-  | 
| #-------------------------------------------------------------------------------  | 
| #  | 
| ##@package GM.Commands.ClearChangeLineID  | 
| #  | 
| # @todo:ÖØÖÃÇÐÏßÏà¹Ø  | 
| # @author hxp  | 
| # @date 2018-05-05  | 
| # @version 1.0  | 
| #  | 
| # ÏêϸÃèÊö: ÖØÖÃÇÐÏßÏà¹Ø  | 
| #  | 
| #-------------------------------------------------------------------------------  | 
| #"""Version = 2018-05-05 10:30"""  | 
| #-------------------------------------------------------------------------------  | 
| import ChConfig  | 
| import PlayerControl  | 
| import GameWorld  | 
|   | 
| ## GMÃüÁîÖ´ÐÐÈë¿Ú  | 
| #  @param curPlayer µ±Ç°Íæ¼Ò  | 
| #  @param paramList ²ÎÊýÁбí [NPCID]  | 
| #  @return None  | 
| #  @remarks º¯ÊýÏêϸ˵Ã÷.  | 
| def OnExec(curPlayer, paramList):  | 
|     PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_Player_Dict_PlayChangeLineID, 0)  | 
|     PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_Player_Dict_FuncChangeLineID, 0)  | 
|     PlayerControl.NomalDictSetProperty(curPlayer, ChConfig.Def_Player_Dict_HighChangeLineID, 0)  | 
|     GameWorld.DebugAnswer(curPlayer, "ÖØÖÃÇÐÏßOK!")  | 
|     return  | 
|           | 
|      |