• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Log in Error!

warsar

Arzeria RlMap Projekt Adm
Joined
Aug 17, 2008
Messages
24
Reaction score
1
Location
Sweden
When i log on my 8.5 rl map in Tibia whit small window iget debugged.
( Often happends when i cancel the outfitchanger window. But sometimes it just happends when i log on.)
But when i log on in maximum size window i dont get any debug.
I Think this is very strange..
Anyone having simular Problem or know how to help/solve this problem please Tell me as fast as possible!
And if any one know how to make the outfitchanger diseaper when you log on Please tell me cuz that could solve the problem.
:thumbup:
 
Last edited:
same 3 threads with that error :( PLEASE SOMEONE FIX THAT!!


it says

------------------- Connection Failed ---------------

Cannot connect to the game server.

Error: Connection timed out. (10060)

For more information take a look at the FAQs in the
Support section at www.tibia.com.


PLEASE!!
 
no Warsar its by mine team...

we got a another problem Zerak.
Our Problem is :(i am hoster) and wehn i start the server it works all good but then wehn i need to logg in it works it comes a window to change my outfit and i canceled then debug! how i can remove that window????(i think its creture scripts but were??) Pleas Help Us And I Give You Rep!
 
hmm..
in login.lua

u removed a "storage" ?

for when u start

its a storage and if u dont got it then u get pop up and get the storage then u dont get po up more ..
 
Here My Login.lua
Code:
function onLogin(cid)

 registerCreatureEvent(cid, "PlayerKill")
    if (InitArenaScript ~= 0) then
    InitArenaScript = 1
    -- make arena rooms free
        for i = 42300, 42309 do
            setGlobalStorageValue(i, 0)
            setGlobalStorageValue(i+100, 0)
        end
    end
    -- if he did not make full arena 1 he must start from zero
    if getPlayerStorageValue(cid, 42309) < 1 then
        for i = 42300, 42309 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    -- if he did not make full arena 2 he must start from zero
    if getPlayerStorageValue(cid, 42319) < 1 then
        for i = 42310, 42319 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    -- if he did not make full arena 3 he must start from zero
    if getPlayerStorageValue(cid, 42329) < 1 then
        for i = 42320, 42329 do
            setPlayerStorageValue(cid, i, 0)
        end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0) -- did not arena level
    end
    setPlayerStorageValue(cid, 42350, 0) -- time to kick 0
    setPlayerStorageValue(cid, 42352, 0) -- is not in arena  

	doPlayerPopupFYI(cid, message)
	registerCreatureEvent(cid, "PlayerDeath")
	--registerCreatureEvent(cid, "MEDALS") This is Nahruto's Metal System for killing someone, Dont add this unless you use it.--
	registerCreatureEvent(cid, "KilledMonstersCounter")
	registerCreatureEvent(cid, "playeradvance")
return TRUE

end
 
rmp?

then use this one

Code:
function onLogin(cid)
    setPlayerStorageValue(cid,29061,1)
    registerCreatureEvent(cid, "DeathBroadcast")
    --registerCreatureEvent(cid, "inquisitionPortals")
    registerCreatureEvent(cid, "PlayerDeath")
    registerCreatureEvent(cid, "PlayerKill")
	registerCreatureEvent(cid, "KilledMonstersCounter")
	
    if (InitArenaScript ~= 0) then
    InitArenaScript = 1
    -- make arena rooms free
       for i = 42300, 42309 do
            setGlobalStorageValue(i, 0)
            setGlobalStorageValue(i+100, 0)
        end
    end
for i = 1, 3 do
       if getPlayerStorageValue(cid, 42300 + i * 10 - 1) < 1 then
           for j = 0, 9 do
               setPlayerStorageValue(cid, 42290 + i * 10 + j, 0)
           end
       end
   end
    if getPlayerStorageValue(cid, 42355) == -1 then
        setPlayerStorageValue(cid, 42355, 0) -- did not arena level
    end
    setPlayerStorageValue(cid, 42350, 0) -- time to kick 0
    setPlayerStorageValue(cid, 42352, 0) -- is not in arena  
	

    return TRUE
end
 
Back
Top