#!/usr/bin/python # -*- coding: GBK -*- # ##@package # # @todo: ¿ç·þ # # @author: Alee # @date 2018-12-14 ÏÂÎç03:45:18 # @version 1.0 # # @note: # #--------------------------------------------------------------------- import GameWorld #--------------------------------------------------------------------- #Âß¼­ÊµÏÖ ## GMÃüÁîÖ´ÐÐÈë¿Ú # @param curPlayer µ±Ç°Íæ¼Ò # @param msgList ²ÎÊýÁбí # @return None # @remarks º¯ÊýÏêϸ˵Ã÷. def OnExec(curPlayer, msgList): if not msgList: GameWorld.DebugAnswer(curPlayer, "¿ç·þµØÍ¼ID Ïß· ×ø±êX ×ø±êY") return if len(msgList) != 4: return mapID = msgList[0] dataMapID = msgList[0] copyMapID = msgList[1] posX = msgList[2] posY = msgList[3] curPlayer.SendMergeRegisterPlayer(mapID, dataMapID, copyMapID, posX, posY) curPlayer.SetExAttr5(1) return