Ir para conteúdo
  • Cadastre-se

Posts Recomendados

fiz como voce falou, usando assim

local config = {
	minlevel = 100, --- level inical para resetar
	price = 10000, --- preço inicial para resetar
	newlevel = 20, --- level após reset
	priceByReset = 10000, --- preço acrescentado por reset
	percent = 100, ---- porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total)
	maxresets = 20,
	levelbyreset = 100 --- quanto de level vai precisar a mais no próximo reset
}
--- end config

function getResets(uid)
	resets = getPlayerStorageValue(uid, 378378)
	if resets < 0 then
		resets = 0
	end
	return resets
end

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
 
function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink()                  npcHandler:onThink()                  end
 
function creatureSayCallback(cid, type, msg)
	if not npcHandler:isFocused(cid) then
		return false
	end
	local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

	function addReset(cid)
		if(npcHandler:isFocused(cid)) then
			npcHandler:releaseFocus(cid)
		end
		
		talkState[talkUser] = 0
		resets = getResets(cid)
		setPlayerStorageValue(cid, 378378, resets+1) 
		doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
		local hp = getCreatureMaxHealth(cid)
		local resethp = hp*(config.percent/100)
		setCreatureMaxHealth(cid, resethp)
		local differencehp = (hp - resethp)
		doCreatureAddHealth(cid, -differencehp)
		local mana = getCreatureMaxMana(cid)
		local resetmana = mana*(config.percent/100)
		setCreatureMaxMana(cid, resetmana)
		local differencemana = (mana - resetmana)
		doCreatureAddMana(cid, -differencemana)
                doRemoveCreature(cid)		
		local description = resets+1
		db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
		db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0,`cap`= 200 WHERE `players`.`id`= ".. playerid .."")
		return true
	end
	
	local newPrice = config.price + (getResets(cid) * config.priceByReset)
	local newminlevel = config.minlevel + (getResets(cid) * config.levelbyreset)

	if msgcontains(msg, 'poder') then
		if getResets(cid) < config.maxresets then
			selfSay('sim eu desenvolvi uma tecnica que concentra seu poder em sua alma possibilitando o acumulo de mais poder que seu corpo fisico n suportaria. eu te ensinarei isso por '..newPrice..' gp\'s!', cid)
			talkState[talkUser] = 1
		else
			selfSay('eu ja te ensinei tudo que sei, mais um reset poderia destruir seu fragil e instavel corpo mortal!', cid)
		end
		
	elseif(msgcontains(msg, 'yes') and talkState[talkUser] == 1) then
		if getPlayerMoney(cid) < newPrice then
			selfSay('voce precisa de '..newPrice..' gp\'s para que eu possa te treinar!', cid)
		elseif getPlayerLevel(cid) < newminlevel then
			selfSay('Ainda esta cedo para isso.. Voce so podera repetir essa tecnica no nivel '..newminlevel..'!', cid)
		else
			doPlayerRemoveMoney(cid,newPrice)
			playerid = getPlayerGUID(cid)
			addEvent(function()
				if isPlayer(cid) then
					addReset(cid)
                        selfSay('Voce resetou!, pergunte por "resets para saber quantos resets tem!', cid)
				end
			end, 3000)
			local number = getResets(cid)+1
			local msg ="---[Reset: "..number.."]-- voce resetou!  desperte bravo guerreiro, a jornada ainda não terminou..."
			doPlayerPopupFYI(cid, msg) 
			talkState[talkUser] = 0
			npcHandler:releaseFocus(cid)
		end
		talkState[talkUser] = 0
	elseif(msgcontains(msg, 'no')) and isInArray({1}, talkState[talkUser]) == TRUE then
		talkState[talkUser] = 0
		npcHandler:releaseFocus(cid)
		selfSay('Ok.', cid)
	elseif msgcontains(msg, 'resets') then
		selfSay('voce tem um total de '..getResets(cid)..' reset(s).', cid)
		talkState[talkUser] = 0
	end
	return true
end

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

o npc aparece responde, reseta mas não altera o lvl, e da outro erro no console

 

Spoiler

[01/07/2017 21:35:12] [Error - Npc interface] 
[01/07/2017 21:35:12] In a timer event called from: 
[01/07/2017 21:35:12] data/npc/scripts/reseter.lua:onCreatureSay
[01/07/2017 21:35:12] Description: 
[01/07/2017 21:35:12] data/npc/scripts/reseter.lua:57: attempt to call field 'query' (a nil value)
[01/07/2017 21:35:12] stack traceback:
[01/07/2017 21:35:12]     data/npc/scripts/reseter.lua:57: in function 'addReset'
[01/07/2017 21:35:12]     data/npc/scripts/reseter.lua:83: in function <data/npc/scripts/reseter.lua:81>
[01/07/2017 21:35:13] Teste has logged in.

eu ja testei db.Query, db.query e db.executeQuery e nada

Link para o post
Compartilhar em outros sites
  • Respostas 187
  • Created
  • Última resposta

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Fala galera do TK, hoje vim pra trazer pra vocês um npc criado por mim e pelo Nogard numa madrugada aí para solucionar a dúvida de um cara no suporte. Eu dei uma melhorada no script original, tirei um

cara, aquilo que eu te passei era pra vc substituir no seu script;;; ficando assim:   local combat = createCombatObject()setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatPa

talkactions/scripts/rankinreset local storage = 378378 -- storage que fica salvo os resets local itens = {2182, 2190, 2456, 2395} -- itens cujas imagens aparecerao (se nao souber oque eh, nao mexa)

Posted Images

23 hours ago, ecdouradojr said:

fiz como voce falou, usando assim


local config = {
	minlevel = 100, --- level inical para resetar
	price = 10000, --- preço inicial para resetar
	newlevel = 20, --- level após reset
	priceByReset = 10000, --- preço acrescentado por reset
	percent = 100, ---- porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total)
	maxresets = 20,
	levelbyreset = 100 --- quanto de level vai precisar a mais no próximo reset
}
--- end config

function getResets(uid)
	resets = getPlayerStorageValue(uid, 378378)
	if resets < 0 then
		resets = 0
	end
	return resets
end

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
local talkState = {}
 
function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink()                  npcHandler:onThink()                  end
 
function creatureSayCallback(cid, type, msg)
	if not npcHandler:isFocused(cid) then
		return false
	end
	local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

	function addReset(cid)
		if(npcHandler:isFocused(cid)) then
			npcHandler:releaseFocus(cid)
		end
		
		talkState[talkUser] = 0
		resets = getResets(cid)
		setPlayerStorageValue(cid, 378378, resets+1) 
		doTeleportThing(cid, getTownTemplePosition(getPlayerTown(cid)))
		local hp = getCreatureMaxHealth(cid)
		local resethp = hp*(config.percent/100)
		setCreatureMaxHealth(cid, resethp)
		local differencehp = (hp - resethp)
		doCreatureAddHealth(cid, -differencehp)
		local mana = getCreatureMaxMana(cid)
		local resetmana = mana*(config.percent/100)
		setCreatureMaxMana(cid, resetmana)
		local differencemana = (mana - resetmana)
		doCreatureAddMana(cid, -differencemana)
                doRemoveCreature(cid)		
		local description = resets+1
		db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
		db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0,`cap`= 200 WHERE `players`.`id`= ".. playerid .."")
		return true
	end
	
	local newPrice = config.price + (getResets(cid) * config.priceByReset)
	local newminlevel = config.minlevel + (getResets(cid) * config.levelbyreset)

	if msgcontains(msg, 'poder') then
		if getResets(cid) < config.maxresets then
			selfSay('sim eu desenvolvi uma tecnica que concentra seu poder em sua alma possibilitando o acumulo de mais poder que seu corpo fisico n suportaria. eu te ensinarei isso por '..newPrice..' gp\'s!', cid)
			talkState[talkUser] = 1
		else
			selfSay('eu ja te ensinei tudo que sei, mais um reset poderia destruir seu fragil e instavel corpo mortal!', cid)
		end
		
	elseif(msgcontains(msg, 'yes') and talkState[talkUser] == 1) then
		if getPlayerMoney(cid) < newPrice then
			selfSay('voce precisa de '..newPrice..' gp\'s para que eu possa te treinar!', cid)
		elseif getPlayerLevel(cid) < newminlevel then
			selfSay('Ainda esta cedo para isso.. Voce so podera repetir essa tecnica no nivel '..newminlevel..'!', cid)
		else
			doPlayerRemoveMoney(cid,newPrice)
			playerid = getPlayerGUID(cid)
			addEvent(function()
				if isPlayer(cid) then
					addReset(cid)
                        selfSay('Voce resetou!, pergunte por "resets para saber quantos resets tem!', cid)
				end
			end, 3000)
			local number = getResets(cid)+1
			local msg ="---[Reset: "..number.."]-- voce resetou!  desperte bravo guerreiro, a jornada ainda não terminou..."
			doPlayerPopupFYI(cid, msg) 
			talkState[talkUser] = 0
			npcHandler:releaseFocus(cid)
		end
		talkState[talkUser] = 0
	elseif(msgcontains(msg, 'no')) and isInArray({1}, talkState[talkUser]) == TRUE then
		talkState[talkUser] = 0
		npcHandler:releaseFocus(cid)
		selfSay('Ok.', cid)
	elseif msgcontains(msg, 'resets') then
		selfSay('voce tem um total de '..getResets(cid)..' reset(s).', cid)
		talkState[talkUser] = 0
	end
	return true
end

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new())

o npc aparece responde, reseta mas não altera o lvl, e da outro erro no console

 

  Hide contents

[01/07/2017 21:35:12] [Error - Npc interface] 
[01/07/2017 21:35:12] In a timer event called from: 
[01/07/2017 21:35:12] data/npc/scripts/reseter.lua:onCreatureSay
[01/07/2017 21:35:12] Description: 
[01/07/2017 21:35:12] data/npc/scripts/reseter.lua:57: attempt to call field 'query' (a nil value)
[01/07/2017 21:35:12] stack traceback:
[01/07/2017 21:35:12]     data/npc/scripts/reseter.lua:57: in function 'addReset'
[01/07/2017 21:35:12]     data/npc/scripts/reseter.lua:83: in function <data/npc/scripts/reseter.lua:81>
[01/07/2017 21:35:13] Teste has logged in.

eu ja testei db.Query, db.query e db.executeQuery e nada



Executa isso aqui no teu server:

    local seen={}
    function dump(t,i)
        seen[t]=true
        local s={}
        local n=0
        for k in pairs(t) do
            n=n+1 s[n]=k
        end
        table.sort(s)
        for k,v in ipairs(s) do
            print(i,v)
            v=t[v]
            if type(v)=="table" and not seen[v] then
                dump(v,i.."\t")
            end
        end
    end
    dump(_G,"")

pode ser até numa talkaction, só inserir um function onSay() em cima e um return true end no final;

Aí você executa a talkaction referente ao script e me fala o que ele retorna
 

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites

quando executei a talkaction que eu fiz dessa maneira: 

 

criei uma script assim com o nome teste.lua

function onSay(cid, words, param)
local seen={}
    function dump(t,i)
        seen[t]=true
        local s={}
        local n=0
        for k in pairs(t) do
            n=n+1 s[n]=k
        end
        table.sort(s)
        for k,v in ipairs(s) do
            print(i,v)
            v=t[v]
            if type(v)=="table" and not seen[v] then
                dump(v,i.."\t")
            end
        end
    end
    dump(_G,"")

return true

end

e no talkactions.xml eu coloquei assim:

<talkaction words="!teste" event="script" value="teste.lua"/>

entrei no server, falei !teste e o server caiu e o console mandou um texto enorme:

Spoiler

[06/07/2017 23:15:40] Teste has logged in.

[06/07/2017 23:19:25] ACTION_BANFINAL

[06/07/2017 23:19:25] ACTION_BANISHMENT

[06/07/2017 23:19:25] ACTION_BANLOCK

[06/07/2017 23:19:25] ACTION_BANLOCKFINAL

[06/07/2017 23:19:25] ACTION_BANREPORT

[06/07/2017 23:19:25] ACTION_BANREPORTFINAL

[06/07/2017 23:19:25] ACTION_DELETION

[06/07/2017 23:19:25] ACTION_NAMELOCK

[06/07/2017 23:19:25] ACTION_NAMEREPORT

[06/07/2017 23:19:25] ACTION_NOTATION

[06/07/2017 23:19:25] ACTION_PLACEHOLDER

[06/07/2017 23:19:25] ACTION_STATEMENT

[06/07/2017 23:19:25] AUTOID_MONSTERS

[06/07/2017 23:19:25] AUTOID_NPCS

[06/07/2017 23:19:25] AUTOID_PLAYERS

[06/07/2017 23:19:25] BANTYPE_BANISHMENT

[06/07/2017 23:19:25] BANTYPE_DELETION

[06/07/2017 23:19:25] BANTYPE_IP_BANISHMENT

[06/07/2017 23:19:25] BANTYPE_NAMELOCK

[06/07/2017 23:19:25] BANTYPE_NOTATION

[06/07/2017 23:19:25] BAN_ACCOUNT

[06/07/2017 23:19:25] BAN_IP

[06/07/2017 23:19:25] BAN_NONE

[06/07/2017 23:19:25] BAN_NOTATION

[06/07/2017 23:19:25] BAN_PLAYER

[06/07/2017 23:19:25] BAN_STATEMENT

[06/07/2017 23:19:25] CALLBACK_PARAM_LEVELMAGICVALUE

[06/07/2017 23:19:25] CALLBACK_PARAM_SKILLVALUE

[06/07/2017 23:19:25] CALLBACK_PARAM_TARGETCREATURE

[06/07/2017 23:19:25] CALLBACK_PARAM_TARGETTILE

[06/07/2017 23:19:25] CHANNEL_COUNSELOR

[06/07/2017 23:19:25] CHANNEL_DEFAULT

[06/07/2017 23:19:25] CHANNEL_GAMECHAT

[06/07/2017 23:19:25] CHANNEL_GUILD

[06/07/2017 23:19:25] CHANNEL_HELP

[06/07/2017 23:19:25] CHANNEL_PARTY

[06/07/2017 23:19:25] CHANNEL_PRIVATE

[06/07/2017 23:19:25] CHANNEL_RLCHAT

[06/07/2017 23:19:25] CHANNEL_RVR

[06/07/2017 23:19:25] CHANNEL_STAFF

[06/07/2017 23:19:25] CHANNEL_TRADE

[06/07/2017 23:19:25] CHANNEL_TRADEROOK

[06/07/2017 23:19:25] COLOR_BLACK

[06/07/2017 23:19:25] COLOR_BLUE

[06/07/2017 23:19:25] COLOR_BROWN

[06/07/2017 23:19:25] COLOR_DARKBROWN

[06/07/2017 23:19:25] COLOR_DARKORANGE

[06/07/2017 23:19:25] COLOR_DARKPINK

[06/07/2017 23:19:25] COLOR_DARKPURPLE

[06/07/2017 23:19:25] COLOR_DARKRED

[06/07/2017 23:19:25] COLOR_DARKYELLOW

[06/07/2017 23:19:25] COLOR_GREEN

[06/07/2017 23:19:25] COLOR_GREY

[06/07/2017 23:19:25] COLOR_LIGHTBLUE

[06/07/2017 23:19:25] COLOR_LIGHTGREEN

[06/07/2017 23:19:25] COLOR_NONE

[06/07/2017 23:19:25] COLOR_ORANGE

[06/07/2017 23:19:25] COLOR_PINK

[06/07/2017 23:19:25] COLOR_PURPLE

[06/07/2017 23:19:25] COLOR_RED

[06/07/2017 23:19:25] COLOR_TEAL

[06/07/2017 23:19:25] COLOR_WHITE

[06/07/2017 23:19:25] COLOR_YELLOW

[06/07/2017 23:19:25] COMBAT_DEATHDAMAGE

[06/07/2017 23:19:25] COMBAT_DROWNDAMAGE

[06/07/2017 23:19:25] COMBAT_EARTHDAMAGE

[06/07/2017 23:19:26] COMBAT_ENERGYDAMAGE

[06/07/2017 23:19:26] COMBAT_FIREDAMAGE

[06/07/2017 23:19:26] COMBAT_FORMULA_DAMAGE

[06/07/2017 23:19:26] COMBAT_FORMULA_LEVELMAGIC

[06/07/2017 23:19:26] COMBAT_FORMULA_SKILL

[06/07/2017 23:19:26] COMBAT_FORMULA_UNDEFINED

[06/07/2017 23:19:26] COMBAT_HEALING

[06/07/2017 23:19:26] COMBAT_HOLYDAMAGE

[06/07/2017 23:19:26] COMBAT_ICEDAMAGE

[06/07/2017 23:19:26] COMBAT_LIFEDRAIN

[06/07/2017 23:19:26] COMBAT_MANADRAIN

[06/07/2017 23:19:26] COMBAT_NONE

[06/07/2017 23:19:26] COMBAT_PARAM_AGGRESSIVE

[06/07/2017 23:19:26] COMBAT_PARAM_BLOCKARMOR

[06/07/2017 23:19:26] COMBAT_PARAM_BLOCKSHIELD

[06/07/2017 23:19:26] COMBAT_PARAM_CREATEITEM

[06/07/2017 23:19:26] COMBAT_PARAM_DIFFERENTAREADAMAGE

[06/07/2017 23:19:26] COMBAT_PARAM_DISPEL

[06/07/2017 23:19:26] COMBAT_PARAM_DISTANCEEFFECT

[06/07/2017 23:19:26] COMBAT_PARAM_EFFECT

[06/07/2017 23:19:26] COMBAT_PARAM_HITCOLOR

[06/07/2017 23:19:26] COMBAT_PARAM_HITEFFECT

[06/07/2017 23:19:26] COMBAT_PARAM_TARGETCASTERORTOPMOST

[06/07/2017 23:19:26] COMBAT_PARAM_TARGETPLAYERSORSUMMONS

[06/07/2017 23:19:26] COMBAT_PARAM_TYPE

[06/07/2017 23:19:26] COMBAT_PARAM_USECHARGES

[06/07/2017 23:19:26] COMBAT_PHYSICALDAMAGE

[06/07/2017 23:19:26] COMBAT_POISONDAMAGE

[06/07/2017 23:19:26] COMBAT_UNDEFINEDDAMAGE

[06/07/2017 23:19:26] CONDITION_ATTRIBUTES

[06/07/2017 23:19:26] CONDITION_CURSED

[06/07/2017 23:19:26] CONDITION_DAZZLED

[06/07/2017 23:19:26] CONDITION_DROWN

[06/07/2017 23:19:26] CONDITION_DRUNK

[06/07/2017 23:19:26] CONDITION_ENERGY

[06/07/2017 23:19:26] CONDITION_EXHAUST

[06/07/2017 23:19:26] CONDITION_FIRE

[06/07/2017 23:19:26] CONDITION_FOOD

[06/07/2017 23:19:26] CONDITION_FREEZING

[06/07/2017 23:19:26] CONDITION_GAMEMASTER

[06/07/2017 23:19:26] CONDITION_HASTE

[06/07/2017 23:19:26] CONDITION_HUNTING

[06/07/2017 23:19:26] CONDITION_INFIGHT

[06/07/2017 23:19:26] CONDITION_INVISIBLE

[06/07/2017 23:19:26] CONDITION_LIGHT

[06/07/2017 23:19:26] CONDITION_MANASHIELD

[06/07/2017 23:19:26] CONDITION_MUTED

