• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

skills limit

beliar34

Member
Joined
Feb 28, 2012
Messages
307
Solutions
7
Reaction score
11
How i can Set skills limit i got 255 on my server and i want change to 171 how to set this ? ;)
 
Hello,

Tested and worked on TFS 0.3.6pl1 (8.54)

In data\creaturescripts\scripts create file, for example: skillblock.lua
And paste this to file:

PHP:
function onAdvance(cid, skill, oldLevel, newLevel)
	if skill == SKILL_SWORD then
		if getPlayerSkillLevel(cid, SKILL_SWORD) >= 171 then
				doPlayerSetRate(cid, SKILL_SWORD, 0.0)
		end
	
	elseif skill == SKILL_SWORD then
		if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
				doPlayerSetRate(cid, SKILL_FIST, 0.0)
		end	
	return false
	
	elseif skill == SKILL_AXE then
		if getPlayerSkillLevel(cid, SKILL_AXE) >= 171 then
				doPlayerSetRate(cid, SKILL_AXE, 0.0)
		end	
	return false
	
	elseif skill == SKILL_CLUB then
		if getPlayerSkillLevel(cid, SKILL_CLUB) >= 171 then
				doPlayerSetRate(cid, SKILL_CLUB, 0.0)
		end	
	return false
	
	elseif skill == SKILL_DISTANCE then
		if getPlayerSkillLevel(cid, SKILL_DISTANCE) >= 171 then
				doPlayerSetRate(cid, SKILL_DISTANCE, 0.0)
		end	
	return false
	
	elseif skill == SKILL_SHIELD then
		if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
				doPlayerSetRate(cid, SKILL_FIST, 0.0)
		end	
	return false
	
	elseif skill == SKILL_FISH then
		if getPlayerSkillLevel(cid, SKILL_FISH) >= 171 then
				doPlayerSetRate(cid, SKILL_FISH, 0.0)
		end	
	return false
	
end
end

Then in login.lua add this:

PHP:
	registerCreatureEvent(cid, "BlockSkills")

And in data\creaturescripts in creaturescripts.xml add this:

PHP:
	<event type="advance" name="BlockSkills" event="script" value="skillblock.lua"/>


Thats all, hope I've helped you.
Best regards,
margoh.
 
This should work as well:

LUA:
local t, max = {SKILL_SWORD, SKILL_AXE, SKILL_CLUB, SKILL_SHIELD, SKILL_DISTANCE}, 171
function onAdvance(cid, skill, oldLevel, newLevel)
	if(isInArray(t, skill)) then
		for i = 1, #t do
			if(getPlayerSkillLevel(cid, t[i]) >= max) then
				doPlayerSetRate(cid, t[i], 0)
			end
		end
	end
	return true
end
 
Last edited:
PHP:
<?xml version="1.0" encoding="UTF-8"?>
<creaturescripts>
	<event type="preparedeath" name="crash" event="script" value="crash.lua"/>
    <event type="advance" name="BlockSkills" event="script" value="skillblock.lua"/>  
	<event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> 
      <event type="look" name="fraglook" event="script" value="fraglook.lua"/>
	<event type="login" name="PlayerLogin" event="script" value="login.lua"/>
	<event type="kill" name="Bounty" script="bounty.lua"/>
	<event type="think" name="Effect" event="script" value="efekt.lua"/>  
	<event type="joinchannel" name="GuildMotd" event="script" value="guildmotd.lua"/>
	<event type="receivemail" name="Mail" event="script" value="mail.lua"/>
	<event type="reportbug" name="SaveReportBug" script="reportbug.lua"/>
  	<event type="advance" name="advanced" script="advanced.lua"/>   
	<event type="think" name="Idle" event="script" value="idle.lua"/>
	<event type="think" name="SkullCheck" event="script" value="skullcheck.lua"/>
	<event type="kill" name="ArenaKill" event="script" value="arenakill.lua"/> 
	<event type="kill" name="saga" event="script" value="saga.lua"/>
	<event type="kill" name="saga1" event="script" value="saga2.lua"/>
	<event type="kill" name="saga2" event="script" value="saga3.lua"/>
	<event type="kill" name="saga3" event="script" value="saga4.lua"/>
	<event type="kill" name="saga4" event="script" value="saga5.lua"/>
	<event type="kill" name="MonsterPortal" event="script" value="monster_portal.lua"/>
 	<event type="kill" name="KillingInTheNameOf" event="script" value="killinginthenameof.lua"/>
	<event type="statschange" name="Party" event="script" value="party.lua"/> 
