Level Cap in COP Areas
Posted: Thu Jan 31, 2013 6:29 pm
I navigated to C:\dsp\scripts\zones\Promyvion-Dem. I opened the file called "Zones." It had a section that said:
-----------------------------------
-- onZoneIn
-----------------------------------
function onZoneIn(player,prevZone)
cs = -1;
if ((player:getXPos() == 0) and (player:getYPos() == 0) and (player:getZPos() == 0)) then
player:setPos(20,-2.1,63.031,192);
end
-- ZONE LEVEL RESTRICTION
player:addStatusEffect(EFFECT_LEVEL_RESTRICTION,30,0,0);
return cs;
end;
The part that interests me is the "EFFECT_LEVEL_RESTRICTION." As I understood it, SquareEnix removed the level caps from the COP areas. Does Dark Star still have level caps in the COP areas??? Because it lists 30 in the text file, as you can see.
-----------------------------------
-- onZoneIn
-----------------------------------
function onZoneIn(player,prevZone)
cs = -1;
if ((player:getXPos() == 0) and (player:getYPos() == 0) and (player:getZPos() == 0)) then
player:setPos(20,-2.1,63.031,192);
end
-- ZONE LEVEL RESTRICTION
player:addStatusEffect(EFFECT_LEVEL_RESTRICTION,30,0,0);
return cs;
end;
The part that interests me is the "EFFECT_LEVEL_RESTRICTION." As I understood it, SquareEnix removed the level caps from the COP areas. Does Dark Star still have level caps in the COP areas??? Because it lists 30 in the text file, as you can see.