[06/07/2017 23:19:26] CONDITION_NONE

[06/07/2017 23:19:26] CONDITION_OUTFIT

[06/07/2017 23:19:26] CONDITION_PACIFIED

[06/07/2017 23:19:26] CONDITION_PARALYZE

[06/07/2017 23:19:26] CONDITION_PARAM_BUFF

[06/07/2017 23:19:26] CONDITION_PARAM_DELAYED

[06/07/2017 23:19:26] CONDITION_PARAM_FORCEUPDATE

[06/07/2017 23:19:26] CONDITION_PARAM_HEALTHGAIN

[06/07/2017 23:19:26] CONDITION_PARAM_HEALTHTICKS

[06/07/2017 23:19:26] CONDITION_PARAM_LIGHT_COLOR

[06/07/2017 23:19:26] CONDITION_PARAM_LIGHT_LEVEL

[06/07/2017 23:19:26] CONDITION_PARAM_MANAGAIN

[06/07/2017 23:19:26] CONDITION_PARAM_MANATICKS

[06/07/2017 23:19:26] CONDITION_PARAM_MAXVALUE

[06/07/2017 23:19:26] CONDITION_PARAM_MINVALUE

[06/07/2017 23:19:26] CONDITION_PARAM_OUTFIT

[06/07/2017 23:19:26] CONDITION_PARAM_OWNER

[06/07/2017 23:19:26] CONDITION_PARAM_PERIODICDAMAGE

[06/07/2017 23:19:26] CONDITION_PARAM_SKILL_AXE

[06/07/2017 23:19:26] CONDITION_PARAM_SKILL_AXEPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_CLUB

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_CLUBPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_DISTANCE

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_DISTANCEPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_FISHING

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_FISHINGPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_FIST

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_FISTPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_MELEE

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_MELEEPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_SHIELD

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_SHIELDPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_SWORD

[06/07/2017 23:19:27] CONDITION_PARAM_SKILL_SWORDPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SOULGAIN

[06/07/2017 23:19:27] CONDITION_PARAM_SOULTICKS

[06/07/2017 23:19:27] CONDITION_PARAM_SPEED

[06/07/2017 23:19:27] CONDITION_PARAM_STARTVALUE

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAGICLEVEL

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAGICLEVELPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAGICPOINTS

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAGICPOINTSPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXHEALTH

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXHEALTHPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXHITPOINTS

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXHITPOINTSPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXMANA

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXMANAPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXMANAPOINTS

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_MAXMANAPOINTSPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_SOUL

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_SOULPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_SOULPOINTS

[06/07/2017 23:19:27] CONDITION_PARAM_STAT_SOULPOINTSPERCENT

[06/07/2017 23:19:27] CONDITION_PARAM_SUBID

[06/07/2017 23:19:27] CONDITION_PARAM_TICKINTERVAL

[06/07/2017 23:19:27] CONDITION_PARAM_TICKS

[06/07/2017 23:19:27] CONDITION_PHYSICAL

[06/07/2017 23:19:27] CONDITION_POISON

[06/07/2017 23:19:27] CONDITION_REGENERATION

[06/07/2017 23:19:27] CONDITION_SOUL

[06/07/2017 23:19:27] CONFIG

[06/07/2017 23:19:27] CONST_ANI_ARROW

[06/07/2017 23:19:27] CONST_ANI_BOLT

[06/07/2017 23:19:27] CONST_ANI_BURSTARROW

[06/07/2017 23:19:27] CONST_ANI_CAKE

[06/07/2017 23:19:27] CONST_ANI_DEATH

[06/07/2017 23:19:27] CONST_ANI_EARTH

[06/07/2017 23:19:27] CONST_ANI_EARTHARROW

[06/07/2017 23:19:27] CONST_ANI_ENCHANTEDSPEAR

[06/07/2017 23:19:27] CONST_ANI_ENERGY

[06/07/2017 23:19:27] CONST_ANI_ENERGYBALL

[06/07/2017 23:19:27] CONST_ANI_ETHEREALSPEAR

[06/07/2017 23:19:27] CONST_ANI_EXPLOSION

[06/07/2017 23:19:28] CONST_ANI_FIRE

[06/07/2017 23:19:28] CONST_ANI_FLAMMINGARROW

[06/07/2017 23:19:28] CONST_ANI_FLASHARROW

[06/07/2017 23:19:28] CONST_ANI_GREENSTAR

[06/07/2017 23:19:28] CONST_ANI_HOLY

[06/07/2017 23:19:28] CONST_ANI_HUNTINGSPEAR

[06/07/2017 23:19:28] CONST_ANI_ICE

[06/07/2017 23:19:28] CONST_ANI_INFERNALBOLT

[06/07/2017 23:19:28] CONST_ANI_LARGEROCK

[06/07/2017 23:19:28] CONST_ANI_LAST

[06/07/2017 23:19:28] CONST_ANI_NONE

[06/07/2017 23:19:28] CONST_ANI_ONYXARROW

[06/07/2017 23:19:28] CONST_ANI_PIERCINGBOLT

[06/07/2017 23:19:28] CONST_ANI_POISON

[06/07/2017 23:19:28] CONST_ANI_POISONARROW

[06/07/2017 23:19:28] CONST_ANI_POWERBOLT

[06/07/2017 23:19:28] CONST_ANI_REDSTAR

[06/07/2017 23:19:28] CONST_ANI_ROYALSPEAR

[06/07/2017 23:19:28] CONST_ANI_SHIVERARROW

[06/07/2017 23:19:28] CONST_ANI_SMALLEARTH

[06/07/2017 23:19:28] CONST_ANI_SMALLHOLY

[06/07/2017 23:19:28] CONST_ANI_SMALLICE

[06/07/2017 23:19:28] CONST_ANI_SMALLSTONE

[06/07/2017 23:19:28] CONST_ANI_SNIPERARROW

[06/07/2017 23:19:28] CONST_ANI_SNOWBALL

[06/07/2017 23:19:28] CONST_ANI_SPEAR

[06/07/2017 23:19:28] CONST_ANI_SUDDENDEATH

[06/07/2017 23:19:28] CONST_ANI_THROWINGKNIFE

[06/07/2017 23:19:28] CONST_ANI_THROWINGSTAR

[06/07/2017 23:19:28] CONST_ANI_WEAPONTYPE

[06/07/2017 23:19:28] CONST_ANI_WHIRLWINDAXE

[06/07/2017 23:19:28] CONST_ANI_WHIRLWINDCLUB

[06/07/2017 23:19:28] CONST_ANI_WHIRLWINDSWORD

[06/07/2017 23:19:28] CONST_ME_ASSASSIN

[06/07/2017 23:19:28] CONST_ME_BATS

[06/07/2017 23:19:28] CONST_ME_BIGCLOUDS

[06/07/2017 23:19:28] CONST_ME_BIGPLANTS

[06/07/2017 23:19:28] CONST_ME_BLOCKHIT

[06/07/2017 23:19:28] CONST_ME_BLOODYSTEPS

[06/07/2017 23:19:28] CONST_ME_BUBBLES

[06/07/2017 23:19:28] CONST_ME_CAKE

[06/07/2017 23:19:28] CONST_ME_CARNIPHILA

[06/07/2017 23:19:28] CONST_ME_CRAPS

[06/07/2017 23:19:28] CONST_ME_DRAWBLOOD

[06/07/2017 23:19:28] CONST_ME_ENERGYAREA

[06/07/2017 23:19:29] CONST_ME_ENERGYHIT

[06/07/2017 23:19:29] CONST_ME_EXPLOSIONAREA

[06/07/2017 23:19:29] CONST_ME_EXPLOSIONHIT

[06/07/2017 23:19:29] CONST_ME_FIREAREA

[06/07/2017 23:19:29] CONST_ME_FIREATTACK

[06/07/2017 23:19:29] CONST_ME_FIREWORK_BLUE

[06/07/2017 23:19:29] CONST_ME_FIREWORK_RED

[06/07/2017 23:19:29] CONST_ME_FIREWORK_YELLOW

[06/07/2017 23:19:29] CONST_ME_GIANTICE

[06/07/2017 23:19:29] CONST_ME_GIFT_WRAPS

[06/07/2017 23:19:29] CONST_ME_GREEN_RINGS

[06/07/2017 23:19:29] CONST_ME_GROUNDSHAKER

[06/07/2017 23:19:29] CONST_ME_HEARTS

[06/07/2017 23:19:29] CONST_ME_HITAREA

[06/07/2017 23:19:29] CONST_ME_HITBYFIRE

[06/07/2017 23:19:29] CONST_ME_HITBYPOISON

[06/07/2017 23:19:29] CONST_ME_HOLYAREA

[06/07/2017 23:19:29] CONST_ME_HOLYDAMAGE

[06/07/2017 23:19:29] CONST_ME_ICEAREA

[06/07/2017 23:19:29] CONST_ME_ICEATTACK

[06/07/2017 23:19:29] CONST_ME_ICETORNADO

[06/07/2017 23:19:29] CONST_ME_INSECTS

[06/07/2017 23:19:29] CONST_ME_LAST

[06/07/2017 23:19:29] CONST_ME_LOSEENERGY

[06/07/2017 23:19:29] CONST_ME_MAGIC_BLUE

[06/07/2017 23:19:29] CONST_ME_MAGIC_GREEN

[06/07/2017 23:19:29] CONST_ME_MAGIC_RED

[06/07/2017 23:19:29] CONST_ME_MIRRORHORIZONTAL

[06/07/2017 23:19:29] CONST_ME_MIRRORVERTICAL

[06/07/2017 23:19:29] CONST_ME_MORTAREA

[06/07/2017 23:19:29] CONST_ME_NONE

[06/07/2017 23:19:29] CONST_ME_PLANTATTACK

[06/07/2017 23:19:29] CONST_ME_POFF

[06/07/2017 23:19:29] CONST_ME_POISONAREA

[06/07/2017 23:19:29] CONST_ME_PURPLEENERGY

[06/07/2017 23:19:29] CONST_ME_SKULLHORIZONTAL

[06/07/2017 23:19:29] CONST_ME_SKULLVERTICAL

[06/07/2017 23:19:29] CONST_ME_SLEEP

[06/07/2017 23:19:30] CONST_ME_SMALLCLOUDS

[06/07/2017 23:19:30] CONST_ME_SMALLPLANTS

[06/07/2017 23:19:30] CONST_ME_SMOKE

[06/07/2017 23:19:30] CONST_ME_SOUND_BLUE

[06/07/2017 23:19:30] CONST_ME_SOUND_GREEN

[06/07/2017 23:19:30] CONST_ME_SOUND_PURPLE

[06/07/2017 23:19:30] CONST_ME_SOUND_RED

[06/07/2017 23:19:30] CONST_ME_SOUND_WHITE

[06/07/2017 23:19:30] CONST_ME_SOUND_YELLOW

[06/07/2017 23:19:30] CONST_ME_STEPSHORIZONTAL

[06/07/2017 23:19:30] CONST_ME_STEPSVERTICAL

[06/07/2017 23:19:30] CONST_ME_STONES

[06/07/2017 23:19:30] CONST_ME_STUN

[06/07/2017 23:19:30] CONST_ME_TELEPORT

[06/07/2017 23:19:30] CONST_ME_TUTORIALARROW

[06/07/2017 23:19:30] CONST_ME_TUTORIALSQUARE

[06/07/2017 23:19:30] CONST_ME_WATERCREATURE

[06/07/2017 23:19:30] CONST_ME_WATERSPLASH

[06/07/2017 23:19:30] CONST_ME_YALAHARIGHOST

[06/07/2017 23:19:30] CONST_ME_YELLOWENERGY

[06/07/2017 23:19:30] CONST_ME_YELLOW_RINGS

[06/07/2017 23:19:30] CONST_PROP_BLOCKINGANDNOTMOVEABLE

[06/07/2017 23:19:30] CONST_PROP_BLOCKPATHFIND

[06/07/2017 23:19:30] CONST_PROP_BLOCKPROJECTILE

[06/07/2017 23:19:30] CONST_PROP_BLOCKSOLID

[06/07/2017 23:19:30] CONST_PROP_HASHEIGHT

[06/07/2017 23:19:30] CONST_PROP_ISHORIZONTAL

[06/07/2017 23:19:30] CONST_PROP_ISVERTICAL

[06/07/2017 23:19:30] CONST_PROP_MOVEABLE

[06/07/2017 23:19:30] CONST_PROP_SUPPORTHANGABLE

[06/07/2017 23:19:30] CONST_SLOT_AMMO

[06/07/2017 23:19:30] CONST_SLOT_ARMOR

[06/07/2017 23:19:30] CONST_SLOT_BACKPACK

[06/07/2017 23:19:30] CONST_SLOT_FEET

[06/07/2017 23:19:31] CONST_SLOT_FIRST

[06/07/2017 23:19:31] CONST_SLOT_HEAD

[06/07/2017 23:19:31] CONST_SLOT_LAST

[06/07/2017 23:19:31] CONST_SLOT_LEFT

[06/07/2017 23:19:31] CONST_SLOT_LEGS

[06/07/2017 23:19:31] CONST_SLOT_NECKLACE

[06/07/2017 23:19:31] CONST_SLOT_RIGHT

[06/07/2017 23:19:31] CONST_SLOT_RING

[06/07/2017 23:19:31] CONTAINER_POSITION

[06/07/2017 23:19:31] Config_meta
[06/07/2017 23:19:31]     
[06/07/2017 23:19:31] __index
[06/07/2017 23:19:31]     
[06/07/2017 23:19:31] __newindex

[06/07/2017 23:19:31] DATABASE_ENGINE_MYSQL

[06/07/2017 23:19:31] DATABASE_ENGINE_NONE

[06/07/2017 23:19:31] DATABASE_ENGINE_ODBC

[06/07/2017 23:19:31] DATABASE_ENGINE_POSTGRESQL

[06/07/2017 23:19:31] DATABASE_ENGINE_SQLITE

[06/07/2017 23:19:31] EAST

[06/07/2017 23:19:31] EMBLEM_BLUE

[06/07/2017 23:19:31] EMBLEM_GREEN

[06/07/2017 23:19:31] EMBLEM_NONE

[06/07/2017 23:19:31] EMBLEM_RED

[06/07/2017 23:19:31] EMPTY_RESULT

[06/07/2017 23:19:31] EMPTY_STORAGE

[06/07/2017 23:19:31] EXHAUST_COMBAT

[06/07/2017 23:19:31] EXHAUST_HEALING

[06/07/2017 23:19:31] EXHAUST_OTHER

[06/07/2017 23:19:31] EXHAUST_WEAPON

[06/07/2017 23:19:31] FALSE

[06/07/2017 23:19:31] GAMEMASTER_IGNORE

[06/07/2017 23:19:31] GAMEMASTER_INVISIBLE

[06/07/2017 23:19:31] GAMEMASTER_TELEPORT

[06/07/2017 23:19:31] GAMESTATE_CLOSED

[06/07/2017 23:19:32] GAMESTATE_CLOSING

[06/07/2017 23:19:32] GAMESTATE_INIT

[06/07/2017 23:19:32] GAMESTATE_MAINTAIN

[06/07/2017 23:19:32] GAMESTATE_NORMAL

[06/07/2017 23:19:32] GAMESTATE_SHUTDOWN

[06/07/2017 23:19:32] GAMESTATE_STARTUP

[06/07/2017 23:19:32] GUILDLEVEL_LEADER

[06/07/2017 23:19:32] GUILDLEVEL_MEMBER

[06/07/2017 23:19:32] GUILDLEVEL_VICE

[06/07/2017 23:19:32] ITEMCOUNT_MAX

[06/07/2017 23:19:32] ITEM_CRYSTAL_COIN

[06/07/2017 23:19:32] ITEM_FISH

[06/07/2017 23:19:32] ITEM_GOLD_COIN

[06/07/2017 23:19:32] ITEM_GREEN_PERCH

[06/07/2017 23:19:32] ITEM_LABEL

[06/07/2017 23:19:32] ITEM_MECHANICAL_FISH

[06/07/2017 23:19:32] ITEM_MECHANICAL_FISHING_ROD

[06/07/2017 23:19:32] ITEM_NAIL

[06/07/2017 23:19:32] ITEM_NORTHERN_PIKE

[06/07/2017 23:19:32] ITEM_PARCEL

[06/07/2017 23:19:32] ITEM_PLATINUM_COIN

[06/07/2017 23:19:32] ITEM_RAINBOW_TROUT

[06/07/2017 23:19:32] ITEM_SCARAB_COIN

[06/07/2017 23:19:32] ITEM_TYPE_BED

[06/07/2017 23:19:32] ITEM_TYPE_CONTAINER

[06/07/2017 23:19:32] ITEM_TYPE_DEPOT

[06/07/2017 23:19:32] ITEM_TYPE_DOOR

[06/07/2017 23:19:32] ITEM_TYPE_LEVELDOOR

[06/07/2017 23:19:32] ITEM_TYPE_MAGICFIELD

[06/07/2017 23:19:32] ITEM_TYPE_MAILBOX

[06/07/2017 23:19:33] ITEM_TYPE_TELEPORT

[06/07/2017 23:19:33] ITEM_TYPE_TRASHHOLDER

[06/07/2017 23:19:33] ITEM_WORM

[06/07/2017 23:19:33] InitArenaScript

[06/07/2017 23:19:33] LUA_ERROR

[06/07/2017 23:19:33] LUA_NO_ERROR

[06/07/2017 23:19:33] MANAGER_ACCOUNT

[06/07/2017 23:19:33] MANAGER_NAMELOCK

[06/07/2017 23:19:33] MANAGER_NEW

[06/07/2017 23:19:33] MANAGER_NONE

[06/07/2017 23:19:33] MAPMARK_BAG

[06/07/2017 23:19:33] MAPMARK_CROSS

[06/07/2017 23:19:33] MAPMARK_DOLLAR

[06/07/2017 23:19:33] MAPMARK_EXCLAMATION

[06/07/2017 23:19:33] MAPMARK_FLAG

[06/07/2017 23:19:33] MAPMARK_GREENNORTH

[06/07/2017 23:19:33] MAPMARK_GREENSOUTH

[06/07/2017 23:19:33] MAPMARK_KISS

[06/07/2017 23:19:33] MAPMARK_LOCK

[06/07/2017 23:19:33] MAPMARK_QUESTION

[06/07/2017 23:19:33] MAPMARK_REDEAST

[06/07/2017 23:19:33] MAPMARK_REDNORTH

[06/07/2017 23:19:33] MAPMARK_REDSOUTH

[06/07/2017 23:19:33] MAPMARK_REDWEST

[06/07/2017 23:19:33] MAPMARK_SHOVEL

[06/07/2017 23:19:33] MAPMARK_SKULL

[06/07/2017 23:19:33] MAPMARK_STAR

[06/07/2017 23:19:33] MAPMARK_SWORD

[06/07/2017 23:19:33] MAPMARK_TEMPLE

[06/07/2017 23:19:33] MAPMARK_TICK

[06/07/2017 23:19:34] MESSAGE_EVENT_ADVANCE

[06/07/2017 23:19:34] MESSAGE_EVENT_DEFAULT

[06/07/2017 23:19:34] MESSAGE_EVENT_ORANGE

[06/07/2017 23:19:34] MESSAGE_FIRST

[06/07/2017 23:19:34] MESSAGE_INFO_DESCR

[06/07/2017 23:19:34] MESSAGE_LAST