<event type="login" name="AntiMC" event="script" value="antiMc.lua"/>
<event type="login" name="AntiMC2" event="script" value="antiMc2.lua"/>

</creaturescripts>

This is my creaturescripts.xml

PHP:
local config = {
	loginMessage = getConfigValue('loginMessage')
}

function onLogin(cid)
	local loss = getConfigValue('deathLostPercent')
	if(loss ~= nil) then
		doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 1)
	end

	local accountManager = getPlayerAccountManager(cid)
	if(accountManager == MANAGER_NONE) then
		local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
		if(lastLogin > 0) then
			doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
			str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
		else
			str = str .. " Please choose your outfit."
			doPlayerSendOutfitWindow(cid)
		end

		doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
	elseif(accountManager == MANAGER_NAMELOCK) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
	elseif(accountManager == MANAGER_ACCOUNT) then
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.")
	else
		doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.")
	end

	if(not isPlayerGhost(cid)) then
		doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
	end

	registerCreatureEvent(cid, "saga2")
	registerCreatureEvent(cid, "saga3")
	registerCreatureEvent(cid, "saga4")
	registerCreatureEvent(cid, "saga5")
	registerCreatureEvent(cid, "saga1")
	registerCreatureEvent(cid, "Mail")
    	registerCreatureEvent(cid, "BlockSkills")
	registerCreatureEvent(cid, "Effect") 
	registerCreatureEvent(cid, "walka") 
	registerCreatureEvent(cid, "Party") 
	registerCreatureEvent(cid, "GuildMotd")
	registerCreatureEvent(cid, "Bounty")
	registerCreatureEvent(cid, "Idle")
	registerCreatureEvent(cid, "SkullCheck")
	registerCreatureEvent(cid, "ReportBug")
	registerCreatureEvent(cid, "LevelProtection")
	registerCreatureEvent(cid, "saga")
	registerCreatureEvent(cid, "Arena")
	registerCreatureEvent(cid, "ArenaKill")
	registerCreatureEvent(cid, "advanced")
	registerCreatureEvent(cid, "KillingInTheNameOf")

    -- if he did not make full arena 1 he must start from zero
    if getPlayerStorageValue(cid, 42309) < 1 then
        for i = 42300, 42309 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    -- if he did not make full arena 2 he must start from zero
    if getPlayerStorageValue(cid, 42319) < 1 then
        for i = 42310, 42319 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    -- if he did not make full arena 3 he must start from zero
    if getPlayerStorageValue(cid, 42329) < 1 then
        for i = 42320, 42329 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0) -- did not arena level
    end
    setPlayerStorageValue(cid, 42350, 0) -- time to kick 0
    setPlayerStorageValue(cid, 42352, 0) -- is not in arena  
	return true
end

Login.lua


and

skillblock.lua

PHP:
function onAdvance(cid, skill, oldLevel, newLevel)
    if skill == SKILL_SWORD then
        if getPlayerSkillLevel(cid, SKILL_SWORD) >= 171 then
                doPlayerSetRate(cid, SKILL_SWORD, 0.0)
        end
    
    elseif skill == SKILL_SWORD then
        if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
                doPlayerSetRate(cid, SKILL_FIST, 0.0)
        end    
    return false
    
    elseif skill == SKILL_AXE then
        if getPlayerSkillLevel(cid, SKILL_AXE) >= 171 then
                doPlayerSetRate(cid, SKILL_AXE, 0.0)
        end    
    return false
    
    elseif skill == SKILL_CLUB then
        if getPlayerSkillLevel(cid, SKILL_CLUB) >= 171 then
                doPlayerSetRate(cid, SKILL_CLUB, 0.0)
        end    
    return false
    
    elseif skill == SKILL_DISTANCE then
        if getPlayerSkillLevel(cid, SKILL_DISTANCE) >= 171 then
                doPlayerSetRate(cid, SKILL_DISTANCE, 0.0)
        end    
    return false
    
    elseif skill == SKILL_SHIELD then
        if getPlayerSkillLevel(cid, SKILL_FIST) >= 171 then
                doPlayerSetRate(cid, SKILL_FIST, 0.0)
        end    
    return false
    
    elseif skill == SKILL_FISH then
        if getPlayerSkillLevel(cid, SKILL_FISH) >= 171 then
                doPlayerSetRate(cid, SKILL_FISH, 0.0)
        end    
    return false
    
end
end

- - - Updated - - -

