You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
861 B
40 lines
861 B
--------------------------------------------------------------------------------
|
|
-- DummyRoutineFunc
|
|
--------------------------------------------------------------------------------
|
|
|
|
function DummyRoutineFunc( )
|
|
cExecCheck "DummyRoutineFunc"
|
|
end
|
|
|
|
--------------------------------------------------------------------------------
|
|
-- PlayerMapLogin
|
|
--------------------------------------------------------------------------------
|
|
function PlayerMapLogin( MapIndex, Handle )
|
|
cExecCheck "PlayerMapLogin"
|
|
|
|
if MapIndex == nil
|
|
then
|
|
DebugLog( "PlayerMapLogin::MapIndex == nil")
|
|
return
|
|
end
|
|
|
|
if Handle == nil
|
|
then
|
|
DebugLog( "PlayerMapLogin::Handle == nil")
|
|
return
|
|
end
|
|
|
|
local Var = InstanceField[ MapIndex ]
|
|
|
|
if Var == nil
|
|
then
|
|
DebugLog( "PlayerMapLogin::Var == nil")
|
|
return
|
|
end
|
|
|
|
-- 첫 플레이어의 맵 로그인 체크
|
|
Var["bPlayerMapLogin"] = true
|
|
|
|
end
|
|
|
|
|
|
|