[06/07/2017 23:19:34] MESSAGE_STATUS_CONSOLE_BLUE

[06/07/2017 23:19:34] MESSAGE_STATUS_CONSOLE_ORANGE

[06/07/2017 23:19:34] MESSAGE_STATUS_CONSOLE_RED

[06/07/2017 23:19:34] MESSAGE_STATUS_DEFAULT

[06/07/2017 23:19:34] MESSAGE_STATUS_SMALL

[06/07/2017 23:19:34] MESSAGE_STATUS_WARNING

[06/07/2017 23:19:34] MESSAGE_TYPES
[06/07/2017 23:19:34]     
[06/07/2017 23:19:34] advance
[06/07/2017 23:19:34]     
[06/07/2017 23:19:34] blue
[06/07/2017 23:19:34]     
[06/07/2017 23:19:34] event
[06/07/2017 23:19:34]     
[06/07/2017 23:19:34] green
[06/07/2017 23:19:34]     
[06/07/2017 23:19:34] info
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] orange
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] red
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] small
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] status
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] warning
[06/07/2017 23:19:35]     
[06/07/2017 23:19:35] white

[06/07/2017 23:19:35] MUTED_BUFFER

[06/07/2017 23:19:35] MUTED_TRADE

[06/07/2017 23:19:35] MUTED_TRADE_ROOK

[06/07/2017 23:19:35] MUTED_YELL

[06/07/2017 23:19:35] NORTH

[06/07/2017 23:19:35] NORTHEAST

[06/07/2017 23:19:35] NORTHWEST

[06/07/2017 23:19:36] PLAYERBAN_BANISHMENT

[06/07/2017 23:19:36] PLAYERBAN_LOCK

[06/07/2017 23:19:36] PLAYERBAN_NONE

[06/07/2017 23:19:36] PLAYERBAN_REPORT

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_ALLOWIDLE

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANLOGINMULTIPLECHARACTERS

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANLOGOUTANYTIME

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANMOVEANYWHERE

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANMOVEFROMFAR

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANPUSHALLITEMS

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANSEEITEMDETAILS

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANSEEPOSITION

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANSTAIRHOP

[06/07/2017 23:19:36] PLAYERCUSTOMFLAG_CANTHROWANYWHERE

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_CANTURNHOP

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_CANWALKTHROUGH

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_CANWEARALLADDONS

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_HASFULLLIGHT

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_HIDELEVEL

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_IGNOREHOUSERENT

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_IGNOREPACIFICATION

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_ISIMMUNE

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_ISPROTECTED

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_ISWALKABLE

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_NOTGAINSKULL

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_NOTGAINUNJUSTIFIED

[06/07/2017 23:19:37] PLAYERCUSTOMFLAG_NOTSEARCHABLE

[06/07/2017 23:19:37] PLAYERFLAG_39

[06/07/2017 23:19:38] PLAYERFLAG_45

[06/07/2017 23:19:38] PLAYERFLAG_CANALWAYSLOGIN

[06/07/2017 23:19:38] PLAYERFLAG_CANANSWERRULEVIOLATIONS

[06/07/2017 23:19:38] PLAYERFLAG_CANBROADCAST

[06/07/2017 23:19:38] PLAYERFLAG_CANCONVINCEALL

[06/07/2017 23:19:38] PLAYERFLAG_CANEDITHOUSES

[06/07/2017 23:19:38] PLAYERFLAG_CANILLUSIONALL

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTATTACKMONSTER

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTATTACKPLAYER

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTBEATTACKED

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTBEBANNED

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTBEMUTED

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTBEPUSHED

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTBESEEN

[06/07/2017 23:19:38] PLAYERFLAG_CANNOTMOVECREATURES

[06/07/2017 23:19:39] PLAYERFLAG_CANNOTMOVEITEMS

[06/07/2017 23:19:39] PLAYERFLAG_CANNOTPICKUPITEM

[06/07/2017 23:19:39] PLAYERFLAG_CANNOTUSECOMBAT

[06/07/2017 23:19:39] PLAYERFLAG_CANNOTUSESPELLS

[06/07/2017 23:19:39] PLAYERFLAG_CANPUSHALLCREATURES

[06/07/2017 23:19:39] PLAYERFLAG_CANREPORTBUGS

[06/07/2017 23:19:39] PLAYERFLAG_CANSENSEINVISIBILITY

[06/07/2017 23:19:39] PLAYERFLAG_CANSUMMONALL

[06/07/2017 23:19:39] PLAYERFLAG_CANTALKREDCHANNEL

[06/07/2017 23:19:39] PLAYERFLAG_CANTALKREDCHANNELANONYMOUS

[06/07/2017 23:19:39] PLAYERFLAG_CANTALKREDPRIVATE

[06/07/2017 23:19:39] PLAYERFLAG_HASINFINITECAPACITY

[06/07/2017 23:19:39] PLAYERFLAG_HASINFINITEMANA

[06/07/2017 23:19:39] PLAYERFLAG_HASINFINITESOUL

[06/07/2017 23:19:40] PLAYERFLAG_HASINFINITESTAMINA

[06/07/2017 23:19:40] PLAYERFLAG_HASNOEXHAUSTION

[06/07/2017 23:19:40] PLAYERFLAG_IGNOREDBYMONSTERS

[06/07/2017 23:19:40] PLAYERFLAG_IGNOREPROTECTIONZONE

[06/07/2017 23:19:40] PLAYERFLAG_IGNORESPELLCHECK

[06/07/2017 23:19:40] PLAYERFLAG_IGNOREWEAPONCHECK

[06/07/2017 23:19:40] PLAYERFLAG_ISALWAYSPREMIUM

[06/07/2017 23:19:40] PLAYERFLAG_NOTGAINEXPERIENCE

[06/07/2017 23:19:40] PLAYERFLAG_NOTGAINHEALTH

[06/07/2017 23:19:40] PLAYERFLAG_NOTGAININFIGHT

[06/07/2017 23:19:40] PLAYERFLAG_NOTGAINMANA

[06/07/2017 23:19:40] PLAYERFLAG_NOTGAINSKILL

[06/07/2017 23:19:40] PLAYERFLAG_NOTGENERATELOOT

[06/07/2017 23:19:40] PLAYERFLAG_SETMAXSPEED

[06/07/2017 23:19:40] PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION

[06/07/2017 23:19:41] PLAYERFLAG_SPECIALVIP

[06/07/2017 23:19:41] PLAYERFLAG_TALKORANGEHELPCHANNEL

[06/07/2017 23:19:41] PLAYERLOSS_CONTAINERS

[06/07/2017 23:19:41] PLAYERLOSS_EXPERIENCE

[06/07/2017 23:19:41] PLAYERLOSS_ITEMS

[06/07/2017 23:19:41] PLAYERLOSS_MANA

[06/07/2017 23:19:41] PLAYERLOSS_SKILLS

[06/07/2017 23:19:41] PLAYERSEX_FEMALE

[06/07/2017 23:19:41] PLAYERSEX_GAMEMASTER

[06/07/2017 23:19:41] PLAYERSEX_MALE

[06/07/2017 23:19:41] PlayerCustomFlag_AllowIdle

[06/07/2017 23:19:41] PlayerCustomFlag_CanLoginMultipleCharacters

[06/07/2017 23:19:41] PlayerCustomFlag_CanLogoutAnytime

[06/07/2017 23:19:41] PlayerCustomFlag_CanMoveAnywhere

[06/07/2017 23:19:42] PlayerCustomFlag_CanMoveFromFar

[06/07/2017 23:19:42] PlayerCustomFlag_CanPushAllItems

[06/07/2017 23:19:42] PlayerCustomFlag_CanSeeCreatureDetails

[06/07/2017 23:19:42] PlayerCustomFlag_CanSeeItemDetails

[06/07/2017 23:19:42] PlayerCustomFlag_CanSeePosition

[06/07/2017 23:19:42] PlayerCustomFlag_CanStairhop

[06/07/2017 23:19:42] PlayerCustomFlag_CanThrowAnywhere

[06/07/2017 23:19:42] PlayerCustomFlag_CanTurnhop

[06/07/2017 23:19:42] PlayerCustomFlag_GamemasterPrivileges

[06/07/2017 23:19:42] PlayerCustomFlag_HasFullLight

[06/07/2017 23:19:42] PlayerCustomFlag_HideLevel

[06/07/2017 23:19:42] PlayerCustomFlag_IgnoreHouseRent

[06/07/2017 23:19:42] PlayerCustomFlag_IgnoreLoginDelay

[06/07/2017 23:19:42] PlayerCustomFlag_IgnorePacification

[06/07/2017 23:19:42] PlayerCustomFlag_IsImmune

[06/07/2017 23:19:43] PlayerCustomFlag_IsProtected

[06/07/2017 23:19:43] PlayerCustomFlag_NotGainSkull

[06/07/2017 23:19:43] PlayerCustomFlag_NotGainUnjustified

[06/07/2017 23:19:43] PlayerCustomFlag_NotSearchable

[06/07/2017 23:19:43] PlayerFlag_39

[06/07/2017 23:19:43] PlayerFlag_45

[06/07/2017 23:19:43] PlayerFlag_CanAlwaysLogin

[06/07/2017 23:19:43] PlayerFlag_CanAnswerRuleViolations

[06/07/2017 23:19:43] PlayerFlag_CanBroadcast

[06/07/2017 23:19:43] PlayerFlag_CanConvinceAll

[06/07/2017 23:19:43] PlayerFlag_CanEditHouses

[06/07/2017 23:19:43] PlayerFlag_CanIllusionAll

[06/07/2017 23:19:43] PlayerFlag_CanPushAllCreatures

[06/07/2017 23:19:43] PlayerFlag_CanReportBugs

[06/07/2017 23:19:44] PlayerFlag_CanSenseInvisibility

[06/07/2017 23:19:44] PlayerFlag_CanSummonAll

[06/07/2017 23:19:44] PlayerFlag_CanTalkRedChannel

[06/07/2017 23:19:44] PlayerFlag_CanTalkRedChannelAnonymous

[06/07/2017 23:19:44] PlayerFlag_CanTalkRedPrivate

[06/07/2017 23:19:44] PlayerFlag_CannotAttackMonster

[06/07/2017 23:19:44] PlayerFlag_CannotAttackPlayer

[06/07/2017 23:19:44] PlayerFlag_CannotBeAttacked

[06/07/2017 23:19:44] PlayerFlag_CannotBeBanned

[06/07/2017 23:19:44] PlayerFlag_CannotBeMuted

[06/07/2017 23:19:44] PlayerFlag_CannotBePushed

[06/07/2017 23:19:44] PlayerFlag_CannotBeSeen

[06/07/2017 23:19:44] PlayerFlag_CannotMoveCreatures

[06/07/2017 23:19:44] PlayerFlag_CannotMoveItems

[06/07/2017 23:19:45] PlayerFlag_CannotPickupItem

[06/07/2017 23:19:45] PlayerFlag_CannotUseCombat

[06/07/2017 23:19:45] PlayerFlag_CannotUseSpells

[06/07/2017 23:19:45] PlayerFlag_HasInfiniteCapacity

[06/07/2017 23:19:45] PlayerFlag_HasInfiniteMana

[06/07/2017 23:19:45] PlayerFlag_HasInfiniteSoul

[06/07/2017 23:19:45] PlayerFlag_HasInfiniteStamina

[06/07/2017 23:19:45] PlayerFlag_HasNoExhaustion

[06/07/2017 23:19:45] PlayerFlag_HideHealth

[06/07/2017 23:19:45] PlayerFlag_IgnoreProtectionZone

[06/07/2017 23:19:45] PlayerFlag_IgnoreSpellCheck

[06/07/2017 23:19:45] PlayerFlag_IgnoreWeaponCheck

[06/07/2017 23:19:45] PlayerFlag_IgnoredByMonsters

[06/07/2017 23:19:45] PlayerFlag_IsAlwaysPremium

[06/07/2017 23:19:45] PlayerFlag_NotGainExperience

[06/07/2017 23:19:46] PlayerFlag_NotGainHealth

[06/07/2017 23:19:46] PlayerFlag_NotGainInFight

[06/07/2017 23:19:46] PlayerFlag_NotGainMana

[06/07/2017 23:19:46] PlayerFlag_NotGainSkill

[06/07/2017 23:19:46] PlayerFlag_NotGenerateLoot

[06/07/2017 23:19:46] PlayerFlag_SetMaxSpeed

[06/07/2017 23:19:46] PlayerFlag_ShowGroupNameInsteadOfVocation

[06/07/2017 23:19:46] PlayerFlag_SpecialVIP

[06/07/2017 23:19:46] PlayerFlag_TalkOrangeHelpChannel

[06/07/2017 23:19:46] RELOAD_ACTIONS

[06/07/2017 23:19:46] RELOAD_ALL

[06/07/2017 23:19:46] RELOAD_CHAT

[06/07/2017 23:19:46] RELOAD_CONFIG

[06/07/2017 23:19:46] RELOAD_CREATUREEVENTS

[06/07/2017 23:19:46] RELOAD_GAMESERVERS

[06/07/2017 23:19:47] RELOAD_GLOBALEVENTS

[06/07/2017 23:19:47] RELOAD_GROUPS

[06/07/2017 23:19:47] RELOAD_HIGHSCORES

[06/07/2017 23:19:47] RELOAD_HOUSEPRICES

[06/07/2017 23:19:47] RELOAD_ITEMS

[06/07/2017 23:19:47] RELOAD_MODS

[06/07/2017 23:19:47] RELOAD_MONSTERS

[06/07/2017 23:19:47] RELOAD_MOVEEVENTS

[06/07/2017 23:19:47] RELOAD_NPCS

[06/07/2017 23:19:47] RELOAD_OUTFITS

[06/07/2017 23:19:47] RELOAD_QUESTS

[06/07/2017 23:19:47] RELOAD_RAIDS

[06/07/2017 23:19:47] RELOAD_SPELLS

[06/07/2017 23:19:47] RELOAD_STAGES

[06/07/2017 23:19:47] RELOAD_TALKACTIONS

[06/07/2017 23:19:48] RELOAD_VOCATIONS

[06/07/2017 23:19:48] RELOAD_WEAPONS

[06/07/2017 23:19:48] RETURNVALUE_ACTIONNOTPERMITTEDINANOPVPZONE

[06/07/2017 23:19:48] RETURNVALUE_ACTIONNOTPERMITTEDINPROTECTIONZONE

[06/07/2017 23:19:48] RETURNVALUE_BOTHHANDSNEEDTOBEFREE

[06/07/2017 23:19:48] RETURNVALUE_CANNOTBEDRESSED

[06/07/2017 23:19:48] RETURNVALUE_CANNOTCONJUREITEMHERE

[06/07/2017 23:19:48] RETURNVALUE_CANNOTPICKUP

[06/07/2017 23:19:48] RETURNVALUE_CANNOTTHROW

[06/07/2017 23:19:48] RETURNVALUE_CANNOTUSETHISOBJECT

[06/07/2017 23:19:48] RETURNVALUE_CANONLYUSEONESHIELD

[06/07/2017 23:19:48] RETURNVALUE_CANONLYUSEONEWEAPON

[06/07/2017 23:19:48] RETURNVALUE_CANONLYUSETHISRUNEONCREATURES

[06/07/2017 23:19:48] RETURNVALUE_CONTAINERNOTENOUGHROOM

[06/07/2017 23:19:48] RETURNVALUE_CREATUREBLOCK

[06/07/2017 23:19:49] RETURNVALUE_CREATUREDOESNOTEXIST

[06/07/2017 23:19:49] RETURNVALUE_CREATUREISNOTREACHABLE

[06/07/2017 23:19:49] RETURNVALUE_DEPOTISFULL

[06/07/2017 23:19:49] RETURNVALUE_DESTINATIONOUTOFREACH

[06/07/2017 23:19:49] RETURNVALUE_DIRECTPLAYERSHOOT

[06/07/2017 23:19:49] RETURNVALUE_DONTSHOWMESSAGE

[06/07/2017 23:19:49] RETURNVALUE_DROPTWOHANDEDITEM

[06/07/2017 23:19:49] RETURNVALUE_FIRSTGODOWNSTAIRS

[06/07/2017 23:19:49] RETURNVALUE_FIRSTGOUPSTAIRS

[06/07/2017 23:19:49] RETURNVALUE_NAMEISTOOAMBIGUOUS

[06/07/2017 23:19:49] RETURNVALUE_NEEDEXCHANGE

[06/07/2017 23:19:49] RETURNVALUE_NOERROR

[06/07/2017 23:19:49] RETURNVALUE_NOTENOUGHCAPACITY

[06/07/2017 23:19:49] RETURNVALUE_NOTENOUGHLEVEL

[06/07/2017 23:19:49] RETURNVALUE_NOTENOUGHMAGICLEVEL

[06/07/2017 23:19:50] RETURNVALUE_NOTENOUGHMANA

[06/07/2017 23:19:50] RETURNVALUE_NOTENOUGHROOM

[06/07/2017 23:19:50] RETURNVALUE_NOTENOUGHSOUL

[06/07/2017 23:19:50] RETURNVALUE_NOTMOVEABLE

[06/07/2017 23:19:50] RETURNVALUE_NOTPOSSIBLE

[06/07/2017 23:19:50] RETURNVALUE_NOTREQUIREDLEVELTOUSERUNE

[06/07/2017 23:19:50] RETURNVALUE_PLAYERISNOTINVITED

[06/07/2017 23:19:50] RETURNVALUE_PLAYERISNOTREACHABLE

[06/07/2017 23:19:50] RETURNVALUE_PLAYERISPZLOCKED

[06/07/2017 23:19:50] RETURNVALUE_PLAYERISPZLOCKEDENTERPVPZONE

[06/07/2017 23:19:50] RETURNVALUE_PLAYERISPZLOCKEDLEAVEPVPZONE

[06/07/2017 23:19:50] RETURNVALUE_PLAYERWITHTHISNAMEISNOTONLINE

[06/07/2017 23:19:50] RETURNVALUE_PUTTHISOBJECTINBOTHHANDS

[06/07/2017 23:19:50] RETURNVALUE_PUTTHISOBJECTINYOURHAND

[06/07/2017 23:19:51] RETURNVALUE_THEREISNOWAY

[06/07/2017 23:19:51] RETURNVALUE_THISISIMPOSSIBLE

[06/07/2017 23:19:51] RETURNVALUE_THISPLAYERISALREADYTRADING

[06/07/2017 23:19:51] RETURNVALUE_TILEISFULL

[06/07/2017 23:19:51] RETURNVALUE_TOOFARAWAY

[06/07/2017 23:19:51] RETURNVALUE_TURNSECUREMODETOATTACKUNMARKEDPLAYERS

[06/07/2017 23:19:51] RETURNVALUE_YOUAREALREADYTRADING

[06/07/2017 23:19:51] RETURNVALUE_YOUAREEXHAUSTED

[06/07/2017 23:19:51] RETURNVALUE_YOUARENOTTHEOWNER

[06/07/2017 23:19:51] RETURNVALUE_YOUCANNOTLOGOUTHERE

[06/07/2017 23:19:51] RETURNVALUE_YOUCANONLYUSEITONCREATURES

[06/07/2017 23:19:51] RETURNVALUE_YOUMAYNOTATTACKAPERSONINPROTECTIONZONE

[06/07/2017 23:19:51] RETURNVALUE_YOUMAYNOTATTACKAPERSONWHILEINPROTECTIONZONE