and my console :
PHP:
[14/04/2013 22:35:49] The Forgotten Server, version 0.3.5 (Crying Damson)
[14/04/2013 22:35:49] Compiled with GNU C++ version 3.4.5 (mingw special) at Mar 31 2013, 20:25:05.
[14/04/2013 22:35:49] A server developed by Elf, slawkens, Talaturen, KaczooH, Lithium, Kiper, Kornholijo.
[14/04/2013 22:35:49] Visit our forum for updates, support and resources: http://otland.net.

[14/04/2013 22:35:49] >> Loading config (config.lua)
[14/04/2013 22:35:49] > Using plaintext passwords
[14/04/2013 22:35:49] >> Checking software version... outdated, please consider updating!
[14/04/2013 22:35:50] > Current version information - version: 0.3.5, patch: 1, build: 2576, timestamp: 1249584126.
[14/04/2013 22:35:50] > Latest version information - version: 0.3.6, patch: 0, build: 3293, timestamp: 1260652199.
[14/04/2013 22:35:50] >> Fetching blacklist
[14/04/2013 22:35:50] >> Loading RSA key
[14/04/2013 22:35:50] >> Starting SQL connection

[14/04/2013 22:35:50] > WARNING: max_allowed_packet might be set too low for binary map storage.
[14/04/2013 22:35:50] Use the following query to raise max_allow_packet: SET GLOBAL max_allowed_packet = 16776192;
[14/04/2013 22:35:50] >> Running Database Manager
[14/04/2013 22:35:50] > Optimizing table: accounts... [success]
[14/04/2013 22:35:50] > Optimizing table: bans... [success]
[14/04/2013 22:35:50] > Optimizing table: environment_killers... [success]
[14/04/2013 22:35:50] > Optimizing table: forums... [success]
[14/04/2013 22:35:50] > Optimizing table: global_storage... [success]
[14/04/2013 22:35:50] > Optimizing table: guild_invites... [success]
[14/04/2013 22:35:50] > Optimizing table: guild_ranks... [success]
[14/04/2013 22:35:50] > Optimizing table: guilds... [success]
[14/04/2013 22:35:50] > Optimizing table: house_auctions... [success]
[14/04/2013 22:35:50] > Optimizing table: house_data... [success]
[14/04/2013 22:35:50] > Optimizing table: house_lists... [success]
[14/04/2013 22:35:50] > Optimizing table: houses... [success]
[14/04/2013 22:35:50] > Optimizing table: killers... [success]
[14/04/2013 22:35:51] > Optimizing table: player_deaths... [success]
[14/04/2013 22:35:51] > Optimizing table: player_depotitems... [success]
[14/04/2013 22:35:51] > Optimizing table: player_items... [success]
[14/04/2013 22:35:51] > Optimizing table: player_killers... [success]
[14/04/2013 22:35:51] > Optimizing table: player_namelocks... [success]
[14/04/2013 22:35:51] > Optimizing table: player_skills... [success]
[14/04/2013 22:35:51] > Optimizing table: player_spells... [success]
[14/04/2013 22:35:51] > Optimizing table: player_storage... [success]
[14/04/2013 22:35:51] > Optimizing table: player_viplist... [success]
[14/04/2013 22:35:51] > Optimizing table: players... [success]
[14/04/2013 22:35:51] > Optimizing table: posts... [success]
[14/04/2013 22:35:51] > Optimizing table: server_config... [success]
[14/04/2013 22:35:51] > Optimizing table: server_motd... [success]
[14/04/2013 22:35:51] > Optimizing table: server_record... [success]
[14/04/2013 22:35:51] > Optimizing table: server_reports... [success]
[14/04/2013 22:35:51] > Optimizing table: threads... [success]
[14/04/2013 22:35:51] > Optimizing table: tile_items... [success]
[14/04/2013 22:35:51] > Optimizing table: tiles... [success]
[14/04/2013 22:35:51] > Optimizing table: z_changelog... [success]
[14/04/2013 22:35:51] >> Loading items
[14/04/2013 22:35:51] [Warning - Items::loadFromXml] Unknown slotType one-handed
[14/04/2013 22:35:51] [Warning - Items::loadFromXml] Unknown type Ice prison
[14/04/2013 22:35:51] >> Loading groups
[14/04/2013 22:35:51] >> Loading vocations
[14/04/2013 22:35:51] >> Loading script systems
[14/04/2013 22:35:51] [Warning - Weapons::registerEvent] Duplicate registered item with id: 2392

[14/04/2013 22:35:52] Lua Script Error: [Spell Interface] 
[14/04/2013 22:35:52] data/spells/scripts/attack/Cero Matarella.lua