[06/07/2017 23:19:51] RETURNVALUE_YOUMAYNOTATTACKTHISCREATURE

[06/07/2017 23:19:51] RETURNVALUE_YOUMAYNOTATTACKTHISPLAYER

[06/07/2017 23:19:52] RETURNVALUE_YOUMAYNOTCASTAREAONBLACKSKULL

[06/07/2017 23:19:52] RETURNVALUE_YOUMAYNOTLOGOUTDURINGAFIGHT

[06/07/2017 23:19:52] RETURNVALUE_YOUNEEDAMAGICITEMTOCASTSPELL

[06/07/2017 23:19:52] RETURNVALUE_YOUNEEDAWEAPONTOUSETHISSPELL

[06/07/2017 23:19:52] RETURNVALUE_YOUNEEDPREMIUMACCOUNT

[06/07/2017 23:19:52] RETURNVALUE_YOUNEEDTOLEARNTHISSPELL

[06/07/2017 23:19:52] RETURNVALUE_YOUNEEDTOSPLITYOURSPEARS

[06/07/2017 23:19:52] RETURNVALUE_YOURVOCATIONCANNOTUSETHISSPELL

[06/07/2017 23:19:52] Result
[06/07/2017 23:19:52]     
[06/07/2017 23:19:52] create
[06/07/2017 23:19:52]     
[06/07/2017 23:19:52] free
[06/07/2017 23:19:52]     
[06/07/2017 23:19:52] getDataInt
[06/07/2017 23:19:52]     
[06/07/2017 23:19:52] getDataLong
[06/07/2017 23:19:52]     
[06/07/2017 23:19:52] getDataStream
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getDataString
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getID
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getParent
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getQuery
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getRows
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] getSelf
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] id
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] isa
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] new
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] next
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] numRows
[06/07/2017 23:19:53]     
[06/07/2017 23:19:53] query
[06/07/2017 23:19:53]     
[06/07/2017 23:19:54] setAttributes
[06/07/2017 23:19:54]     
[06/07/2017 23:19:54] setID
[06/07/2017 23:19:54]     
[06/07/2017 23:19:54] setQuery

[06/07/2017 23:19:54] SHIELD_BLUE

[06/07/2017 23:19:54] SHIELD_BLUE_NOSHAREDEXP

[06/07/2017 23:19:54] SHIELD_BLUE_NOSHAREDEXP_BLINK

[06/07/2017 23:19:54] SHIELD_BLUE_SHAREDEXP

[06/07/2017 23:19:54] SHIELD_LAST

[06/07/2017 23:19:54] SHIELD_NONE

[06/07/2017 23:19:54] SHIELD_WHITEBLUE

[06/07/2017 23:19:54] SHIELD_WHITEYELLOW

[06/07/2017 23:19:54] SHIELD_YELLOW

[06/07/2017 23:19:54] SHIELD_YELLOW_NOSHAREDEXP

[06/07/2017 23:19:55] SHIELD_YELLOW_NOSHAREDEXP_BLINK

[06/07/2017 23:19:55] SHIELD_YELLOW_SHAREDEXP

[06/07/2017 23:19:55] SKILLS
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 0
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 1
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 2
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 3
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 4
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 5
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 6
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 7
[06/07/2017 23:19:55]     
[06/07/2017 23:19:55] 8

[06/07/2017 23:19:55] SKILL_AXE

[06/07/2017 23:19:55] SKILL_CLUB

[06/07/2017 23:19:56] SKILL_DISTANCE

[06/07/2017 23:19:56] SKILL_FISHING

[06/07/2017 23:19:56] SKILL_FIST

[06/07/2017 23:19:56] SKILL_IDS
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] axe
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] club
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] dist
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] distance
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] fish
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] fishing
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] fist
[06/07/2017 23:19:56]     
[06/07/2017 23:19:56] level
[06/07/2017 23:19:56]     
[06/07/2017 23:19:57] magic
[06/07/2017 23:19:57]     
[06/07/2017 23:19:57] shield
[06/07/2017 23:19:57]     
[06/07/2017 23:19:57] shielding
[06/07/2017 23:19:57]     
[06/07/2017 23:19:57] sword

[06/07/2017 23:19:57] SKILL_NAMES

[06/07/2017 23:19:57] SKILL_SHIELD

[06/07/2017 23:19:57] SKILL_SWORD

[06/07/2017 23:19:57] SKILL__LEVEL

[06/07/2017 23:19:57] SKILL__MAGLEVEL

[06/07/2017 23:19:57] SKULL_BLACK

[06/07/2017 23:19:57] SKULL_GREEN

[06/07/2017 23:19:57] SKULL_LAST

[06/07/2017 23:19:57] SKULL_NONE

[06/07/2017 23:19:58] SKULL_RED

[06/07/2017 23:19:58] SKULL_WHITE

[06/07/2017 23:19:58] SKULL_YELLOW

[06/07/2017 23:19:58] SNAKE
[06/07/2017 23:19:58]     
[06/07/2017 23:19:58] _VERSION
[06/07/2017 23:19:58]     
[06/07/2017 23:19:58] centerpos
[06/07/2017 23:19:58]         
[06/07/2017 23:19:58] x
[06/07/2017 23:19:58]         
[06/07/2017 23:19:58] y
[06/07/2017 23:19:58]         
[06/07/2017 23:19:58] z
[06/07/2017 23:19:58]     
[06/07/2017 23:19:58] check
[06/07/2017 23:19:58]     
[06/07/2017 23:19:58] clean
[06/07/2017 23:19:58]     
[06/07/2017 23:19:58] controlpos
[06/07/2017 23:19:58]         
[06/07/2017 23:19:58] x
[06/07/2017 23:19:58]         
[06/07/2017 23:19:58] y
[06/07/2017 23:19:59]         
[06/07/2017 23:19:59] z
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] copypos
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] exitpos
[06/07/2017 23:19:59]         
[06/07/2017 23:19:59] x
[06/07/2017 23:19:59]         
[06/07/2017 23:19:59] y
[06/07/2017 23:19:59]         
[06/07/2017 23:19:59] z
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] find_and_delete
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] freeglobalstorage
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] generateFood
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] isWalkable
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] itemFood
[06/07/2017 23:19:59]     
[06/07/2017 23:19:59] itemid
[06/07/2017 23:19:59]     
[06/07/2017 23:20:00] samepos
[06/07/2017 23:20:00]     
[06/07/2017 23:20:00] timer

[06/07/2017 23:20:00] SOUTH

[06/07/2017 23:20:00] SOUTHEAST

[06/07/2017 23:20:00] SOUTHWEST

[06/07/2017 23:20:00] STACKPOS_FIFTH_ITEM_ABOVE_GROUNDTILE

[06/07/2017 23:20:00] STACKPOS_FIRST_ITEM_ABOVE_GROUNDTILE

[06/07/2017 23:20:00] STACKPOS_FOURTH_ITEM_ABOVE_GROUNDTILE

[06/07/2017 23:20:00] STACKPOS_GROUND

[06/07/2017 23:20:00] STACKPOS_SECOND_ITEM_ABOVE_GROUNDTILE

[06/07/2017 23:20:00] STACKPOS_THIRD_ITEM_ABOVE_GROUNDTILE

[06/07/2017 23:20:00] STACKPOS_TOP_CREATURE

[06/07/2017 23:20:00] STACKPOS_TOP_FIELD

[06/07/2017 23:20:01] STACKPOS_TOP_MOVEABLE_ITEM_OR_CREATURE

[06/07/2017 23:20:01] STATSCHANGE_HEALTHGAIN

[06/07/2017 23:20:01] STATSCHANGE_HEALTHLOSS

[06/07/2017 23:20:01] STATSCHANGE_MANAGAIN

[06/07/2017 23:20:01] STATSCHANGE_MANALOSS

[06/07/2017 23:20:01] STORAGE

[06/07/2017 23:20:01] Storage_meta
[06/07/2017 23:20:01]     
[06/07/2017 23:20:01] __index
[06/07/2017 23:20:01]     
[06/07/2017 23:20:01] __newindex

[06/07/2017 23:20:01] TALKTYPE_BROADCAST

[06/07/2017 23:20:01] TALKTYPE_CHANNEL_O

[06/07/2017 23:20:01] TALKTYPE_CHANNEL_R1

[06/07/2017 23:20:01] TALKTYPE_CHANNEL_R2

[06/07/2017 23:20:01] TALKTYPE_CHANNEL_RA

[06/07/2017 23:20:01] TALKTYPE_CHANNEL_RN

[06/07/2017 23:20:02] TALKTYPE_CHANNEL_W

[06/07/2017 23:20:02] TALKTYPE_CHANNEL_Y

[06/07/2017 23:20:02] TALKTYPE_FIRST

[06/07/2017 23:20:02] TALKTYPE_LAST

[06/07/2017 23:20:02] TALKTYPE_MONSTER

[06/07/2017 23:20:02] TALKTYPE_MONSTER_YELL

[06/07/2017 23:20:02] TALKTYPE_ORANGE_1

[06/07/2017 23:20:02] TALKTYPE_ORANGE_2

[06/07/2017 23:20:02] TALKTYPE_PRIVATE

[06/07/2017 23:20:02] TALKTYPE_PRIVATE_NP

[06/07/2017 23:20:02] TALKTYPE_PRIVATE_PN

[06/07/2017 23:20:02] TALKTYPE_PRIVATE_RED

[06/07/2017 23:20:02] TALKTYPE_RVR_ANSWER

[06/07/2017 23:20:02] TALKTYPE_RVR_CHANNEL

[06/07/2017 23:20:03] TALKTYPE_RVR_CONTINUE

[06/07/2017 23:20:03] TALKTYPE_SAY

[06/07/2017 23:20:03] TALKTYPE_TYPES
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] broadcast
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] channel-orange
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] channel-red
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] channel-redanonymous
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] channel-white
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] channel-yellow
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] monster
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] monster-yell
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] private
[06/07/2017 23:20:03]     
[06/07/2017 23:20:03] private-npcplayer
[06/07/2017 23:20:03]     
[06/07/2017 23:20:04] private-playernpc
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] rvr-answer
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] rvr-channel
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] rvr-continue
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] say
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] whisper
[06/07/2017 23:20:04]     
[06/07/2017 23:20:04] yell

[06/07/2017 23:20:04] TALKTYPE_WHISPER

[06/07/2017 23:20:04] TALKTYPE_YELL

[06/07/2017 23:20:04] TEXTCOLOR_BLACK

[06/07/2017 23:20:04] TEXTCOLOR_BLUE

[06/07/2017 23:20:04] TEXTCOLOR_BROWN

[06/07/2017 23:20:05] TEXTCOLOR_DARKBROWN

[06/07/2017 23:20:05] TEXTCOLOR_DARKORANGE

[06/07/2017 23:20:05] TEXTCOLOR_DARKPINK

[06/07/2017 23:20:05] TEXTCOLOR_DARKPURPLE

[06/07/2017 23:20:05] TEXTCOLOR_DARKRED

[06/07/2017 23:20:05] TEXTCOLOR_DARKYELLOW

[06/07/2017 23:20:05] TEXTCOLOR_GREEN

[06/07/2017 23:20:05] TEXTCOLOR_GREY

[06/07/2017 23:20:05] TEXTCOLOR_LIGHTBLUE

[06/07/2017 23:20:05] TEXTCOLOR_LIGHTGREEN

[06/07/2017 23:20:05] TEXTCOLOR_NONE

[06/07/2017 23:20:05] TEXTCOLOR_ORANGE

[06/07/2017 23:20:05] TEXTCOLOR_PINK

[06/07/2017 23:20:05] TEXTCOLOR_PURPLE

[06/07/2017 23:20:05] TEXTCOLOR_RED

[06/07/2017 23:20:06] TEXTCOLOR_TEAL

[06/07/2017 23:20:06] TEXTCOLOR_WHITE

[06/07/2017 23:20:06] TEXTCOLOR_YELLOW

[06/07/2017 23:20:06] TRUE

[06/07/2017 23:20:06] WARINFO_ENEMY

[06/07/2017 23:20:06] WARINFO_GUILD

[06/07/2017 23:20:06] WARINFO_LIMIT

[06/07/2017 23:20:06] WAR_ENEMY

[06/07/2017 23:20:06] WAR_GUILD

[06/07/2017 23:20:06] WEAPON_AMMO

[06/07/2017 23:20:06] WEAPON_AXE

[06/07/2017 23:20:06] WEAPON_CLUB

[06/07/2017 23:20:06] WEAPON_DIST

[06/07/2017 23:20:06] WEAPON_FIST

[06/07/2017 23:20:06] WEAPON_NONE

[06/07/2017 23:20:06] WEAPON_SHIELD

[06/07/2017 23:20:07] WEAPON_SWORD

[06/07/2017 23:20:07] WEAPON_WAND

[06/07/2017 23:20:07] WEST

[06/07/2017 23:20:07] WORLDTYPE_HARDCORE

[06/07/2017 23:20:07] WORLDTYPE_NO_PVP

[06/07/2017 23:20:07] WORLDTYPE_OPEN

[06/07/2017 23:20:07] WORLDTYPE_OPTIONAL

[06/07/2017 23:20:07] WORLDTYPE_PVP

[06/07/2017 23:20:07] WORLDTYPE_PVP_ENFORCED

[06/07/2017 23:20:07] WORLD_TYPE_NO_PVP

[06/07/2017 23:20:07] WORLD_TYPE_PVP

[06/07/2017 23:20:07] WORLD_TYPE_PVP_ENFORCED

[06/07/2017 23:20:07] _G

[06/07/2017 23:20:07] _VERSION

[06/07/2017 23:20:08] addDamageCondition

[06/07/2017 23:20:08] addEvent

[06/07/2017 23:20:08] addOutfitCondition

[06/07/2017 23:20:08] arenaKickPosition
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] x
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] y
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] z

[06/07/2017 23:20:08] arena_monsters
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42300
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42301
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42302
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42303
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42304
[06/07/2017 23:20:08]     
[06/07/2017 23:20:08] 42305
[06/07/2017 23:20:08]     
[06/07/2017 23:20:09] 42306
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42307
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42308
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42309
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42310
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42311
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42312
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42313
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42314
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42315
[06/07/2017 23:20:09]     
[06/07/2017 23:20:09] 42316
[06/07/2017 23:20:09]     
[06/07/2017 23:20:10] 42317
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42318
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42319
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42320
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42321
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42322
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42323
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42324
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42325
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42326
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42327
[06/07/2017 23:20:10]     
[06/07/2017 23:20:10] 42328
[06/07/2017 23:20:10]     
[06/07/2017 23:20:11] 42329

[06/07/2017 23:20:11] arena_room_max_time

[06/07/2017 23:20:11] assert

[06/07/2017 23:20:11] bit
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] band
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] bnot
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] bor
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] bxor
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] lshift
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] rshift
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] uband
[06/07/2017 23:20:11]     
[06/07/2017 23:20:11] ubnot
[06/07/2017 23:20:11]     
[06/07/2017 23:20:12] ubor
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] ubxor
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] ulshift
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] urshift

[06/07/2017 23:20:12] broadcastMessage

[06/07/2017 23:20:12] canPlayerWearOutfit

[06/07/2017 23:20:12] canPlayerWearOutfitId

[06/07/2017 23:20:12] cleanHouse

[06/07/2017 23:20:12] cleanMap

[06/07/2017 23:20:12] closingDoors
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] 1
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] 2
[06/07/2017 23:20:12]     
[06/07/2017 23:20:12] 3
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 4
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 5
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 6
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 7
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 8
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 9
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 10
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 11
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 12
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 13
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 14
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 15
[06/07/2017 23:20:13]     
[06/07/2017 23:20:13] 16
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 17
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 18
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 19
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 20
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 21
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 22
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 23
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 24
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 25
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 26
[06/07/2017 23:20:14]     
[06/07/2017 23:20:14] 27
[06/07/2017 23:20:14]     
[06/07/2017 23:20:15] 28
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 29
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 30
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 31
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 32
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 33
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 34
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 35
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 36
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 37
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 38
[06/07/2017 23:20:15]     
[06/07/2017 23:20:15] 39
[06/07/2017 23:20:15]     
[06/07/2017 23:20:16] 40
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 41
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 42
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 43
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 44
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 45
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 46
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 47
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 48
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 49
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 50
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 51
[06/07/2017 23:20:16]     
[06/07/2017 23:20:16] 52
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 53
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 54
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 55
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 56
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 57
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 58
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 59
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 60
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 61
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 62
[06/07/2017 23:20:17]     
[06/07/2017 23:20:17] 63
[06/07/2017 23:20:17]     
[06/07/2017 23:20:18] 64
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] 65
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] 66
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] 67
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] 68

[06/07/2017 23:20:18] collectgarbage

[06/07/2017 23:20:18] comparePos

[06/07/2017 23:20:18] convertIPToInt

[06/07/2017 23:20:18] convertIntToIP

[06/07/2017 23:20:18] coroutine
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] create
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] resume
[06/07/2017 23:20:18]     
[06/07/2017 23:20:18] running
[06/07/2017 23:20:18]     
[06/07/2017 23:20:19] status
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] wrap
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] yield

[06/07/2017 23:20:19] createClass

[06/07/2017 23:20:19] createCombatArea

[06/07/2017 23:20:19] createCombatObject

[06/07/2017 23:20:19] createConditionObject

[06/07/2017 23:20:19] createThread

[06/07/2017 23:20:19] creatureGetPosition

[06/07/2017 23:20:19] db
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] escapeBlob
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] escapeString
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] getResult
[06/07/2017 23:20:19]     
[06/07/2017 23:20:19] lastInsertId
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] storeQuery
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] updateLimiter
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] updateQueryLimitOperator

[06/07/2017 23:20:20] debug
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] debug
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getfenv
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] gethook
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getinfo
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getlocal
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getmetatable
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getregistry
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] getupvalue
[06/07/2017 23:20:20]     
[06/07/2017 23:20:20] setfenv
[06/07/2017 23:20:21]     
[06/07/2017 23:20:21] sethook
[06/07/2017 23:20:21]     
[06/07/2017 23:20:21] setlocal
[06/07/2017 23:20:21]     
[06/07/2017 23:20:21] setmetatable
[06/07/2017 23:20:21]     
[06/07/2017 23:20:21] setupvalue
[06/07/2017 23:20:21]     
[06/07/2017 23:20:21] traceback

[06/07/2017 23:20:21] doAddAccountBanishment

[06/07/2017 23:20:21] doAddCondition

[06/07/2017 23:20:21] doAddContainerItem

[06/07/2017 23:20:21] doAddContainerItemEx

[06/07/2017 23:20:21] doAddIpBanishment

[06/07/2017 23:20:21] doAddMapMark

[06/07/2017 23:20:21] doAddNotation

[06/07/2017 23:20:21] doAddPlayerBanishment

[06/07/2017 23:20:22] doAddStatement

[06/07/2017 23:20:22] doAreaCombatCondition

[06/07/2017 23:20:22] doAreaCombatDispel

[06/07/2017 23:20:22] doAreaCombatHealth

[06/07/2017 23:20:22] doAreaCombatMana

[06/07/2017 23:20:22] doBroadcastMessage

[06/07/2017 23:20:22] doChallengeCreature

[06/07/2017 23:20:22] doChangeSpeed

[06/07/2017 23:20:22] doChangeTypeItem

[06/07/2017 23:20:22] doCleanHouse