[14/04/2013 22:35:52] luaSetCombatFormula(). Combat not found
[14/04/2013 22:35:52] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/demonOak.lua)
[14/04/2013 22:35:52] data/actions/scripts/demonOak.lua:105: 'end' expected (to close 'function' at line 1) near '<eof>'
[14/04/2013 22:35:52] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/demonOakChests.lua)
[14/04/2013 22:35:52] cannot open data/actions/scripts/demonOakChests.lua: No such file or directory
[14/04/2013 22:35:52] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/ciastko.lua)
[14/04/2013 22:35:52] data/actions/scripts/ciastko.lua:44: 'end' expected (to close 'function' at line 1) near '<eof>'
[14/04/2013 22:35:52] [Warning - Event::loadScript] Cannot load script (data/actions/scripts/staminarefuel.lua)
[14/04/2013 22:35:52] cannot open data/actions/scripts/staminarefuel.lua: No such file or directory
[14/04/2013 22:35:52] [Warning - MoveEvents::addEvent] Duplicate move event found: 1786
[14/04/2013 22:35:52] [Warning - MoveEvents::addEvent] Duplicate move event found: 1788
[14/04/2013 22:35:52] [Warning - MoveEvents::addEvent] Duplicate move event found: 1790
[14/04/2013 22:35:52] [Warning - MoveEvents::addEvent] Duplicate move event found: 1792
[14/04/2013 22:35:52] [Warning - Event::loadScript] Cannot load script (data/creaturescripts/scripts/antiMc2.lua)
[14/04/2013 22:35:52] cannot open data/creaturescripts/scripts/antiMc2.lua: No such file or directory
[14/04/2013 22:35:52] >> Loading chat channels
[14/04/2013 22:35:52] >> Loading outfits
[14/04/2013 22:35:52] >> Loading experience stages
[14/04/2013 22:35:52] >> Loading monsters
[14/04/2013 22:35:52] [Warning - Monsters::loadMonster] Cannot load monster (Sniper) file (data/monster/Sniper.xml).
[14/04/2013 22:35:52] Info: failed to load external entity "data/monster/Sniper.xml"


[14/04/2013 22:35:52] [Warning - Monsters::loadMonster] Cannot load monster (Rukongai Bandit) file (data/monster/Rukongai Bandit.xml).
[14/04/2013 22:35:52] Info: failed to load external entity "data/monster/Rukongai Bandit.xml"


[14/04/2013 22:35:52] [Warning - Monsters::loadMonster] Cannot load monster (Captain Shinigami) file (data/monster/Captain Shinigami.xml).
[14/04/2013 22:35:52] Info: failed to load external entity "data/monster/Captain Shinigami.xml"


[14/04/2013 22:35:52] [Warning - Monsters::loadMonster] Cannot load monster (Captain Hollow Shinigami) file (data/monster/Captain Hollow Shinigami.xml).
[14/04/2013 22:35:52] Info: failed to load external entity "data/monster/Captain Hollow Shinigami.xml"


[14/04/2013 22:35:52] [Warning - Monsters::deserializeSpell] Hollow Shinigami - Unknown shootEffect: Mortarea
[14/04/2013 22:35:52] [Warning - Monsters::deserializeSpell] Vasto Lorde - Unknown shootEffect: mortarea
[14/04/2013 22:35:52] [Warning - Monsters::loadMonster] Cannot load monster (Noob) file (data/monster/Noob.xml).
[14/04/2013 22:35:52] Line: 41, Info: Extra content at the end of the document