[06/07/2017 23:20:22] doCleanMap

[06/07/2017 23:20:22] doCleanTile

[06/07/2017 23:20:22] doCombat

[06/07/2017 23:20:22] doCombatAreaCondition

[06/07/2017 23:20:23] doCombatAreaDispel

[06/07/2017 23:20:23] doCombatAreaHealth

[06/07/2017 23:20:23] doCombatAreaMana

[06/07/2017 23:20:23] doComparePositions

[06/07/2017 23:20:23] doConvertIntegerToIp

[06/07/2017 23:20:23] doConvertIpToInteger

[06/07/2017 23:20:23] doConvinceCreature

[06/07/2017 23:20:23] doCopyItem

[06/07/2017 23:20:23] doCreateItem

[06/07/2017 23:20:23] doCreateItemEx

[06/07/2017 23:20:23] doCreateMonster

[06/07/2017 23:20:23] doCreateNpc

[06/07/2017 23:20:23] doCreateTeleport

[06/07/2017 23:20:23] doCreatureAddHealth

[06/07/2017 23:20:23] doCreatureAddMana

[06/07/2017 23:20:24] doCreatureChangeOutfit

[06/07/2017 23:20:24] doCreatureExecuteTalkAction

[06/07/2017 23:20:24] doCreatureSay

[06/07/2017 23:20:24] doCreatureSetDropLoot

[06/07/2017 23:20:24] doCreatureSetHideHealth

[06/07/2017 23:20:24] doCreatureSetLookDir

[06/07/2017 23:20:24] doCreatureSetLookDirection

[06/07/2017 23:20:24] doCreatureSetNoMove

[06/07/2017 23:20:24] doCreatureSetSkullType

[06/07/2017 23:20:24] doCreatureSetSpeakType

[06/07/2017 23:20:24] doCreatureSetStorage

[06/07/2017 23:20:24] doDecayItem

[06/07/2017 23:20:24] doExecuteRaid

[06/07/2017 23:20:24] doItemEraseAttribute

[06/07/2017 23:20:24] doItemRaidUnref

[06/07/2017 23:20:25] doItemSetAttribute

[06/07/2017 23:20:25] doMonsterChangeTarget

[06/07/2017 23:20:25] doMonsterSetTarget

[06/07/2017 23:20:25] doMoveCreature

[06/07/2017 23:20:25] doMutePlayer

[06/07/2017 23:20:25] doPlayerAddAddons

[06/07/2017 23:20:25] doPlayerAddBlessing

[06/07/2017 23:20:25] doPlayerAddExp

[06/07/2017 23:20:25] doPlayerAddExperience

[06/07/2017 23:20:25] doPlayerAddItem

[06/07/2017 23:20:25] doPlayerAddItemEx

[06/07/2017 23:20:25] doPlayerAddLevel

[06/07/2017 23:20:25] doPlayerAddMagLevel

[06/07/2017 23:20:25] doPlayerAddMana

[06/07/2017 23:20:25] doPlayerAddMapMark

[06/07/2017 23:20:26] doPlayerAddMoney

[06/07/2017 23:20:26] doPlayerAddOutfit

[06/07/2017 23:20:26] doPlayerAddOutfitId

[06/07/2017 23:20:26] doPlayerAddPremiumDays

[06/07/2017 23:20:26] doPlayerAddSkill

[06/07/2017 23:20:26] doPlayerAddSkillTry

[06/07/2017 23:20:26] doPlayerAddSoul

[06/07/2017 23:20:26] doPlayerAddSpentMana

[06/07/2017 23:20:26] doPlayerAddStamina

[06/07/2017 23:20:26] doPlayerBroadcastMessage

[06/07/2017 23:20:26] doPlayerBuyItem

[06/07/2017 23:20:26] doPlayerBuyItemContainer

[06/07/2017 23:20:26] doPlayerDepositAllMoney

[06/07/2017 23:20:26] doPlayerDepositMoney

[06/07/2017 23:20:27] doPlayerFeed

[06/07/2017 23:20:27] doPlayerGiveItem

[06/07/2017 23:20:27] doPlayerGiveItemContainer

[06/07/2017 23:20:27] doPlayerJoinParty

[06/07/2017 23:20:27] doPlayerLearnInstantSpell

[06/07/2017 23:20:27] doPlayerPopupFYI

[06/07/2017 23:20:27] doPlayerRemOutfit

[06/07/2017 23:20:27] doPlayerRemoveItem

[06/07/2017 23:20:27] doPlayerRemoveMoney

[06/07/2017 23:20:27] doPlayerRemoveOutfit

[06/07/2017 23:20:27] doPlayerRemoveOutfitId

[06/07/2017 23:20:27] doPlayerRemovePremiumDays

[06/07/2017 23:20:27] doPlayerResetIdleTime

[06/07/2017 23:20:27] doPlayerSave

[06/07/2017 23:20:28] doPlayerSay

[06/07/2017 23:20:28] doPlayerSellItem

[06/07/2017 23:20:28] doPlayerSendCancel

[06/07/2017 23:20:28] doPlayerSendChannelMessage

[06/07/2017 23:20:28] doPlayerSendDefaultCancel

[06/07/2017 23:20:28] doPlayerSendMailByName

[06/07/2017 23:20:28] doPlayerSendOutfitWindow

[06/07/2017 23:20:28] doPlayerSendTextMessage

[06/07/2017 23:20:28] doPlayerSendToChannel

[06/07/2017 23:20:28] doPlayerSendTutorial

[06/07/2017 23:20:28] doPlayerSetBalance

[06/07/2017 23:20:28] doPlayerSetExperienceRate

[06/07/2017 23:20:28] doPlayerSetGroupId

[06/07/2017 23:20:28] doPlayerSetGuildId

[06/07/2017 23:20:29] doPlayerSetGuildLevel

[06/07/2017 23:20:29] doPlayerSetGuildNick

[06/07/2017 23:20:29] doPlayerSetIdleTime

[06/07/2017 23:20:29] doPlayerSetLossPercent

[06/07/2017 23:20:29] doPlayerSetLossSkill

[06/07/2017 23:20:29] doPlayerSetMagicRate

[06/07/2017 23:20:29] doPlayerSetMaxCapacity

[06/07/2017 23:20:29] doPlayerSetNameDescription

[06/07/2017 23:20:29] doPlayerSetNoMove

[06/07/2017 23:20:29] doPlayerSetPartner

[06/07/2017 23:20:29] doPlayerSetPromotionLevel

[06/07/2017 23:20:29] doPlayerSetPzLocked

[06/07/2017 23:20:29] doPlayerSetRate

[06/07/2017 23:20:29] doPlayerSetSex

[06/07/2017 23:20:30] doPlayerSetSkillRate

[06/07/2017 23:20:30] doPlayerSetSkullEnd

[06/07/2017 23:20:30] doPlayerSetSpecialDescription

[06/07/2017 23:20:30] doPlayerSetStamina

[06/07/2017 23:20:30] doPlayerSetStorageValue

[06/07/2017 23:20:30] doPlayerSetTown

[06/07/2017 23:20:30] doPlayerSetVocation

[06/07/2017 23:20:30] doPlayerSwitchSaving

[06/07/2017 23:20:30] doPlayerTakeItem

[06/07/2017 23:20:30] doPlayerTransferAllMoneyTo

[06/07/2017 23:20:30] doPlayerTransferMoneyTo

[06/07/2017 23:20:30] doPlayerUnlearnInstantSpell

[06/07/2017 23:20:30] doPlayerWithdrawAllMoney

[06/07/2017 23:20:30] doPlayerWithdrawMoney

[06/07/2017 23:20:31] doRefreshMap

[06/07/2017 23:20:31] doReloadInfo

[06/07/2017 23:20:31] doRelocate

[06/07/2017 23:20:31] doRemoveAccountBanishment

[06/07/2017 23:20:31] doRemoveCondition

[06/07/2017 23:20:31] doRemoveConditions

[06/07/2017 23:20:31] doRemoveCreature

[06/07/2017 23:20:31] doRemoveIpBanishment

[06/07/2017 23:20:31] doRemoveItem

[06/07/2017 23:20:31] doRemoveNotations

[06/07/2017 23:20:31] doRemovePlayerBanishment

[06/07/2017 23:20:31] doRemoveStatements

[06/07/2017 23:20:31] doRemoveThing

[06/07/2017 23:20:32] doRevertIp

[06/07/2017 23:20:32] doSaveServer

[06/07/2017 23:20:32] doSendAnimatedText

[06/07/2017 23:20:32] doSendDistanceShoot

[06/07/2017 23:20:32] doSendMagicEffect

[06/07/2017 23:20:32] doSendTutorial

[06/07/2017 23:20:32] doSetCreatureDropLoot

[06/07/2017 23:20:32] doSetCreatureLight

[06/07/2017 23:20:32] doSetCreatureOutfit

[06/07/2017 23:20:32] doSetGameState

[06/07/2017 23:20:32] doSetItemActionId

[06/07/2017 23:20:32] doSetItemOutfit

[06/07/2017 23:20:32] doSetItemText

[06/07/2017 23:20:33] doSetMonsterOutfit

[06/07/2017 23:20:33] doSetStorage

[06/07/2017 23:20:33] doShowTextDialog

[06/07/2017 23:20:33] doShutdown

[06/07/2017 23:20:33] doSummonCreature

[06/07/2017 23:20:33] doSummonMonster

[06/07/2017 23:20:33] doTargetCombatCondition

[06/07/2017 23:20:33] doTargetCombatDispel

[06/07/2017 23:20:33] doTargetCombatHealth

[06/07/2017 23:20:33] doTargetCombatMana

[06/07/2017 23:20:33] doTeleportThing

[06/07/2017 23:20:33] doTileAddItemEx

[06/07/2017 23:20:33] doTileQueryAdd

[06/07/2017 23:20:33] doTransformItem

[06/07/2017 23:20:34] doUpdateHouseAuctions

[06/07/2017 23:20:34] doWaypointAddTemporial

[06/07/2017 23:20:34] doWriteLogFile

[06/07/2017 23:20:34] dodirectory

[06/07/2017 23:20:34] dofile

[06/07/2017 23:20:34] domodlib

[06/07/2017 23:20:34] doors
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1209
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1210
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1212
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1213
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1219
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1221
[06/07/2017 23:20:34]     
[06/07/2017 23:20:34] 1231
[06/07/2017 23:20:34]     
[06/07/2017 23:20:35] 1232
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1234
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1235
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1237
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1239
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1249
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1250
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1252
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1253
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1539
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 1541
[06/07/2017 23:20:35]     
[06/07/2017 23:20:35] 3535
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 3536
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 3538
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 3544
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 3545
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 3547
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 4913
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 4914
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 4916
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 4917
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 5082
[06/07/2017 23:20:36]     
[06/07/2017 23:20:36] 5084
[06/07/2017 23:20:36]     
[06/07/2017 23:20:37] 5098
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5099
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5101
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5107
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5108
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5110
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5116
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5117
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5119
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5125
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5126
[06/07/2017 23:20:37]     
[06/07/2017 23:20:37] 5128
[06/07/2017 23:20:37]     
[06/07/2017 23:20:38] 5134
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5135
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5137
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5138
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5140
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5141
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5143
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5144
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5278
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5279
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5281
[06/07/2017 23:20:38]     
[06/07/2017 23:20:38] 5282
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5284
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5286
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5515
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5517
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5732
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5733
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5735
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 5736
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 6192
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 6193
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 6195
[06/07/2017 23:20:39]     
[06/07/2017 23:20:39] 6196
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6198
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6200
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6249
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6250
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6252
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6253
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6255
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6257
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6795
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6797
[06/07/2017 23:20:40]     
[06/07/2017 23:20:40] 6799
[06/07/2017 23:20:40]     
[06/07/2017 23:20:41] 6801
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6891
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6892
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6894
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6900
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6901
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 6903
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 7033
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 7034
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 7036
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 7042
[06/07/2017 23:20:41]     
[06/07/2017 23:20:41] 7043
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 7045
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 7054
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 7056
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8541
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8542
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8544
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8545
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8547
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 8549
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 9165
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 9166
[06/07/2017 23:20:42]     
[06/07/2017 23:20:42] 9168
[06/07/2017 23:20:42]     
[06/07/2017 23:20:43] 9169
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9171
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9173
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9267
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9268
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9270
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9271
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9273
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 9275
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 10268
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 10269
[06/07/2017 23:20:43]     
[06/07/2017 23:20:43] 10271
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10272
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10274
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10276
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10468
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10469
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10471
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10477
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10478
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10480
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10774
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10775
[06/07/2017 23:20:44]     
[06/07/2017 23:20:44] 10779
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 10781
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 10783
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 10784
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 10788
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 10790

[06/07/2017 23:20:45] dump

[06/07/2017 23:20:45] enchantableGems
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 1
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 2
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 3
[06/07/2017 23:20:45]     
[06/07/2017 23:20:45] 4

[06/07/2017 23:20:46] enchantableItems
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 1
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 2
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 3
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 4
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 5
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 6
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 7
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 8
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 9
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 10
[06/07/2017 23:20:46]     
[06/07/2017 23:20:46] 11
[06/07/2017 23:20:46]     
[06/07/2017 23:20:47] 12
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 13
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 14
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 15
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 16
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 17
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 18

[06/07/2017 23:20:47] enchantedGems
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 1
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 2
[06/07/2017 23:20:47]     
[06/07/2017 23:20:47] 3
[06/07/2017 23:20:47]     
[06/07/2017 23:20:48] 4

[06/07/2017 23:20:48] enchantedItems
[06/07/2017 23:20:48]     
[06/07/2017 23:20:48] 2383
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 1
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 2
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 3
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 4
[06/07/2017 23:20:48]     
[06/07/2017 23:20:48] 2391
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 1
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 2
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 3
[06/07/2017 23:20:48]         
[06/07/2017 23:20:48] 4
[06/07/2017 23:20:48]     
[06/07/2017 23:20:49] 2423
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 1
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 2
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 3
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 4
[06/07/2017 23:20:49]     
[06/07/2017 23:20:49] 2429
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 1
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 2
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 3
[06/07/2017 23:20:49]         
[06/07/2017 23:20:49] 4
[06/07/2017 23:20:49]     
[06/07/2017 23:20:49] 2430
[06/07/2017 23:20:49]         
[06/07/2017 23:20:50] 1
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 2
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 3
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 4
[06/07/2017 23:20:50]     
[06/07/2017 23:20:50] 2445
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 1
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 2
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 3
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 4
[06/07/2017 23:20:50]     
[06/07/2017 23:20:50] 2454
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 1
[06/07/2017 23:20:50]         
[06/07/2017 23:20:50] 2
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 3
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 4
[06/07/2017 23:20:51]     
[06/07/2017 23:20:51] 2544
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 1
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 2
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 3
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 4
[06/07/2017 23:20:51]     
[06/07/2017 23:20:51] 7380
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 1
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 2
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 3
[06/07/2017 23:20:51]         
[06/07/2017 23:20:51] 4
[06/07/2017 23:20:52]     
[06/07/2017 23:20:52] 7383
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 1
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 2
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 3
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 4
[06/07/2017 23:20:52]     
[06/07/2017 23:20:52] 7384
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 1
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 2
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 3
[06/07/2017 23:20:52]         
[06/07/2017 23:20:52] 4
[06/07/2017 23:20:52]     
[06/07/2017 23:20:52] 7389
[06/07/2017 23:20:52]         
[06/07/2017 23:20:53] 1
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 2
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 3
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 4
[06/07/2017 23:20:53]     
[06/07/2017 23:20:53] 7392
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 1
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 2
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 3
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 4
[06/07/2017 23:20:53]     
[06/07/2017 23:20:53] 7402
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 1
[06/07/2017 23:20:53]         
[06/07/2017 23:20:53] 2
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 3
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 4
[06/07/2017 23:20:54]     
[06/07/2017 23:20:54] 7406
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 1
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 2
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 3
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 4
[06/07/2017 23:20:54]     
[06/07/2017 23:20:54] 7415
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 1
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 2
[06/07/2017 23:20:54]         
[06/07/2017 23:20:54] 3
[06/07/2017 23:20:54]         
[06/07/2017 23:20:55] 4
[06/07/2017 23:20:55]     
[06/07/2017 23:20:55] 8905
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 1
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 2
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 3
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 4

[06/07/2017 23:20:55] enchantingAltars
[06/07/2017 23:20:55]     
[06/07/2017 23:20:55] 1
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 1
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 2
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 3
[06/07/2017 23:20:55]         
[06/07/2017 23:20:55] 4
[06/07/2017 23:20:55]     
[06/07/2017 23:20:56] 2
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 1
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 2
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 3
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 4
[06/07/2017 23:20:56]     
[06/07/2017 23:20:56] 3
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 1
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 2
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 3
[06/07/2017 23:20:56]         
[06/07/2017 23:20:56] 4
[06/07/2017 23:20:56]     
[06/07/2017 23:20:56] 4
[06/07/2017 23:20:56]         
[06/07/2017 23:20:57] 1
[06/07/2017 23:20:57]         
[06/07/2017 23:20:57] 2
[06/07/2017 23:20:57]         
[06/07/2017 23:20:57] 3
[06/07/2017 23:20:57]         
[06/07/2017 23:20:57] 4

[06/07/2017 23:20:57] error

[06/07/2017 23:20:57] executeRaid

[06/07/2017 23:20:57] exhaustion
[06/07/2017 23:20:57]     
[06/07/2017 23:20:57] check
[06/07/2017 23:20:57]     
[06/07/2017 23:20:57] get
[06/07/2017 23:20:57]     
[06/07/2017 23:20:57] make
[06/07/2017 23:20:57]     
[06/07/2017 23:20:57] set

[06/07/2017 23:20:57] femaleOutfits
[06/07/2017 23:20:57]     
[06/07/2017 23:20:58] 1
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 2
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 3
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 4
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 5
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 6
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 7
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 8
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 9
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 10
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 11
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 12
[06/07/2017 23:20:58]     
[06/07/2017 23:20:58] 13
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 14
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 15
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 16
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 17
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 18
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 19
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 20
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 21
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 22
[06/07/2017 23:20:59]     
[06/07/2017 23:20:59] 23

[06/07/2017 23:20:59] gcinfo

[06/07/2017 23:20:59] getAccountByAccountId

[06/07/2017 23:21:00] getAccountByName

[06/07/2017 23:21:00] getAccountIdByAccount

[06/07/2017 23:21:00] getAccountIdByName

[06/07/2017 23:21:00] getAccountNumberByName

[06/07/2017 23:21:00] getAccountNumberByPlayerName

[06/07/2017 23:21:00] getArea

[06/07/2017 23:21:00] getArenaMonsterIdByName

[06/07/2017 23:21:00] getArticle

[06/07/2017 23:21:00] getBanAction

[06/07/2017 23:21:00] getBanData

[06/07/2017 23:21:00] getBanList

[06/07/2017 23:21:00] getBanReason

[06/07/2017 23:21:00] getBooleanFromString

[06/07/2017 23:21:01] getChannelUsers

[06/07/2017 23:21:01] getClosestFreeTile

[06/07/2017 23:21:01] getConfigFile

[06/07/2017 23:21:01] getConfigInfo

[06/07/2017 23:21:01] getConfigValue

[06/07/2017 23:21:01] getContainerCap

[06/07/2017 23:21:01] getContainerCapById

[06/07/2017 23:21:01] getContainerItem

[06/07/2017 23:21:01] getContainerSize

[06/07/2017 23:21:01] getCreatureBaseSpeed

[06/07/2017 23:21:01] getCreatureByName

[06/07/2017 23:21:01] getCreatureCondition

[06/07/2017 23:21:01] getCreatureHealth

[06/07/2017 23:21:01] getCreatureHideHealth

[06/07/2017 23:21:01] getCreatureLastPosition

[06/07/2017 23:21:02] getCreatureLookDir

[06/07/2017 23:21:02] getCreatureLookDirection

[06/07/2017 23:21:02] getCreatureLookPosition

[06/07/2017 23:21:02] getCreatureMana

[06/07/2017 23:21:02] getCreatureMaster

[06/07/2017 23:21:02] getCreatureMaxHealth

[06/07/2017 23:21:02] getCreatureMaxMana

[06/07/2017 23:21:02] getCreatureName

[06/07/2017 23:21:02] getCreatureNoMove

[06/07/2017 23:21:02] getCreatureOutfit

[06/07/2017 23:21:02] getCreaturePos

[06/07/2017 23:21:02] getCreaturePosition

[06/07/2017 23:21:02] getCreatureSkull

[06/07/2017 23:21:02] getCreatureSkullType

[06/07/2017 23:21:02] getCreatureSpeakType

[06/07/2017 23:21:03] getCreatureSpeed

[06/07/2017 23:21:03] getCreatureStorage

[06/07/2017 23:21:03] getCreatureSummons

[06/07/2017 23:21:03] getCreatureTarget

[06/07/2017 23:21:03] getCreaturesInRange

[06/07/2017 23:21:03] getDataDir

[06/07/2017 23:21:03] getDepotId

[06/07/2017 23:21:03] getDirectionTo

[06/07/2017 23:21:03] getDistanceBetween

[06/07/2017 23:21:03] getExperienceForLevel

[06/07/2017 23:21:03] getExperienceStage

[06/07/2017 23:21:03] getExperienceStageList

[06/07/2017 23:21:03] getFluidSourceType

[06/07/2017 23:21:03] getGameState

[06/07/2017 23:21:04] getGlobalStorageValue

[06/07/2017 23:21:04] getGroupInfo

[06/07/2017 23:21:04] getGuildId

[06/07/2017 23:21:04] getGuildMotd

[06/07/2017 23:21:04] getHighscoreString

[06/07/2017 23:21:04] getHouseAccessList

[06/07/2017 23:21:04] getHouseByPlayerGUID

[06/07/2017 23:21:04] getHouseEntry

[06/07/2017 23:21:04] getHouseFromPos

[06/07/2017 23:21:04] getHouseInfo

[06/07/2017 23:21:04] getHouseName

[06/07/2017 23:21:04] getHouseOwner

[06/07/2017 23:21:04] getHousePrice

[06/07/2017 23:21:04] getHouseRent

[06/07/2017 23:21:05] getHouseTilesCount

[06/07/2017 23:21:05] getHouseTown

[06/07/2017 23:21:05] getIPByName

[06/07/2017 23:21:05] getIPByPlayerName

[06/07/2017 23:21:05] getInstantSpellInfo

[06/07/2017 23:21:05] getIpByName

[06/07/2017 23:21:05] getItemArticle

[06/07/2017 23:21:05] getItemArticleById

[06/07/2017 23:21:05] getItemAttribute

[06/07/2017 23:21:05] getItemDate

[06/07/2017 23:21:05] getItemDescriptions

[06/07/2017 23:21:05] getItemDescriptionsById

[06/07/2017 23:21:05] getItemIdByName

[06/07/2017 23:21:05] getItemInfo

[06/07/2017 23:21:05] getItemLevelDoor

[06/07/2017 23:21:06] getItemName

[06/07/2017 23:21:06] getItemNameById

[06/07/2017 23:21:06] getItemPluralName

[06/07/2017 23:21:06] getItemPluralNameById

[06/07/2017 23:21:06] getItemRWInfo

[06/07/2017 23:21:06] getItemSpecialDescription

[06/07/2017 23:21:06] getItemText

[06/07/2017 23:21:06] getItemWeaponType

[06/07/2017 23:21:06] getItemWeight

[06/07/2017 23:21:06] getItemWeightById

[06/07/2017 23:21:06] getItemWriter

[06/07/2017 23:21:06] getLogsDir

[06/07/2017 23:21:06] getModList

[06/07/2017 23:21:06] getMonsterAttackSpells

[06/07/2017 23:21:06] getMonsterFriendList

[06/07/2017 23:21:07] getMonsterHealingSpells

[06/07/2017 23:21:07] getMonsterInfo

[06/07/2017 23:21:07] getMonsterLootList

[06/07/2017 23:21:07] getMonsterSummonList

[06/07/2017 23:21:07] getMonsterTargetList

[06/07/2017 23:21:07] getMonthDayEnding

[06/07/2017 23:21:07] getMonthString

[06/07/2017 23:21:07] getNotationsCount

[06/07/2017 23:21:07] getOnlinePlayers

[06/07/2017 23:21:07] getPartyLeader

[06/07/2017 23:21:07] getPartyMembers

[06/07/2017 23:21:07] getPlayerAccess

[06/07/2017 23:21:07] getPlayerAccount

[06/07/2017 23:21:07] getPlayerAccountId

[06/07/2017 23:21:08] getPlayerAccountManager

[06/07/2017 23:21:08] getPlayerBalance

[06/07/2017 23:21:08] getPlayerBlessing

[06/07/2017 23:21:08] getPlayerByGUID

[06/07/2017 23:21:08] getPlayerByName

[06/07/2017 23:21:08] getPlayerByNameWildcard

[06/07/2017 23:21:08] getPlayerCustomFlagValue

[06/07/2017 23:21:08] getPlayerDepotItems

[06/07/2017 23:21:08] getPlayerExperience

[06/07/2017 23:21:08] getPlayerFlagValue

[06/07/2017 23:21:08] getPlayerFood

[06/07/2017 23:21:08] getPlayerFreeCap

[06/07/2017 23:21:08] getPlayerGUID

[06/07/2017 23:21:08] getPlayerGUIDByName

[06/07/2017 23:21:09] getPlayerGhostAccess

[06/07/2017 23:21:09] getPlayerGroupId

[06/07/2017 23:21:09] getPlayerGroupName

[06/07/2017 23:21:09] getPlayerGuildId

[06/07/2017 23:21:09] getPlayerGuildLevel

[06/07/2017 23:21:09] getPlayerGuildName

[06/07/2017 23:21:09] getPlayerGuildNick

[06/07/2017 23:21:09] getPlayerGuildRank

[06/07/2017 23:21:09] getPlayerGuildRankId

[06/07/2017 23:21:09] getPlayerIdleTime

[06/07/2017 23:21:09] getPlayerInstantSpellCount

[06/07/2017 23:21:09] getPlayerInstantSpellInfo

[06/07/2017 23:21:09] getPlayerIp

[06/07/2017 23:21:09] getPlayerItemById

[06/07/2017 23:21:10] getPlayerItemCount

[06/07/2017 23:21:10] getPlayerLastLoad

[06/07/2017 23:21:10] getPlayerLastLogin

[06/07/2017 23:21:10] getPlayerLastLoginSaved

[06/07/2017 23:21:10] getPlayerLearnedInstantSpell

[06/07/2017 23:21:10] getPlayerLevel

[06/07/2017 23:21:10] getPlayerLight

[06/07/2017 23:21:10] getPlayerLookDir

[06/07/2017 23:21:10] getPlayerLookDirection

[06/07/2017 23:21:10] getPlayerLookPos

[06/07/2017 23:21:10] getPlayerLossPercent

[06/07/2017 23:21:10] getPlayerLossSkill

[06/07/2017 23:21:10] getPlayerMagLevel

[06/07/2017 23:21:10] getPlayerMana

[06/07/2017 23:21:11] getPlayerMasterPos

[06/07/2017 23:21:11] getPlayerMaxMana

[06/07/2017 23:21:11] getPlayerMoney

[06/07/2017 23:21:11] getPlayerName

[06/07/2017 23:21:11] getPlayerNameByGUID

[06/07/2017 23:21:11] getPlayerNameDescription

[06/07/2017 23:21:11] getPlayerNoMove

[06/07/2017 23:21:11] getPlayerPartner

[06/07/2017 23:21:11] getPlayerParty

[06/07/2017 23:21:11] getPlayerPosition

[06/07/2017 23:21:11] getPlayerPremiumDays

[06/07/2017 23:21:11] getPlayerPromotionLevel

[06/07/2017 23:21:11] getPlayerRates

[06/07/2017 23:21:11] getPlayerRequiredMana

[06/07/2017 23:21:12] getPlayerRequiredSkillTries

[06/07/2017 23:21:12] getPlayerSex

[06/07/2017 23:21:12] getPlayerSkill

[06/07/2017 23:21:12] getPlayerSkillLevel

[06/07/2017 23:21:12] getPlayerSkillTries

[06/07/2017 23:21:12] getPlayerSkullEnd

[06/07/2017 23:21:12] getPlayerSkullType

[06/07/2017 23:21:12] getPlayerSlotItem

[06/07/2017 23:21:12] getPlayerSoul

[06/07/2017 23:21:12] getPlayerSpecialDescription

[06/07/2017 23:21:12] getPlayerSpentMana

[06/07/2017 23:21:12] getPlayerStamina

[06/07/2017 23:21:12] getPlayerStorageValue

[06/07/2017 23:21:12] getPlayerTown

[06/07/2017 23:21:13] getPlayerVocation

[06/07/2017 23:21:13] getPlayerVocationName

[06/07/2017 23:21:13] getPlayerWeapon

[06/07/2017 23:21:13] getPlayersByAccountId

[06/07/2017 23:21:13] getPlayersByAccountNumber

[06/07/2017 23:21:13] getPlayersByIP

[06/07/2017 23:21:13] getPlayersByIPNumber

[06/07/2017 23:21:13] getPlayersByIp

[06/07/2017 23:21:13] getPlayersOnline

[06/07/2017 23:21:13] getPosByDir

[06/07/2017 23:21:13] getPositionByDirection

[06/07/2017 23:21:13] getPromotedVocation

[06/07/2017 23:21:13] getSearchString

[06/07/2017 23:21:14] getSpectators

[06/07/2017 23:21:14] getStatementsCount

[06/07/2017 23:21:14] getStorage

[06/07/2017 23:21:14] getTalkActionList

[06/07/2017 23:21:14] getThing

[06/07/2017 23:21:14] getThingFromPos

[06/07/2017 23:21:14] getThingPos

[06/07/2017 23:21:14] getThingPosition

[06/07/2017 23:21:14] getThingfromPos

[06/07/2017 23:21:14] getTibiaTime

[06/07/2017 23:21:14] getTileHouseInfo

[06/07/2017 23:21:14] getTileInfo

[06/07/2017 23:21:14] getTileItemById

[06/07/2017 23:21:14] getTileItemByType

[06/07/2017 23:21:15] getTilePzInfo

[06/07/2017 23:21:15] getTileThingByPos

[06/07/2017 23:21:15] getTileZoneInfo

[06/07/2017 23:21:15] getTopCreature

[06/07/2017 23:21:15] getTownHouses

[06/07/2017 23:21:15] getTownId

[06/07/2017 23:21:15] getTownName

[06/07/2017 23:21:15] getTownTemplePosition

[06/07/2017 23:21:15] getVocationInfo

[06/07/2017 23:21:15] getWaypointList

[06/07/2017 23:21:15] getWaypointPosition

[06/07/2017 23:21:15] getWaypointsList

[06/07/2017 23:21:15] getWorldCreatures

[06/07/2017 23:21:15] getWorldLight

[06/07/2017 23:21:16] getWorldTime

[06/07/2017 23:21:16] getWorldType

[06/07/2017 23:21:16] getWorldUpTime

[06/07/2017 23:21:16] getfenv

[06/07/2017 23:21:16] getmetatable

[06/07/2017 23:21:16] hasClient

[06/07/2017 23:21:16] hasCondition

[06/07/2017 23:21:16] hasItemProperty

[06/07/2017 23:21:16] hasPlayerClient

[06/07/2017 23:21:16] hasProperty

[06/07/2017 23:21:16] horizontalOpenDoors
[06/07/2017 23:21:16]     
[06/07/2017 23:21:16] 1
[06/07/2017 23:21:16]     
[06/07/2017 23:21:16] 2
[06/07/2017 23:21:16]     
[06/07/2017 23:21:16] 3
[06/07/2017 23:21:16]     
[06/07/2017 23:21:17] 4
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 5
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 6
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 7
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 8
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 9
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 10
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 11
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 12
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 13
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 14
[06/07/2017 23:21:17]     
[06/07/2017 23:21:17] 15
[06/07/2017 23:21:17]     
[06/07/2017 23:21:18] 16
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 17
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 18
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 19
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 20
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 21
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 22
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 23
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 24
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 25
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 26
[06/07/2017 23:21:18]     
[06/07/2017 23:21:18] 27
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 28
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 29
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 30
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 31
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 32
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 33
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 34
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 35
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 36
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 37
[06/07/2017 23:21:19]     
[06/07/2017 23:21:19] 38
[06/07/2017 23:21:19]     
[06/07/2017 23:21:20] 39
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 40
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 41
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 42
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 43
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 44
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 45
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 46
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 47
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 48
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 49
[06/07/2017 23:21:20]     
[06/07/2017 23:21:20] 50
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 51
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 52
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 53
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 54
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 55
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 56
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 57
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 58
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 59
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 60
[06/07/2017 23:21:21]     
[06/07/2017 23:21:21] 61
[06/07/2017 23:21:21]     
[06/07/2017 23:21:22] 62
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 63
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 64
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 65
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 66
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 67
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 68
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 69
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 70
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 71
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 72
[06/07/2017 23:21:22]     
[06/07/2017 23:21:22] 73
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] 74

[06/07/2017 23:21:23] io
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] close
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] flush
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] input
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] lines
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] open
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] output
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] popen
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] read
[06/07/2017 23:21:23]     
[06/07/2017 23:21:23] stderr
[06/07/2017 23:21:24]     
[06/07/2017 23:21:24] stdin
[06/07/2017 23:21:24]     
[06/07/2017 23:21:24] stdout
[06/07/2017 23:21:24]     
[06/07/2017 23:21:24] tmpfile
[06/07/2017 23:21:24]     
[06/07/2017 23:21:24] type
[06/07/2017 23:21:24]     
[06/07/2017 23:21:24] write

[06/07/2017 23:21:24] ipairs

[06/07/2017 23:21:24] isAccountBanished

[06/07/2017 23:21:24] isContainer

[06/07/2017 23:21:24] isCorpse

[06/07/2017 23:21:24] isCreature

[06/07/2017 23:21:24] isDruid

[06/07/2017 23:21:25] isInArea

[06/07/2017 23:21:25] isInArray

[06/07/2017 23:21:25] isInParty

[06/07/2017 23:21:25] isInRange

[06/07/2017 23:21:25] isIpBanished

[06/07/2017 23:21:25] isItemContainer

[06/07/2017 23:21:25] isItemDoor

[06/07/2017 23:21:25] isItemFluidContainer

[06/07/2017 23:21:25] isItemMovable

[06/07/2017 23:21:25] isItemMoveable

[06/07/2017 23:21:25] isItemRune

[06/07/2017 23:21:25] isItemStackable

[06/07/2017 23:21:25] isKnight

[06/07/2017 23:21:25] isMonster

[06/07/2017 23:21:26] isMovable

[06/07/2017 23:21:26] isMoveable

[06/07/2017 23:21:26] isNpc

[06/07/2017 23:21:26] isPaladin

[06/07/2017 23:21:26] isPlayer

[06/07/2017 23:21:26] isPlayerBanished

[06/07/2017 23:21:26] isPlayerGhost

[06/07/2017 23:21:26] isPlayerPzLocked

[06/07/2017 23:21:26] isPlayerSaving

[06/07/2017 23:21:26] isPremium

[06/07/2017 23:21:26] isPrivateChannel

[06/07/2017 23:21:26] isRookie

[06/07/2017 23:21:26] isSightClear

[06/07/2017 23:21:27] isSorcerer

[06/07/2017 23:21:27] keys
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 1
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 2
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 3
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 4
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 5
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 6
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 7
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 8
[06/07/2017 23:21:27]     
[06/07/2017 23:21:27] 9

[06/07/2017 23:21:27] load

[06/07/2017 23:21:27] loadfile

[06/07/2017 23:21:28] loadmodlib

[06/07/2017 23:21:28] loadstring

[06/07/2017 23:21:28] maleOutfits
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 1
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 2
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 3
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 4
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 5
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 6
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 7
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 8
[06/07/2017 23:21:28]     
[06/07/2017 23:21:28] 9
[06/07/2017 23:21:28]     
[06/07/2017 23:21:29] 10
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 11
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 12
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 13
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 14
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 15
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 16
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 17
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 18
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 19
[06/07/2017 23:21:29]     
[06/07/2017 23:21:29] 20
[06/07/2017 23:21:29]     
[06/07/2017 23:21:30] 21
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] 22
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] 23

[06/07/2017 23:21:30] math
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] abs
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] acos
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] asin
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] atan
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] atan2
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] ceil
[06/07/2017 23:21:30]     
[06/07/2017 23:21:30] cos
[06/07/2017 23:21:30]     
[06/07/2017 23:21:31] cosh
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] deg
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] exp
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] floor
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] fmod
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] frexp
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] huge
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] ldexp
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] log
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] log10
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] max
[06/07/2017 23:21:31]     
[06/07/2017 23:21:31] min
[06/07/2017 23:21:31]     
[06/07/2017 23:21:32] mod
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] modf
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] pi
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] pow
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] rad
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] random
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] randomseed
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] sin
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] sinh
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] sqrt
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] tan
[06/07/2017 23:21:32]     
[06/07/2017 23:21:32] tanh

[06/07/2017 23:21:33] mayNotMove

[06/07/2017 23:21:33] module

[06/07/2017 23:21:33] newproxy

[06/07/2017 23:21:33] next

[06/07/2017 23:21:33] numberToVariant

[06/07/2017 23:21:33] os
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] clock
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] date
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] difftime
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] execute
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] exit
[06/07/2017 23:21:33]     
[06/07/2017 23:21:33] getenv
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] remove
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] rename
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] setlocale
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] time
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] tmpname