[14/04/2013 22:35:52] >> Loading mods...
[14/04/2013 22:35:52] Loading buypremium_command.xml... done, but disabled.
[14/04/2013 22:35:52] Loading changender_command.xml... done, but disabled.
[14/04/2013 22:35:52] Loading cleanhouse.xml... done, but disabled.
[14/04/2013 22:35:52] Loading custommonsters.xml... done.
[14/04/2013 22:35:52] Loading customspells.xml...[Warning - Spells::registerEvent] Duplicate registered rune with id: 2270
[14/04/2013 22:35:52] [Warning - Spells::registerEvent] Duplicate registered rune with id: 2272
[14/04/2013 22:35:52]  done.
[14/04/2013 22:35:52] Loading firstitems.xml... done.
[14/04/2013 22:35:52] Loading guildWarSystem.xml... done.
[14/04/2013 22:35:52] Loading highscorebook.xml... done.
[14/04/2013 22:35:52] > 8 mods were loaded.
[14/04/2013 22:35:52] >> Loading map and spawns...
[14/04/2013 22:35:52] > Map size: 2048x2048.
[14/04/2013 22:35:52] > Map descriptions: 
[14/04/2013 22:35:52] Saved with Remere's Map Editor 2.2
[14/04/2013 22:35:52] SimOne MapEditor 0.5.5
[14/04/2013 22:35:54] [Warning - IOMap::loadMap] Movable item in house: 313, item type: 2604, pos 1291/1064/7
[14/04/2013 22:35:54] [Warning - IOMap::loadMap] Movable item in house: 313, item type: 2604, pos 1291/1071/7
[14/04/2013 22:35:54] [Warning - IOMap::loadMap] Movable item in house: 313, item type: 2604, pos 1305/1064/7
[14/04/2013 22:35:54] [Warning - IOMap::loadMap] Movable item in house: 313, item type: 2604, pos 1305/1071/7
[14/04/2013 22:35:54] Duplicate uniqueId 30002
[14/04/2013 22:35:55] Duplicate uniqueId 30338
[14/04/2013 22:35:55] Duplicate uniqueId 30339
[14/04/2013 22:35:55] Duplicate uniqueId 30336
[14/04/2013 22:35:55] Duplicate uniqueId 30337
[14/04/2013 22:35:55] Duplicate uniqueId 30015
[14/04/2013 22:35:55] > Map loading time: 2.514 seconds.
[14/04/2013 22:35:55] [Spawn::addMonster] Cannot find "Hollow Arcanist"
[14/04/2013 22:35:55] [Spawn::addMonster] Cannot find "Hollow Arcanist"
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - Npc::loadFromXml] Cannot load npc file (data/npc/Hueco mundo Trader.xml).
[14/04/2013 22:35:55] Info: failed to load external entity "data/npc/Hueco mundo Trader.xml"


[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Warning - NpcScript::NpcScript] Cannot load script: data/npc/scripts/cityguard.lua
[14/04/2013 22:35:55] cannot open data/npc/scripts/cityguard.lua: No such file or directory
[14/04/2013 22:35:55] [Spawn::addMonster] Cannot find "Hollow Arcanist"
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Bandit ( 01145 / 01000 / 008 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Bandit ( 01145 / 01000 / 008 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Bandit ( 01145 / 01000 / 008 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Capitan Hollow Shinigami ( 01018 / 00978 / 009 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Capitan Hollow Shinigami ( 01018 / 00978 / 009 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Inoue Brother ( 01025 / 01011 / 009 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Samurai ( 01037 / 01014 / 009 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] [Warning - Spawns::loadFromXml] Vasto Lorde ( 01299 / 01228 / 010 ) spawntime cannot be less than 1 seconds.
[14/04/2013 22:35:55] > Data parsing time: 0.667 seconds.
[14/04/2013 22:35:55] > Houses synchronization time: 0.113 seconds.
[14/04/2013 22:35:55] > Content unserialization time: 0.009 seconds.
[14/04/2013 22:35:55] >> Checking world type... PvP
[14/04/2013 22:35:56] >> Initializing game state modules and registering services...
[14/04/2013 22:35:56] [Error - Raid::loadFromXml] Could not load raid file (data/raids/hollow.xml).
[14/04/2013 22:35:56] Info: failed to load external entity "data/raids/hollow.xml"


[14/04/2013 22:35:56] [Fatal - Raids::parseRaidNode] failed to load raid Example
[14/04/2013 22:35:56] [Error - Raid::loadFromXml] Could not load raid file (data/raids/hollos.xml).
[14/04/2013 22:35:56] Info: failed to load external entity "data/raids/hollos.xml"


[14/04/2013 22:35:56] [Fatal - Raids::parseRaidNode] failed to load raid Example4
[14/04/2013 22:35:56] > Global address: bleachwo.zapto.org
[14/04/2013 22:35:56] > Local ports: 7171	9897	
[14/04/2013 22:35:56] >> All modules were loaded, server is starting up...
[14/04/2013 22:35:56] >> Bleach Warriors Onlne ! server Online!

[14/04/2013 22:35:56] Beliar has logged in.
[14/04/2013 22:35:57] > Saving server...
[14/04/2013 22:35:57] > SAVE: Complete in 0.168 seconds using binary house storage.
[14/04/2013 22:36:05] > Saving server...
[14/04/2013 22:36:06] > SAVE: Complete in 0.143 seconds using binary house storage.
[14/04/2013 22:37:16] Test Skil has logged in.
[14/04/2013 22:42:01] Test Skil has logged out.
[14/04/2013 22:42:27] Test Skil has logged in.
[14/04/2013 22:44:13] > Broadcasted message: "Forum : http://bleachwo.forumpl.net/".
[14/04/2013 22:44:13] > Broadcasted message: "vt 2.1.4 : s1.debx.pl//5101)".
 

Similar threads

Back
Top