[06/07/2017 23:21:34] package
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] config
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] cpath
[06/07/2017 23:21:34]     
[06/07/2017 23:21:34] loaded
[06/07/2017 23:21:34]         
[06/07/2017 23:21:34] _G
[06/07/2017 23:21:34]         
[06/07/2017 23:21:34] bit
[06/07/2017 23:21:34]         
[06/07/2017 23:21:34] coroutine
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] db
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] debug
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] io
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] math
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] os
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] package
[06/07/2017 23:21:35]         
[06/07/2017 23:21:35] result
[06/07/2017 23:21:35]             
[06/07/2017 23:21:35] free
[06/07/2017 23:21:35]             
[06/07/2017 23:21:35] getDataInt
[06/07/2017 23:21:35]             
[06/07/2017 23:21:35] getDataLong
[06/07/2017 23:21:35]             
[06/07/2017 23:21:35] getDataStream
[06/07/2017 23:21:35]             
[06/07/2017 23:21:35] getDataString
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] next
[06/07/2017 23:21:36]         
[06/07/2017 23:21:36] std
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] cerr
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] clog
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] cout
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] md5
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] sha1
[06/07/2017 23:21:36]         
[06/07/2017 23:21:36] string
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] byte
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] char
[06/07/2017 23:21:36]             
[06/07/2017 23:21:36] dump
[06/07/2017 23:21:36]             
[06/07/2017 23:21:37] expand
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] explode
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] find
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] format
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] gfind
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] gmatch
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] gsub
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] len
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] lower
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] match
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] rep
[06/07/2017 23:21:37]             
[06/07/2017 23:21:37] reverse
[06/07/2017 23:21:37]             
[06/07/2017 23:21:38] split
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] sub
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] timediff
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] trim
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] upper
[06/07/2017 23:21:38]         
[06/07/2017 23:21:38] table
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] concat
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] contains
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] count
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] countElements
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] find
[06/07/2017 23:21:38]             
[06/07/2017 23:21:38] foreach
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] foreachi
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] getCombinations
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] getPos
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] getn
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] insert
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] isStrIn
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] maxn
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] remove
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] setn
[06/07/2017 23:21:39]             
[06/07/2017 23:21:39] sort
[06/07/2017 23:21:39]     
[06/07/2017 23:21:40] loaders
[06/07/2017 23:21:40]         
[06/07/2017 23:21:40] 1
[06/07/2017 23:21:40]         
[06/07/2017 23:21:40] 2
[06/07/2017 23:21:40]         
[06/07/2017 23:21:40] 3
[06/07/2017 23:21:40]         
[06/07/2017 23:21:40] 4
[06/07/2017 23:21:40]     
[06/07/2017 23:21:40] loadlib
[06/07/2017 23:21:40]     
[06/07/2017 23:21:40] path
[06/07/2017 23:21:40]     
[06/07/2017 23:21:40] preload
[06/07/2017 23:21:40]     
[06/07/2017 23:21:40] seeall

[06/07/2017 23:21:40] pairs

[06/07/2017 23:21:40] pay

[06/07/2017 23:21:40] pcall

[06/07/2017 23:21:41] playerExists

[06/07/2017 23:21:41] playerLearnInstantSpell

[06/07/2017 23:21:41] positionToVariant

[06/07/2017 23:21:41] prepareClean

[06/07/2017 23:21:41] prepareShutdown

[06/07/2017 23:21:41] print

[06/07/2017 23:21:41] queryTileAddThing

[06/07/2017 23:21:41] rawequal

[06/07/2017 23:21:41] rawget

[06/07/2017 23:21:41] rawset

[06/07/2017 23:21:41] registerCreatureEvent

[06/07/2017 23:21:41] require

[06/07/2017 23:21:42] result

[06/07/2017 23:21:42] runThread

[06/07/2017 23:21:42] save

[06/07/2017 23:21:42] saveServer

[06/07/2017 23:21:42] select

[06/07/2017 23:21:42] setAttackFormula

[06/07/2017 23:21:42] setCombatArea

[06/07/2017 23:21:42] setCombatCallback

[06/07/2017 23:21:42] setCombatCondition

[06/07/2017 23:21:42] setCombatFormula

[06/07/2017 23:21:42] setCombatParam

[06/07/2017 23:21:42] setConditionFormula

[06/07/2017 23:21:42] setConditionParam

[06/07/2017 23:21:42] setCreatureMaxHealth

[06/07/2017 23:21:42] setCreatureMaxMana

[06/07/2017 23:21:43] setGlobalStorageValue

[06/07/2017 23:21:43] setHealingFormula

[06/07/2017 23:21:43] setHouseAccessList

[06/07/2017 23:21:43] setHouseOwner

[06/07/2017 23:21:43] setPlayerBalance

[06/07/2017 23:21:43] setPlayerGroupId

[06/07/2017 23:21:43] setPlayerPartner

[06/07/2017 23:21:43] setPlayerPromotionLevel

[06/07/2017 23:21:43] setPlayerStamina

[06/07/2017 23:21:43] setPlayerStorageValue

[06/07/2017 23:21:43] setWorldType

[06/07/2017 23:21:43] setfenv

[06/07/2017 23:21:43] setmetatable

[06/07/2017 23:21:43] shutdown

[06/07/2017 23:21:44] specialDoors
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 1
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 2
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 3
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 4
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 5
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 6
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 7
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 8
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 9
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 10
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 11
[06/07/2017 23:21:44]     
[06/07/2017 23:21:44] 12
[06/07/2017 23:21:44]     
[06/07/2017 23:21:45] 13
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 14
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 15
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 16
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 17
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 18
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 19
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 20
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 21
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 22
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 23
[06/07/2017 23:21:45]     
[06/07/2017 23:21:45] 24
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 25
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 26
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 27
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 28
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 29
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 30
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 31
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 32
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 33
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 34
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 35
[06/07/2017 23:21:46]     
[06/07/2017 23:21:46] 36

[06/07/2017 23:21:47] std

[06/07/2017 23:21:47] stopEvent

[06/07/2017 23:21:47] string

[06/07/2017 23:21:47] stringToVariant

[06/07/2017 23:21:47] table

[06/07/2017 23:21:47] targetPositionToVariant

[06/07/2017 23:21:47] tasks
[06/07/2017 23:21:47]     
[06/07/2017 23:21:47] behemoth
[06/07/2017 23:21:47]         
[06/07/2017 23:21:47] amount
[06/07/2017 23:21:47]         
[06/07/2017 23:21:47] storage
[06/07/2017 23:21:47]     
[06/07/2017 23:21:48] carniphila
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] amount
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] storage
[06/07/2017 23:21:48]     
[06/07/2017 23:21:48] crocodile
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] amount
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] storage
[06/07/2017 23:21:48]     
[06/07/2017 23:21:48] demon
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] amount
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] storage
[06/07/2017 23:21:48]     
[06/07/2017 23:21:48] earth elemental
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] amount
[06/07/2017 23:21:48]         
[06/07/2017 23:21:48] storage
[06/07/2017 23:21:49]     
[06/07/2017 23:21:49] energy elemental
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] amount
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] storage
[06/07/2017 23:21:49]     
[06/07/2017 23:21:49] fire elemental
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] amount
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] storage
[06/07/2017 23:21:49]     
[06/07/2017 23:21:49] giant spider
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] amount
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] storage
[06/07/2017 23:21:49]     
[06/07/2017 23:21:49] hydra
[06/07/2017 23:21:49]         
[06/07/2017 23:21:49] amount
[06/07/2017 23:21:49]         
[06/07/2017 23:21:50] storage
[06/07/2017 23:21:50]     
[06/07/2017 23:21:50] ice golem
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] amount
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] storage
[06/07/2017 23:21:50]     
[06/07/2017 23:21:50] mammoth
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] amount
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] storage
[06/07/2017 23:21:50]     
[06/07/2017 23:21:50] massive earth elemental
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] amount
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] storage
[06/07/2017 23:21:50]     
[06/07/2017 23:21:50] massive energy elemental
[06/07/2017 23:21:50]         
[06/07/2017 23:21:50] amount
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] storage
[06/07/2017 23:21:51]     
[06/07/2017 23:21:51] massive fire elemental
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] amount
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] storage
[06/07/2017 23:21:51]     
[06/07/2017 23:21:51] massive water elemental
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] amount
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] storage
[06/07/2017 23:21:51]     
[06/07/2017 23:21:51] minotaur
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] amount
[06/07/2017 23:21:51]         
[06/07/2017 23:21:51] storage
[06/07/2017 23:21:51]     
[06/07/2017 23:21:51] minotaur archer
[06/07/2017 23:21:51]         
[06/07/2017 23:21:52] amount
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] storage
[06/07/2017 23:21:52]     
[06/07/2017 23:21:52] minotaur guard
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] amount
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] storage
[06/07/2017 23:21:52]     
[06/07/2017 23:21:52] minotaur mage
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] amount
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] storage
[06/07/2017 23:21:52]     
[06/07/2017 23:21:52] mutated rat
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] amount
[06/07/2017 23:21:52]         
[06/07/2017 23:21:52] storage
[06/07/2017 23:21:53]     
[06/07/2017 23:21:53] necromancer
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] amount
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] storage
[06/07/2017 23:21:53]     
[06/07/2017 23:21:53] pirate buccaneer
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] amount
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] storage
[06/07/2017 23:21:53]     
[06/07/2017 23:21:53] pirate corsair
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] amount
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] storage
[06/07/2017 23:21:53]     
[06/07/2017 23:21:53] pirate cutthroat
[06/07/2017 23:21:53]         
[06/07/2017 23:21:53] amount
[06/07/2017 23:21:53]         
[06/07/2017 23:21:54] storage
[06/07/2017 23:21:54]     
[06/07/2017 23:21:54] pirate ghost
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] amount
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] storage
[06/07/2017 23:21:54]     
[06/07/2017 23:21:54] pirate marauder
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] amount
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] storage
[06/07/2017 23:21:54]     
[06/07/2017 23:21:54] pirate skeleton
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] amount
[06/07/2017 23:21:54]         
[06/07/2017 23:21:54] storage
[06/07/2017 23:21:54]     
[06/07/2017 23:21:54] priestess
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] amount
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] storage
[06/07/2017 23:21:55]     
[06/07/2017 23:21:55] quara constrictor
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] amount
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] storage
[06/07/2017 23:21:55]     
[06/07/2017 23:21:55] quara constrictor scout
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] amount
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] storage
[06/07/2017 23:21:55]     
[06/07/2017 23:21:55] quara hydromancer
[06/07/2017 23:21:55]         
[06/07/2017 23:21:55] amount
[06/07/2017 23:21:55]         
[06/07/2017 23:21:56] storage
[06/07/2017 23:21:56]     
[06/07/2017 23:21:56] quara hydromancer scout
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] amount
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] storage
[06/07/2017 23:21:56]     
[06/07/2017 23:21:56] quara mantassin
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] amount
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] storage
[06/07/2017 23:21:56]     
[06/07/2017 23:21:56] quara mantassin scout
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] amount
[06/07/2017 23:21:56]         
[06/07/2017 23:21:56] storage
[06/07/2017 23:21:56]     
[06/07/2017 23:21:56] quara pincher
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] amount
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] storage
[06/07/2017 23:21:57]     
[06/07/2017 23:21:57] quara pincher scout
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] amount
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] storage
[06/07/2017 23:21:57]     
[06/07/2017 23:21:57] quara predator
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] amount
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] storage
[06/07/2017 23:21:57]     
[06/07/2017 23:21:57] quara predator scout
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] amount
[06/07/2017 23:21:57]         
[06/07/2017 23:21:57] storage
[06/07/2017 23:21:58]     
[06/07/2017 23:21:58] sea serpent
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] amount
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] storage
[06/07/2017 23:21:58]     
[06/07/2017 23:21:58] serpent spawn
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] amount
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] storage
[06/07/2017 23:21:58]     
[06/07/2017 23:21:58] stone golem
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] amount
[06/07/2017 23:21:58]         
[06/07/2017 23:21:58] storage
[06/07/2017 23:21:58]     
[06/07/2017 23:21:58] tarantula
[06/07/2017 23:21:59]         
[06/07/2017 23:21:59] amount
[06/07/2017 23:21:59]         
[06/07/2017 23:21:59] storage
[06/07/2017 23:21:59]     
[06/07/2017 23:21:59] water elemental
[06/07/2017 23:21:59]         
[06/07/2017 23:21:59] amount
[06/07/2017 23:21:59]         
[06/07/2017 23:21:59] storage

[06/07/2017 23:21:59] tonumber

[06/07/2017 23:21:59] tostring

[06/07/2017 23:21:59] type

[06/07/2017 23:21:59] unpack

[06/07/2017 23:21:59] variantToNumber

[06/07/2017 23:22:00] variantToPosition

[06/07/2017 23:22:00] variantToString

[06/07/2017 23:22:00] verticalOpenDoors
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 1
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 2
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 3
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 4
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 5
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 6
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 7
[06/07/2017 23:22:00]     
[06/07/2017 23:22:00] 8
[06/07/2017 23:22:00]     
[06/07/2017 23:22:01] 9
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 10
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 11
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 12
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 13
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 14
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 15
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 16
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 17
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 18
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 19
[06/07/2017 23:22:01]     
[06/07/2017 23:22:01] 20
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 21
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 22
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 23
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 24
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 25
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 26
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 27
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 28
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 29
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 30
[06/07/2017 23:22:02]     
[06/07/2017 23:22:02] 31
[06/07/2017 23:22:02]     
[06/07/2017 23:22:03] 32
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 33
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 34
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 35
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 36
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 37
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 38
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 39
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 40
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 41
[06/07/2017 23:22:03]     
[06/07/2017 23:22:03] 42
[06/07/2017 23:22:03]     
[06/07/2017 23:22:04] 43
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 44
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 45
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 46
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 47
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 48
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 49
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 50
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 51
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 52
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 53
[06/07/2017 23:22:04]     
[06/07/2017 23:22:04] 54
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 55
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 56
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 57
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 58
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 59
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 60
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 61
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 62
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 63
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 64
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 65
[06/07/2017 23:22:05]     
[06/07/2017 23:22:05] 66
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 67
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 68
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 69
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 70
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 71
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 72
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 73
[06/07/2017 23:22:06]     
[06/07/2017 23:22:06] 74

[06/07/2017 23:22:06] wait

[06/07/2017 23:22:06] xpcall
[06/07/2017 23:22:07] Teste has logged out.

 

e agora, oq devo fazer?

Link para o post
Compartilhar em outros sites

lol, não imaginei que ele ia retornar tanta coisa auhauh mas enfim, é db.query mesmo, agora o porquê não tá funcionando eu não sei ;~

tenta usar essa versão aqui, peguei do Mock. É em tese a mesma coisa que aquele acima porém aqui ele filtra as coisas q n deveriam ter aparecido e escreve num arquivo pra não foder seu servidor.

 

Spoiler

string.trim = function (str)
     return str:gsub("^%s*(.-)%s*$", "%1")
end

function isInArray(t, v, c)
    v = (c ~= nil and string.lower(v)) or v
    if type(t) == "table" and v ~= nil then
        for key, value in pairs(t) do
            value = (c ~= nil and string.lower(value)) or value
            if v == value then
                return 1
            end
        end
    end
    return -1
end
 
 
string.explode = function (str, sep, limit)
     if type(sep) ~= 'string' or isInArray({tostring(str):len(), sep:len()}, 0) then
         return {}
     end
 
     local i, pos, tmp, t = 0, 1, "", {}
     for s, e in function() return string.find(str, sep, pos) end do
         tmp = str:sub(pos, s - 1):trim()
         table.insert(t, tmp)
         pos = e + 1
 
         i = i + 1
         if limit ~= nil and i == limit then
             break
         end
     end
 
     tmp = str:sub(pos):trim()
     table.insert(t, tmp)
     return t
end
 

function getLuaFunctions()-- by Mock
	local str = ""
	for f,k in pairs(_G) do
		if type(k) == 'function' then
			str = str..f..','
		elseif type(k) == 'table' then
			for d,o in pairs(k) do
				if type(o) == 'function' then
					if f ~= '_G' and d ~= "_G" and f ~= 'package' then
						str = str..f.."."..d..','
					end
				elseif type(o) == 'table' then
					for m,n in pairs(o) do
						if type(n) == 'function' then
							if d == "_M" and m ~= "_M" and f ~= "_G" and f ~= 'package' then
								str = str..f.."."..m..","
							elseif f ~= '_G' and m ~= "_G" and d ~= "_G" and f ~= 'package' then
								str = str..f.."."..d..'.'..m..','
							end
						elseif type(n) == 'table' then
							for x,p in pairs(n) do
								if type(p) == 'function' then
									if m == "_M" and d ~= "_M" and f ~= "_G" and f ~= 'package' then
										str = str..f.."."..d..'.'..x..','
									elseif m == "_M" and d == "_M" and f ~= "_G" and f ~= 'package' then
										str = str..f.."."..x..','
									elseif m ~= "_M" and d == "_M" and f ~= "_G" and f ~= 'package' then
										str = str..f..'.'..m..'.'..x..','
									elseif f ~= '_G' and m ~= "_G" and d ~= "_G" and f ~= 'package' then
										str = str..f.."."..d..'.'..m..'.'..x..','
									end
								end
							end
						end
					end
				end
			end
		end
	end
	return string.explode(str,',')
end
 
local k = getLuaFunctions()
print(#k)
--- Create file content your server function list
local file__ = io.open('Your Server Function List.txt','w')
table.sort(k)
for i=1,#k do
    if k[i] ~= "" then
        file__:write((i-1)..' - '..k[i]..'\n')
    end
end
file__:close()

 


O arquivo vai aparecer na pasta do seu server.

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites
  • 3 weeks later...

sim

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites
  • 2 weeks later...

Olá @xWhiteWolf , eu estou tentando usar seu sistema de reset, porem está dando um erro.

uso TFs 1.3 versão do meu serve é 11.40.

 

estou usando esse script

Spoiler

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)

function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink()                  npcHandler:onThink()                  end

local config = {
    minlevel = 150, --- Level inical para resetar
    price = 10000, --- Preço inicial para resetar
    newlevel = 20, --- Level após reset
    priceByReset = 0, --- Preço acrescentado por reset
    percent = 10, ---- Porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total)
    maxresets = 10, ---- Maximo de resets
    levelbyreset = 0 --- Quanto de level vai precisar a mais no próximo reset 
}

local function getResets(uid)
    local player = Player(uid)
    local resets = 0
    if player then
        resets = math.max(0, player:getStorageValue(378378))
    end
return resets
end

local function addReset(uid)
    local player = Player(uid)
    if player then
        local resets = getResets(uid)
        local hp = player:getMaxHealth()
        local resethp = hp*(config.percent/100)
        player:setMaxHealth(resethp)
        local mana = player:getMaxMana()
        local resetmana = mana*(config.percent/100)
        player:setMaxMana(resetmana)
        local playerid = player:getGuid()
        player:remove() 
        db.query("UPDATE `players` SET `resets`=".. resets + 1 ..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
        db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
    end
    return true
end 

function creatureSayCallback(cid, type, msg)
    if not npcHandler:isFocused(cid) then
        return false
    end
    local player = Player(cid)
    local newPrice = config.price + (getResets(cid) * config.priceByReset)
    local newminlevel = config.minlevel + (getResets(cid) * config.levelbyreset)

    if msgcontains(msg, 'reset') then
        if getResets(cid) < config.maxresets then
            npcHandler:say('You want to reset your character? It will cost '..newPrice..' gp\'s!', cid)
            npcHandler.topic[cid] = 1
        else
            npcHandler:say('You already reached the maximum reset level!', cid)
        end
    elseif msgcontains(msg, 'yes') and npcHandler.topic[cid] == 1 then
        if player:getLevel() >= newminlevel then
            if player:removeMoney(newPrice) then
                addEvent(function()
                    if isPlayer(cid) then
                        addReset(cid)
                    end
                end, 3000)
                local number = getResets(cid)+1
                local msg ="---[Reset: "..number.."]-- You have reseted!  You'll be disconnected in 3 seconds."
                player:popupFYI(msg) 
                npcHandler.topic[cid] = 0
                npcHandler:releaseFocus(cid)
            else
                npcHandler:say('Its necessary to have at least '..newPrice..' gp\'s for reseting!', cid)
                npcHandler.topic[cid] = 0
            end
        else
            npcHandler:say('The minimum level for reseting is '..newminlevel..'!', cid)
            npcHandler.topic[cid] = 0
        end
    elseif(msgcontains(msg, 'no')) and isInArray({1}, npcHandler.topic[cid]) then
        npcHandler.topic[cid] = 0
        npcHandler:releaseFocus(cid)
        npcHandler:say('Ok.', cid)
    elseif msgcontains(msg, 'quantity') then
        npcHandler:say('You have a total of '..getResets(cid)..' reset(s).', cid)
        npcHandler.topic[cid] = 0
    end
    return true
end


npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new()) 

 

Está dando esse erro.

Spoiler

reset.thumb.jpg.b39749526482c30e8cfc414e1b253daf.jpg

 

Editado por Koring4 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

o problema é q vc tá tentando alterar a coluna 'resets' da tabela players no banco de dados e ele tá falando q nao existe esse campo resets
como era:
db.executeQuery("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")

como vc deixou:
 db.query("UPDATE `players` SET `resets`=".. resets + 1 ..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")

^-^

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites

@xWhiteWolf eu nem mudei nada, eu peguei o script que você posto na pagina 5 falando que que é a versão 1.2

mas em fim, eu troquei isso que você falo e deu outro erro.

 

Spoiler

5982b5212f308_reset2.jpg.423d4629d046d52b3fe0c0025cf928fb.jpg

ai depois eu troquei a linha 

db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")

por

db.executeQuery("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")

ai deu esse outro erro

Spoiler

reset3.jpg.4385469d8bcdfb8461c9dcfe0371e46a.jpg

 

 

OBS: eu não manjo muito, mas pensei em testa antes de vim pergunta novamente.

 

mas obrigado pela atenção.

Editado por Koring4 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

Esse sistema de reset, tem como fazer para voltarem para hp normal de cada vocação no level 8?

Link para o post
Compartilhar em outros sites
On 7/7/2014 at 4:12 PM, xWhiteWolf said:

   /\ this. Esse script reseta em relação a vida antiga pra evitar bugs mas se vc quiser fazer uma vida fixa é só editar nessas configurações aqui:


local hp = getCreatureMaxHealth(cid)
setCreatureMaxHealth(cid, 200)
local differencehp = (hp - 200)
doCreatureAddHealth(cid, -differencehp)
local mana = getCreatureMaxMana(cid)
setCreatureMaxMana(cid, 180)
local differencemana = (mana - 180)
doCreatureAddMana(cid, -differencemana)

 

 

 

17 hours ago, JcA said:

Esse sistema de reset, tem como fazer para voltarem para hp normal de cada vocação no level 8?

tu só precisa fazer a modificação acima só que considerando valores pra cada classe.

 

 

local keywordHandler = KeywordHandler:new()
local npcHandler = NpcHandler:new(keywordHandler)
NpcSystem.parseParameters(npcHandler)
function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
function onThink()                  npcHandler:onThink()                  end

local config = {
    minlevel = 150, --- Level inical para resetar
    price = 10000, --- Preço inicial para resetar
    newlevel = 20, --- Level após reset
    priceByReset = 0, --- Preço acrescentado por reset
    percent = 10, ---- Porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total)
    maxresets = 10, ---- Maximo de resets
    levelbyreset = 0 --- Quanto de level vai precisar a mais no próximo reset 
}

local function getResets(uid)
    local player = Player(uid)
    local resets = 0
    if player then
        resets = math.max(0, player:getStorageValue(378378))
    end
return resets
end

local function addReset(uid)
    local player = Player(uid)
    if player then
        local resets = getResets(uid)
		player:setStorageValue(378378, resets+1)
		doTeleportThing(uid, getTownTemplePosition(getPlayerTown(uid)))
        local hp = player:getMaxHealth()
        local resethp = hp*(config.percent/100)
		local differencehp = (hp - resethp)
		doCreatureAddHealth(uid, -differencehp)
        player:setMaxHealth(resethp)
        local mana = player:getMaxMana()
        local resetmana = mana*(config.percent/100)
        player:setMaxMana(resetmana)
		local differencemana = (mana - resetmana)
		doCreatureAddMana(uid, -differencemana)
        local playerid = player:getGuid()
		local description = resets+1
        player:remove() 
        db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
        db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
    end
    return true
end 

function creatureSayCallback(cid, type, msg)
    if not npcHandler:isFocused(cid) then
        return false
    end
    local player = Player(cid)
    local newPrice = config.price + (getResets(cid) * config.priceByReset)
    local newminlevel = config.minlevel + (getResets(cid) * config.levelbyreset)
    if msgcontains(msg, 'reset') then
        if getResets(cid) < config.maxresets then
            npcHandler:say('You want to reset your character? It will cost '..newPrice..' gp\'s!', cid)
            npcHandler.topic[cid] = 1
        else
            npcHandler:say('You already reached the maximum reset level!', cid)
        end
    elseif msgcontains(msg, 'yes') and npcHandler.topic[cid] == 1 then
        if player:getLevel() >= newminlevel then
            if player:removeMoney(newPrice) then
                addEvent(function()
                    if isPlayer(cid) then
                        addReset(cid)
                    end
                end, 3000)
                local number = getResets(cid)+1
                local msg ="---[Reset: "..number.."]-- You have reseted!  You'll be disconnected in 3 seconds."
                player:popupFYI(msg) 
                npcHandler.topic[cid] = 0
                npcHandler:releaseFocus(cid)
            else
                npcHandler:say('Its necessary to have at least '..newPrice..' gp\'s for reseting!', cid)
                npcHandler.topic[cid] = 0
            end
        else
            npcHandler:say('The minimum level for reseting is '..newminlevel..'!', cid)
            npcHandler.topic[cid] = 0
        end
    elseif(msgcontains(msg, 'no')) and isInArray({1}, npcHandler.topic[cid]) then
        npcHandler.topic[cid] = 0
        npcHandler:releaseFocus(cid)
        npcHandler:say('Ok.', cid)
    elseif msgcontains(msg, 'quantity') then
        npcHandler:say('You have a total of '..getResets(cid)..' reset(s).', cid)
        npcHandler.topic[cid] = 0
    end
    return true
end

npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
npcHandler:addModule(FocusModule:new()) 
21 hours ago, Koring4 said:

@xWhiteWolf eu nem mudei nada, eu peguei o script que você posto na pagina 5 falando que que é a versão 1.2

mas em fim, eu troquei isso que você falo e deu outro erro.

 

  Reveal hidden contents

5982b5212f308_reset2.jpg.423d4629d046d52b3fe0c0025cf928fb.jpg

ai depois eu troquei a linha 


db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")

por


db.executeQuery("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")

ai deu esse outro erro

  Reveal hidden contents

reset3.jpg.4385469d8bcdfb8461c9dcfe0371e46a.jpg

 

 

OBS: eu não manjo muito, mas pensei em testa antes de vim pergunta novamente.

 

mas obrigado pela atenção.



tenta assim:

 

Editado por xWhiteWolf (veja o histórico de edições)

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites
23 minutes ago, Koring4 said:

@xWhiteWolf deu esse erro agora, acho que não tenho tabela de reset na minha db, não seria isso ?

 

  Hide contents

reset4.jpg.894a5704fed20cb84a41faccb1e70d08.jpg

 

modifiquei ali em cima, agora acho q vai

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites

@xWhiteWolf agora esse erro, ele não ta kickando o char nem voltando level, só volta hp e mana

 

Spoiler

reset5.jpg.b3414d7778d431f03c67e9d05626146f.jpg

 

 

Editei depois do erro acima

 

 

eu mudei essa parte.

 

era assim:

Spoiler

local function addReset(uid)
    local player = Player(uid)
    if player then
        local resets = getResets(uid)
		player:setStorageValue(378378, resets+1)
		doTeleportThing(uid, getTownTemplePosition(getPlayerTown(uid)))
        local hp = player:getMaxHealth()
        local resethp = hp*(config.percent/100)
		local differencehp = (hp - resethp)
		doCreatureAddHealth(uid, -differencehp)
        player:setMaxHealth(resethp)
        local mana = player:getMaxMana()
        local resetmana = mana*(config.percent/100)
        player:setMaxMana(resetmana)
		local differencemana = (mana - resetmana)
		doCreatureAddMana(uid, -differencemana)
        local playerid = player:getGuid()
		local description = resets+1
        player:remove() 
        db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
        db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
    end
    return true
end 

 

 

agora é assim

Spoiler

function addReset(cid)
	player = Player(cid)
	resets = getResets(cid)
	hp = player:getMaxHealth()
	resethp = hp*(config.percent/100)
	player:setMaxHealth(resethp)
	mana = player:getMaxMana()
	resetmana = mana*(config.percent/100)
	player:setMaxMana(resetmana)
	playerid = player:getGuid()
	player:setStorageValue(378378, resets+1) 
    player:remove()		
	description = resets+1
    db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
	db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
    return true
end

 

 

não da erro, reseta o char normal mas não aparece no look, pode me ajuda nisso ?

Editado por Koring4 (veja o histórico de edições)
Link para o post
Compartilhar em outros sites

abre seu banco de dados e me fala quais campos tem na tabela players

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites

@xWhiteWolf é isso que tu quer ?

 

Spoiler

id
name
group_ip
accout_id
level
vocation
health
healthmax
experience
lookbody
lookfeet
lookhead
looklegs
looktype
lookaddons
maglevel
mana
manamax
manaspent
soul
town_id
posx
posy
posz
conditions
cap
sex
lastlogin
lastip
save
skull
skulltime
lastlogout
blessings
blessings1
blessings2
blessings3
blessings4
blessings5
blessings6
blessings7
blessings8
onlinetime
deletion
balance
offlinetraining_time
offlinetraining_skill
stamina
skill_fist
skill_fist_tries
skill_club
skill_club_tries
skill_sword
skill_sword_tries
skill_axe
skill_axe_tries
skill_dist
skill_dist_tries
skill_shielding
skill_shielding_tries
skill_fishing
skill_fishing_tries
deleted
description
comment
create_ip
create_date
hide_char
cast
skill_critical_hit_chance
skill_critical_hit_chance_tries
skill_critical_hit_damage
skill_critical_hit_damage_tries
skill_life_leech_chance
skill_life_leech_chance_tries
skill_life_leech_amount
skill_life_leech_amount_tries
skill_mana_leech_chance
skill_mana_leech_chance_tries
skill_mana_leech_amount
skill_mana_leech_amount_tries
skill_criticalhit_chance
skill_criticalhit_damage
skill_lifeleech_chance
skill_lifeleech_amount
skill_manaleech_chance
skill_manaleech_amount
prey_stamina_1
prey_stamina_2
prey_stamina_3
prey_column
bonus_reroll
xpboost_stamina
xpboost_value
marriage_status
hide_skills
hide_set
former

 

Link para o post
Compartilhar em outros sites

que estranho, parece que tem o campo description. Será que você n tá usando algum script pra mudar a descrição e q esteja removendo o look do reset?

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites
  • 2 weeks later...

Queria esse sistema por comando !resetar ou !reset. Dei uma lida no tópico todo em todas as paginas e não encontrei nada a respeito... Já procurei outros sistemas aqui no fórum mais nenhum deles reseta a life/mana junto com os resets... Teria como fazer ele por comandos ?

Link para o post
Compartilhar em outros sites

você tá realmente me pedindo pra estragar meu sistema? :(

Todos os meus trabalhos importantes estão na seção "Sobre mim" no meu perfil; Dá uma passada lá!

"Há três caminhos para o fracasso: não ensinar o que se sabe, não praticar o que se ensina, e não perguntar o que se ignora." - São Beda

I7Pm6ih.png

(obg ao @Beeny por fazer essa linda sign <3)

Link para o post
Compartilhar em outros sites

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emojis são permitidos.

×   Seu link foi automaticamente incorporado.   Mostrar como link

×   Seu conteúdo anterior foi restaurado.   Limpar o editor

×   Não é possível colar imagens diretamente. Carregar ou inserir imagens do URL.

  • Quem Está Navegando   0 membros estão online

    Nenhum usuário registrado visualizando esta página.

  • Conteúdo Similar

    • Por Linus
      Você  pode configurar se quer que o preço aumente a cada reset, se quer que o level pra resetar aumente e se vc quer que a vida resete junto (e quanto % da vida atual será a vida após resetar).
       
       
      Testado em tfs 1.1, Versão 10.77
       
       
       
       
      Vá em data/npc/lib/ crie npc_resets.lua :
       



       
      Você pode editar mexendo aqui. no script acima :
      config = { minlevel = 150, --- Level inical para resetar price = 10000, --- Preço inicial para resetar newlevel = 20, --- Level após reset priceByReset = 0, --- Preço acrescentado por reset percent = 30, ---- Porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total) maxresets = 50, ---- Maximo de resets levelbyreset = 0 --- Quanto de level vai precisar a mais no próximo reset } agora em data/npc/ crie reseter.XML :
       



       
       
       
      Agora em data/npc/scripts crie reseter.lua :
       



       
       
       
      Img : 
       

    • Por gpedro
      Testado: MySQL & SQLite
      Distro: TFS 0.4_SVN & TFS 0.3.6

      MySQL

      ALTER TABLE `players` ADD `resets` INT(11) NOT NULL DEFAULT "0"; SQLite ALTER TABLE players ADD resets INTEGER not null default 0 Adicionando nas sources player.h procure por: uint32_t level; logo abaixo, adicione: uint32_t resets; iologindata.cpp procure por query << "SELECT `id`, `account_id`, `group_id`, `world_id`, `sex`, `vocation`, `experience`, `level`," substitua por: query << "SELECT `id`, `account_id`, `group_id`, `world_id`, `sex`, `vocation`, `experience`, `level`, `resets`, " procure por player->level = std::max((uint32_t)1, (uint32_t)result->getDataInt("level")); logo abaixo adicione: player->resets = (uint32_t)result->getDataInt("resets"); procure por query << "`maglevel` = " << player->magLevel << ", "; logo abaixo adicione: query << "`resets` = " << player->resets << ", "; players.cpp procure por: s << " (Level " << level << ")"; substitua por: s << " (Level " << level << ") [Reset " << resets << "]"; players.h procure por: void setPromotionLevel(uint32_t pLevel); logo abaixo adicione: uint32_t getResets() { return resets;} void setResets(int32_t amount) { resets += amount; if (resets < 0) {resets = 0;} } luascript.cpp para 0.3.6 static int32_t luaDoPlayerSetIdleTime(lua_State* L); logo abaixo adicione: static int32_t luaGetResets(lua_State* L); static int32_t luaSetResets(lua_State* L); talkactions.xml <talkaction words="!rank;/rank" event="script" value="ranks.lua"/> <talkaction words="!reset;/reset" script="reset.lua"/> ranks.lua
      Créditos: Dark Skyllen, Marcryzius, Mock, Kydrai, Cykotitan, gpedro*.
      * adaptação para 0.4
    • Por Marjer
      Ola! Eu tenho uma duvida!
      Eu tenho 1 mapa 9.60 e ficou 1 tempo online, e assim foi crecendo.. (accs, players, etc..)
      E eu consegui passar para 10.10
      E gostaria de saber se tem como passa a database do 9.60 pro 10.10 ?
      Tem algum jeito que eu possa fazer isso ?
      Eu fiz uns test..
      Quando eu coloquei a database do 9.60 na pasta do 10.10
      Eu abri o executer e aparece isso de primeiro :

      (Uso Distro : The Forgotten Server, version 0.3.7_7_SVN)

      Updating Database Manager
      Updating Database to version 37...
      Updating has been updated to version: 37.
      Updating Database to version 38...
      Updating has been updated to version: 38.
      Optimized database.

      E abriu normalmente...
      Nessa database tem as contas, e depois que abril certinho o mapa.
      Eu tento entra e fala que o password ou o login estao errados.
      E quando eu logo no account manager da esse erro :
      Error during getDataInt(offinetraining_time)
      Error during getDataInt(offinetraining_skill)
      sqlite3_prepare_v2(): SQILITE ERRO: no such table? player_inboxitems (SELECT "pid, "sid", "itemtype", "count", "attributes" FROM "player_inboxitems" WHERE "player_id" = 1 ORDEN BY "Sid Desc;)

      Toda vez que entro no jogo, com personagem, ou account manager, no Server Log aparece isso :
       00:32 You must be logged out for more than 10 minutes to start offline training.
      E quando entro eu ando um pouco, depois eu relogo, vai para o templo, e com a mesma mensagem acima!
      E quando logo, no executer, da 1 erro muitoo grande!
      Irei postar uma foto!
      Foto :



      Entao.. Tem como ?

      ---------------------------
      (Uso Distro : The Forgotten Server, version 0.3.7_7_SVN)
      Entao...
      Eu peguei outra database, porque a da versão 9.60 dava erro!
      Eu fiz varios tests com a database.
      Pelo o que eu procurei e testei, essa database funcionou 100%
      Massss.....
      Meu mapa é Radbr, então tem o sistema de resets.
      Já tentei falar, /installreset, é mesma coisa que nada!
      E quando o player reseta nessa database, da 1 erro!
      Mas sera que é erro no Script ? ( Mas na outra versão 8.60 ea 9.60 funcionava!.... )

      E o player volta pro level 20, e com vida e mana de antes.
      Mas não aparece no look, e da erro no executer :
      Error during get DataInt (reset)  "4 vezes aparece esse erro" e depois...
      Tabela de Resets: Intalada ... [success]
      Error during get DataInt (reset)
      Ai desloga o char.. E quando desloga da esse erro :

      sqlite3_prepare_v2(): SQLITE ERROR: no such column: reset (UPDATE "players" SET "reset" = 1 WHERE "id"=3;)
      Ai loga o char... E da esse erro :
      sqlite3_prepare_v2(): SQLITE ERROR: no such column: reset (SELECT "ID", "reset" FROM "players" ORDEN BY DESC;)

      Tem algum jeito de arruma isso ?
      Eu procurei algumas coisas mas não achei! Talvez alguma SQL query possa ajuda nisso! Talvez..
      Se alguém souber... Por favor me ajuda.
      Irei colocar meu servidor online, e preciso de uma database boa! Nem que não de a do 9.60
      Mas uma que funcione...! E não de erro do sistema de reset!
      Por favor se alguém puder me ajuda, eu agradeço!

      Atenciosamente, Marjer!
       
      EDIT : Foto postada
    • Por Cleiton Felipi
      Bom dia galera!
      Bom eu gostaria de saber se existe algum comando para mysql que reseta o level e mana o life e os skill dos players, sem deletar os char, e o comando que manda todos para o templo.
      Não sei se estou na area correta, se não tiver desculpa.
      Desde já obrigado.
    • Por RenanPhellip
      Eai galera!   
       
       
      Estou precisando de um npc que resete o player. Sendo mais específico preciso que tenha as seguintes funções se possível:
       
      Level minimo para resetar: 250.
      Level máximo: 600.
      Preço: 7 esferas do dragão.
      Manter skills, ml, life/mana e adicionar +25k de life/mana.
      Resete para o level 1.
      E por fim, troque a vocação do player (exemplo: se ele esta na vocação 2 , que vá para a 3).
      Aah, vale lembrar, que irei configurar várias vocações e não somente uma.
       
      Distro Utilizada: tfs 0.4 rev.3884
      Versão Do Servidor: 8.60
       
      Antes de mais nada vale lembrar que procurei em vários tópicos aqui no forum e os que encontrei não consegui modificá-los ao ponto que eu quero.



×
×
  • Criar Novo...

Informação Importante

Confirmação de Termo