• 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!

[8.0] [TFS 1.2] - Server Global Full [Real Map]

I can't open the exe. file, its just dosent open, its open for 1 second and close down again. Anyone know what to do?

Fixed it.

I cant login tho. I have created an account but nothing happend when I try to login, IP is right, port is right, server is up and runing... why cant i login? anyone know?
 
Last edited:
I can't open the exe. file, its just dosent open, its open for 1 second and close down again. Anyone know what to do?

Fixed it.

I cant login tho. I have created an account but nothing happend when I try to login, IP is right, port is right, server is up and runing... why cant i login? anyone know?
Probably you didnt setup your MySql database and server cant connect at launch.

Did you create account with account name or numbers? 8.0 protocol allows only numbers in account name. In default MyAAC will not inform you about that, you can create account with letters and login on page but actually you cant enter the game because of that.
 
Great work @Shiris undrin

I have recently downloaded the last update on github.

I found out there is an issue with the breaking the ice mission, at The Ice Island Quest.

Anyone found a solution to this issue yet?
Since i have tried easier methods without luck.

1737912332238.webp

Best regards
Andreas
 
Very very nice, good job @Shiris undrin
Great work @Shiris undrin

I have recently downloaded the last update on github.

I found out there is an issue with the breaking the ice mission, at The Ice Island Quest.

Anyone found a solution to this issue yet?
Since i have tried easier methods without luck.

View attachment 89800

Best regards
Andreas
First I want to clarify that I don't know what quest that is but I'll give you possible solutions. Why don't you check the operation of the pick to see if you have to report those coordinates for it to work? or maybe with the remerep map you can change the action or unique id so that it works as a pick, I don't know. Now thinking that you don't need to open a space with the pick but rather use the pick to complete a mission, I think you can search for the quest script and update it.

On the other hand, I want to congratulate @Shiris undrin for such a good job, people like you are needed in this world, I send you a big hug. I would love for the server to be upgraded to tfs 1.3 but I will nevertheless comply with leaving a donation.
 
Love it, great job, but here comes a bug report.


All quests done with female sex.

Summoner outfit quest addon (Tiara). Myra takes your items but doesn't give you the outfit and then says you already got the addon.

Shaman outfit/Banuta Quest: Hairycles thinks you already have the outfit when you finish Banuta. "Fixed" it by changing line 183 Hairycles.lua (C:\Users\Traes\Desktop\RealMap-Global-8.0-TFS-1.2-main\data\npc\scripts) to: "if player:getStorageValue(Storage.TheApeCity.ShamanOutfit) == 1 then" (changed ~= to == so he grants it even if you "have" it)

The Shattered Isles Quest: The Forbidden Island teleporters work even if you didn't complete the quests so you can go straight to Ferumbras. Ferumbras Citadel-forcefield is open and Zoltan (in Edron mage tower) doesn't talk about Permission. There's also a pitfall in Talahu (Position: 31808, 32658, 7) that is impossible to get out of. You just get stuck underground.

Captain Bluebeard doesn't go to Liberty Bay even though he says he does. I'm uncertain about this one because I vaguely remember going to Liberty Bay from Thais, but I might've gone from Liberty Bay to Thais as I got Goroma on the first attempt.

Xodet (and other such NPCs) buy for example Wand of Inferno (which they shouldn't? I think that's Djinn-loot).

A Sweaty Cyclopse can't be accessed because you can't pass through the cut wheat(?).
 
Last edited:
Hello dear friends, I will be updating this server base again. Thank you for the reports and the words of encouragement. If you would like to make a donation via PayPal, please contact me on Discord: brunoo2238.

Every donation is greatly appreciated!

GitHub - Brunowots/RealMap-Global-8.0-TFS-1.2 (https://github.com/Brunowots/RealMap-Global-8.0-TFS-1.2)
Nice!

I managed to fix some of them as well as a few others if you or someone wants to use it:

The tiara is actually for the mage addon 2 but Myra.lua rewards the Ferumbras hat (Summoner addon 2). Changed Myra.lua (\...\RealMap-Global-8.0-TFS-1.2-main\data\npc\scripts) so that it checks and rewards the correct addon regardless of gender and added Myra acknowledging you completed it.
Code:
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


-- Storage IDs --

fmage        = 22005
smage        = 22006
 
ssummoner    = 22621

noitems        = 'You do not have all the required items.'
noitems2    = 'You do not have all the required items or you do not have the outfit, which by the way, is a requirement for this addon.'
already        = 'It seems you already have this addon, don\'t you try to mock me!'

function SummonerSecond(cid, message, keywords, parameters, node)

    if(not npcHandler:isFocused(cid)) then
        return false
    end

    if isPremium(cid) then
    addonMale = getPlayerStorageValue(cid,ssummoner)
    addonFemale = getPlayerStorageValue(cid,smage)
    if addonMale == -1 and getPlayerSex(cid) == 1 or addonFemale == -1 and getPlayerSex(cid) == 0 then
       if getPlayerItemCount(cid,5894) >= 70 and getPlayerItemCount(cid,5911) >= 20 and getPlayerItemCount(cid,5883) >= 40 and getPlayerItemCount(cid,5922) >= 35 and getPlayerItemCount(cid,5886) >= 10 and getPlayerItemCount(cid,5881) >= 60 and getPlayerItemCount(cid,5882) >= 40 and getPlayerItemCount(cid,5904) >= 15 and getPlayerItemCount(cid,5905) >= 30 then
        if doPlayerRemoveItem(cid,5894,70) and doPlayerRemoveItem(cid,5911,20) and doPlayerRemoveItem(cid,5883,40) and doPlayerRemoveItem(cid,5922,35) and doPlayerRemoveItem(cid,5886,10) and doPlayerRemoveItem(cid,5881,60) and doPlayerRemoveItem(cid,5882,40) and doPlayerRemoveItem(cid,5904,15) and doPlayerRemoveItem(cid,5905,30) then
            doSendMagicEffect(getCreaturePosition(cid), 13)
            if getPlayerSex(cid) == 1 then
            doPlayerAddOutfit(cid, 133, 2)
            setPlayerStorageValue(cid,ssummoner,1)
            selfSay('Ah, right! The summoner cloak! Here you go.')
            elseif getPlayerSex(cid) == 0 then
            doPlayerAddOutfit(cid, 138, 2)
            setPlayerStorageValue(cid,smage,1)
            selfSay('Ah, right! The mage tiara! Here you go.')
        end
        end
        else
            selfSay(noitems)
        end
    else
        selfSay(already)
    end
    end

end

node1 = keywordHandler:addKeyword({'tiara'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'To get mage tiara you need give me 70 bat wings, 20 red pieces of cloth, 40 ape fur, 35 holy orchid, 10 spools of spider silk yarn, 60 lizard scales, 40 red dragon scales, 15 magic sulphurs and 30 vampire dusts. Do you have them with you?'})
node1:addChildKeyword({'yes'}, SummonerSecond, {})
node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Alright then. Come back when you got all neccessary items.', reset = true})

node2 = keywordHandler:addKeyword({'cloak'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'To get summoner cloak you need give me 70 bat wings, 20 red pieces of cloth, 40 ape fur, 35 holy orchid, 10 spools of spider silk yarn, 60 lizard scales, 40 red dragon scales, 15 magic sulphurs and 30 vampire dusts. Do you have them with you?'})
node2:addChildKeyword({'yes'}, SummonerSecond, {})
node2:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Alright then. Come back when you got all neccessary items.', reset = true})




npcHandler:addModule(FocusModule:new())

Some instrument drops point to wrong instruments to instruments that can't be moved. Change the <item id="xxxx"/> to the numbers below to get the right ones.
Wooden Flute 2070 (Marid (\...\RealMap-Global-8.0-TFS-1.2-main\data\monster\Djinns), Priestess (\...\RealMap-Global-8.0-TFS-1.2-main\data\monster\Necromancers)), Lyre 2071 (Banshee (\...\RealMap-Global-8.0-TFS-1.2-main\data\monster\Undead Humanoids))
XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Banshee" nameDescription="a banshee" race="undead" experience="900" speed="200" manacost="0">
    <health now="1000" max="1000"/>
    <look type="78" corpse="6019"/>
    <targetchange interval="4000" chance="10"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag illusionable="0"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="1"/>
        <flag canpushcreatures="1"/>
        <flag targetdistance="1"/>
        <flag staticattack="90"/>
        <flag runonhealth="500"/>
    </flags>
    <attacks>
        <attack name="melee" interval="2000" min="0" max="-100" poison="3"/>
        <attack name="lifedrain" interval="2000" chance="15" radius="4" target="0" min="-100" max="-200">
            <attribute key="areaEffect" value="rednote"/>
        </attack>
        <attack name="speed" interval="2000" chance="10" range="7" speedchange="-300" duration="15000">
            <attribute key="areaEffect" value="redshimmer"/>
        </attack>
    </attacks>
    <defenses armor="25" defense="25">
        <defense name="healing" interval="2000" chance="15" min="120" max="190">
            <attribute key="areaEffect" value="blueshimmer"/>
        </defense>
    </defenses>
 
    <immunities>
 
        <immunity fire="1"/>
        <immunity earth="1"/>
        <immunity drown="1"/>
        <immunity lifedrain="1"/>
        <immunity paralyze="1"/>
        <immunity invisible="1"/>
    </immunities>
    <voices interval="5000" chance="10">
        <voice sentence="Dance for me your dance of death!"/>
        <voice sentence="Let the music play!"/>
        <voice sentence="I will mourn your death!"/>
        <voice sentence="Are you ready to rock?"/>
        <voice sentence="Feel my gentle kiss of death."/>
        <voice sentence="That's what I call easy listening!"/>
        <voice sentence="IIIIEEEeeeeeehhhHHHH!" yell="1"/>
    </voices>
    <loot>
        <item id="2047" chance="70000"/>                <!-- candlestick -->
        <item id="2148" countmax="80" chance="30000"/>    <!-- gold coin -->
        <item id="2170" chance="8700"/>                    <!-- silver amulet -->
        <item id="2657" chance="6050"/>                    <!-- simple dress -->
        <item id="12402" chance="4810"/>                <!-- hair of a banshee -->
        <item id="11337" chance="4150"/>                <!-- petrified scream -->
        <item id="2144" chance="2030"/>                    <!-- black pearl -->
        <item id="2411" chance="1350"/>                    <!-- poison dagger -->
        <item id="2134" chance="1250"/>                    <!-- silver brooch -->
        <item id="2143" chance="1010"/>                    <!-- white pearl -->
        <item id="2071" chance="910"/>                    <!-- lyre -->
        <item id="2197" chance="820"/>                    <!-- stone skin amulet -->
        <item id="2214" chance="730"/>                    <!-- ring of healing -->
        <item id="2656" chance="700"/>                    <!-- blue robe -->
        <item id="7589" chance="680"/>                    <!-- strong mana potion -->
        <item id="2175" chance="520"/>                    <!-- spellbook -->
        <item id="2121" chance="460"/>                    <!-- wedding ring -->
        <item id="7884" chance="340"/>                    <!-- terra mantle -->
        <item id="2655" chance="150"/>                    <!-- red robe -->
        <item id="2177" chance="70"/>                    <!-- life crystal -->
        <item id="2124" chance="60"/>                    <!-- crystal ring -->
        <item id="13307" chance="40"/>                    <!-- sweet smelling bait -->
    </loot>
</monster>
XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Marid" nameDescription="a marid" race="blood" experience="410" speed="180" manacost="0">
    <health now="550" max="550" />
    <look type="104" corpse="6033" />
    <targetchange interval="4000" chance="10" />
    <flags>
        <flag summonable="0" />
        <flag attackable="1" />
        <flag hostile="1" />
        <flag illusionable="0" />
        <flag convinceable="0" />
        <flag pushable="0" />
        <flag canpushitems="1" />
        <flag canpushcreatures="0" />
        <flag targetdistance="1" />
        <flag staticattack="90" />
        <flag runonhealth="0" />
    </flags>
    <attacks>
        <attack name="melee" interval="2000" skill="50" attack="30" />
        <attack name="energy" interval="2000" chance="10" range="7" min="-100" max="-250">
            <attribute key="shootEffect" value="energy" />
        </attack>
        <attack name="lifedrain" interval="2000" chance="15" range="7" min="-30" max="-90">
            <attribute key="areaEffect" value="redshimmer" />
        </attack>
        <attack name="speed" interval="2000" chance="15" range="7" speedchange="-650" duration="1500">
            <attribute key="areaEffect" value="redshimmer" />
        </attack>
        <attack name="drunk" interval="2000" chance="10" range="7" duration="6000">
            <attribute key="shootEffect" value="energy" />
        </attack>
        <attack name="outfit" interval="2000" chance="1" range="7" monster="rabbit" duration="4000">
            <attribute key="areaEffect" value="blueshimmer" />
        </attack>
        <attack name="djinn electrify" interval="2000" range="5" chance="15" />
        <attack name="energy" interval="2000" chance="15" radius="3" target="0" min="-30" max="-90">
            <attribute key="areaEffect" value="energy" />
        </attack>
    </attacks>
    <defenses armor="20" defense="20">
        <defense name="healing" interval="2000" chance="15" min="50" max="80">
            <attribute key="areaEffect" value="blueshimmer" />
        </defense>
    </defenses>

    <immunities>
        <immunity paralyze="1" />
        <immunity invisible="1" />
    </immunities>
    <summons maxSummons="2">
        <summon name="blue djinn" interval="2000" chance="50" max="2" />
    </summons>
    <voices interval="5000" chance="10">
        <voice sentence="Simsalabim" />
        <voice sentence="Feel the power of my magic, tiny mortal!" />
        <voice sentence="Wishes can come true." />
        <voice sentence="Djinns will soon again be the greatest!" />
    </voices>
    <loot>
        <item id="2148" countmax="70" chance="60000" /> <!-- gold coin -->
        <item id="2148" countmax="30" chance="60000" /> <!-- gold coin -->
        <item id="2677" countmax="29" chance="65000" /> <!-- blueberry -->
        <item id="7378" countmax="3" chance="15500" /> <!-- royal spear -->
        <item id="2442" chance="4530" /> <!-- heavy machete -->
        <item id="2063" chance="110" /> <!-- small oil lamp -->
        <item id="1872" chance="2560" /> <!-- blue tapestry -->
        <item id="2146" chance="6200" /> <!-- small sapphire -->
        <item id="5912" chance="3750" /> <!-- blue piece of cloth -->
        <item id="2374" chance="5000" /> <!-- wooden flute -->
        <item id="2183" chance="770" /> <!-- hailstorm rod -->
        <item id="2663" chance="290" /> <!-- mystic turban -->
        <item id="2158" chance="110" /> <!-- blue gem -->
    </loot>
</monster>
XML:
<?xml version="1.0" encoding="UTF-8"?>
<monster name="Priestess" nameDescription="a priestess" race="blood" experience="420" speed="200" manacost="0">
    <health now="390" max="390"/>
    <look type="58" corpse="6081"/>
    <targetchange interval="4000" chance="10"/>
    <flags>
        <flag summonable="0"/>
        <flag attackable="1"/>
        <flag hostile="1"/>
        <flag illusionable="1"/>
        <flag convinceable="0"/>
        <flag pushable="0"/>
        <flag canpushitems="1"/>
        <flag canpushcreatures="1"/>
        <flag targetdistance="4"/>
        <flag staticattack="90"/>
        <flag runonhealth="0"/>
    </flags>
    <attacks>
        <attack name="melee" interval="2000" min="0" max="-75"/>
        <attack name="physical" interval="2000" chance="20" range="7" min="0" max="-120">
            <attribute key="shootEffect" value="death"/>
            <attribute key="areaEffect" value="mortarea"/>
        </attack>
        <attack name="manadrain" interval="2000" chance="15" range="7" min="-2" max="-170"/>
        <attack name="poisoncondition" interval="2000" chance="15" range="7" min="-10" max="-10">
            <attribute key="shootEffect" value="poison"/>
        </attack>
    </attacks>
    <defenses armor="15" defense="15">
        <defense name="healing" interval="2000" chance="15" min="50" max="80">
            <attribute key="areaEffect" value="blueshimmer"/>
        </defense>
    </defenses>
 
    <immunities>
        <immunity invisible="1"/>
    </immunities>
    <summons maxSummons="2">
        <summon name="Ghoul" interval="2000" chance="10"/>
    </summons>
    <voices interval="5000" chance="10">
        <voice sentence="Your energy is mine."/>
        <voice sentence="Now your life is come to the end, hahahaha!"/>
        <voice sentence="Throw the soul on the altar!"/>
    </voices>
    <loot>
        <item id="2802" chance="13200"/>                <!-- sling herb -->
        <item id="2760" chance="11720"/>                <!-- goat grass -->
        <item id="11220" chance="10000"/>                <!-- dark rosary -->
        <item id="2674" countmax="2" chance="7500"/>    <!-- red apple -->
        <item id="2803" chance="6500"/>                    <!-- powder herb -->
        <item id="10562" chance="5000"/>                <!-- black hood -->
        <item id="2791" chance="3200"/>                    <!-- wood mushroom -->
        <item id="10556" chance="1800"/>                <!-- cultish robe -->
        <item id="2423" chance="1500"/>                    <!-- clerical mace -->
        <item id="2070" chance="1450"/>                    <!-- wooden flute -->
        <item id="2192" chance="1100"/>                    <!-- crystal ball -->
        <item id="2183" chance="1000"/>                    <!-- hailstorm rod -->
        <item id="1962" chance="940"/>                    <!-- book -->
        <item id="7620" chance="900"/>                    <!-- mana potion -->
        <item id="2151" chance="730"/>                    <!-- talon -->
        <item id="2125" chance="660"/>                    <!-- crystal necklace -->
        <item id="2529" chance="200"/>                    <!-- black shield -->
        <item id="2114" chance="80"/>                    <!-- piggy bank -->
    </loot>
</monster>

Captain Bluebear, Captain Fearless, Captain Greyhound and Captain Seagull all have the same bug. Basically forgot to remove Yalahar-things when downgrading so it messes up certain routes. In their respective npc lua (\...\RealMap-Global-8.0-TFS-1.2-main\data\npc\scripts), I removed the text after "position(x,y,z)" on the lines that start with "addTravelKeyword" so that it ends with "))".
LUA:
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 voices = { {text = 'Passages to Carlin, Ab\'Dendriel, Edron, Venore, Port Hope, Liberty Bay and Svargrond.'} }
npcHandler:addModule(VoiceModule:new(voices))

-- Travel
local function addTravelKeyword(keyword, cost, destination, action, condition)
    if condition then
        keywordHandler:addKeyword({keyword}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m sorry but I don\'t sail there.'}, condition)
    end

    local travelKeyword = keywordHandler:addKeyword({keyword}, StdModule.say, {npcHandler = npcHandler, text = 'Do you seek a passage to ' .. keyword:titleCase() .. ' for |TRAVELCOST|?', cost = cost, discount = 'postman'})
        travelKeyword:addChildKeyword({'yes'}, StdModule.travel, {npcHandler = npcHandler, premium = true, cost = cost, discount = 'postman', destination = destination}, nil, action)
        travelKeyword:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, text = 'We would like to serve you some time.', reset = true})
end

addTravelKeyword('carlin', 110, Position(32387, 31820, 6), function(player) if player:getStorageValue(Storage.postman.Mission01) == 1 then player:setStorageValue(Storage.postman.Mission01, 2) end end)
addTravelKeyword('ab\'dendriel', 130, Position(32734, 31668, 6))
addTravelKeyword('edron', 160, Position(33175, 31764, 6))
addTravelKeyword('venore', 170, Position(32954, 32022, 6))
addTravelKeyword('port hope', 160, Position(32527, 32784, 6))
addTravelKeyword('svargrond', 180, Position(32341, 31108, 6))
addTravelKeyword('liberty bay', 180, Position(32285, 32892, 6))


-- Kick
--keywordHandler:addKeyword({'kick'}, StdModule.kick, {npcHandler = npcHandler, destination = {Position(32320, 32219, 6), Position(32321, 32210, 6)}})

-- Basic
keywordHandler:addKeyword({'name'}, StdModule.say, {npcHandler = npcHandler, text = 'My name is Captain Bluebear from the Royal Tibia Line.'})
keywordHandler:addKeyword({'job'}, StdModule.say, {npcHandler = npcHandler, text = 'I am the captain of this sailing-ship.'})
keywordHandler:addKeyword({'captain'}, StdModule.say, {npcHandler = npcHandler, text = 'I am the captain of this sailing-ship.'})
keywordHandler:addKeyword({'ship'}, StdModule.say, {npcHandler = npcHandler, text = 'The Royal Tibia Line connects all seaside towns of Tibia.'})
keywordHandler:addKeyword({'line'}, StdModule.say, {npcHandler = npcHandler, text = 'The Royal Tibia Line connects all seaside towns of Tibia.'})
keywordHandler:addKeyword({'company'}, StdModule.say, {npcHandler = npcHandler, text = 'The Royal Tibia Line connects all seaside towns of Tibia.'})
keywordHandler:addKeyword({'tibia'}, StdModule.say, {npcHandler = npcHandler, text = 'The Royal Tibia Line connects all seaside towns of Tibia.'})
keywordHandler:addKeyword({'good'}, StdModule.say, {npcHandler = npcHandler, text = 'We can transport everything you want.'})
keywordHandler:addKeyword({'passenger'}, StdModule.say, {npcHandler = npcHandler, text = 'We would like to welcome you on board.'})
keywordHandler:addKeyword({'trip'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'route'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'passage'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'town'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'destination'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'sail'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'go'}, StdModule.say, {npcHandler = npcHandler, text = 'Where do you want to go? To {Carlin}, {Ab\'Dendriel}, {Venore}, {Port Hope}, {Liberty Bay}, {Svargrond} or {Edron}?'})
keywordHandler:addKeyword({'ice'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m sorry, but we don\'t serve the routes to the Ice Islands.'})
keywordHandler:addKeyword({'senja'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m sorry, but we don\'t serve the routes to the Ice Islands.'})
keywordHandler:addKeyword({'folda'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m sorry, but we don\'t serve the routes to the Ice Islands.'})
keywordHandler:addKeyword({'vega'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m sorry, but we don\'t serve the routes to the Ice Islands.'})
keywordHandler:addKeyword({'darashia'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m not sailing there. This route is afflicted by a ghostship! However I\'ve heard that Captain Fearless from Venore sails there.'})
keywordHandler:addKeyword({'darama'}, StdModule.say, {npcHandler = npcHandler, text = 'I\'m not sailing there. This route is afflicted by a ghostship! However I\'ve heard that Captain Fearless from Venore sails there.'})
keywordHandler:addKeyword({'ghost'}, StdModule.say, {npcHandler = npcHandler, text = 'Many people who sailed to Darashia never returned because they were attacked by a ghostship! I\'ll never sail there!'})
keywordHandler:addKeyword({'thais'}, StdModule.say, {npcHandler = npcHandler, text = 'This is Thais. Where do you want to go?'})

npcHandler:setMessage(MESSAGE_GREET, 'Welcome on board, |PLAYERNAME|. Where can I {sail} you today?')
npcHandler:setMessage(MESSAGE_FAREWELL, 'Good bye. Recommend us if you were satisfied with our service.')
npcHandler:setMessage(MESSAGE_WALKAWAY, 'Good bye then.')

npcHandler:addModule(FocusModule:new())
 

Attachments

Last edited:
I fixed some bugs and quests and stuff:

Sorry if I'm intruding, but I've been bored and fixing stuff so I thought I'd share it and somewhat how to fix them yourself. It might mess stuff up if you use it, I'm new to programming and just fixed stuff as me and my friends played. Also first time using github so I might've gone against some convention on how one shares this kind of stuff.

Map Fixes:
  • HOTA (Helmet of the Ancients) fixed so you can make the helmet rather than loot it. (Was UID, should be AID (or vice versa I don't remember)) Also removed chest. If there's more bugs on earlier pharaohs I don't know because I only checked if it was another AID/UID-bug
  • Banshee Quest fourth seal (pointed to life fluid (2) instead of blood(7))
  • Fixed Djinn Lamp-doors missing AID.
  • Fixed Nibelor Dog sled (Was UID, should be AID (or vice versa))
  • A few Postman-mailboxes, had AID instead of UID or no ID at all
  • Added AID to the door accessing Formargor Mines.
  • Added stairs missing in Svargrond cavesystem above the mine + Frost Manor
  • Added "roof" to Formorgar Mines so the ceiling doesn't clip.
  • Filled in short-cut in Formargor Mines I couldn't find on Tibicams, but I didn't find any of 8.0 so might be wrong
  • Lowered spawns in Formargor Mines
  • Removed hole on Talahu that didn't have any cave below it, getting people stuck {x = 31808, y = 32658, z = 7}.
  • Locked a few doors that should be locked (venore bank, shipyard
  • Lowered spawn-amount in Nargor and made it 60 seconds instead of 5
  • Changed some boss-spawns to 600 seconds instead of 60 (in the case of Demodras and Tiquanda's revenge: 5 seconds)
  • Removed a bunch of trash
lua fixes:
  • Added a lot of random "lore" dialogue missing.
  • "Fixed" Ice Island quest (and seemingly others): breaking the ice and others by making pick1.lua into pick.lua. This solution sadly crashes the tibia client during POI pick-axe stone for the lava, but you can just restart and the stone is correctly broken.
  • Svargrond Arena can only be done as honourary barbarian
  • You can only go to Nibelor by doing pre-req quest
  • 8.1+ items removed from NPCs so that their trades work

Stuff I'm working on:
Dialogue and Pirate Quest missing.

Stuff I'm uncertain about:
Couldn't fireball be used without a target? Accidentally bought one instead of GFB and noticed it can't.
Added alternativ sql-file (global+(8).sql) from someone in the thread, because I was to stupid to understand how to fix one myself.
 
Last edited:
I fixed some bugs and quests and stuff:

Sorry if I'm intruding, but I've been bored and fixing stuff so I thought I'd share it and somewhat how to fix them yourself. It might mess stuff up if you use it, I'm new to programming and just fixed stuff as me and my friends played. Also first time using github so I might've gone against some convention on how one shares this kind of stuff.

Map Fixes:
  • HOTA (Helmet of the Ancients) fixed so you can make the helmet rather than loot it. (Was UID, should be AID (or vice versa I don't remember)) Also removed chest. If there's more bugs on earlier pharaohs I don't know because I only checked if it was another AID/UID-bug
  • Banshee Quest fourth seal (pointed to life fluid (2) instead of blood(7))
  • Fixed Djinn Lamp-doors missing AID.
  • Fixed Nibelor Dog sled (Was UID, should be AID (or vice versa))
  • A few Postman-mailboxes, had AID instead of UID or no ID at all
  • Added AID to the door accessing Formargor Mines.
  • Added stairs missing in Svargrond cavesystem above the mine + Frost Manor
  • Added "roof" to Formorgar Mines so the ceiling doesn't clip.
  • Filled in short-cut in Formargor Mines I couldn't find on Tibicams, but I didn't find any of 8.0 so might be wrong
  • Lowered spawns in Formargor Mines
  • Removed hole on Talahu that didn't have any cave below it, getting people stuck {x = 31808, y = 32658, z = 7}.
  • Locked a few doors that should be locked (venore bank, shipyard
  • Lowered spawn-amount in Nargor and made it 60 seconds instead of 5
  • Changed some boss-spawns to 600 seconds instead of 60 (in the case of Demodras and Tiquanda's revenge: 5 seconds)
  • Removed a bunch of trash
lua fixes:
  • Added a lot of random "lore" dialogue missing.
  • "Fixed" Ice Island quest (and seemingly others): breaking the ice and others by making pick1.lua into pick.lua. This solution sadly crashes the tibia client during POI pick-axe stone for the lava, but you can just restart and the stone is correctly broken.
  • Svargrond Arena can only be done as honourary barbarian
  • You can only go to Nibelor by doing pre-req quest
  • 8.1+ items removed from NPCs so that their trades work

Stuff I'm working on:
Dialogue and Pirate Quest missing.

Stuff I'm uncertain about:
Couldn't fireball be used without a target? Accidentally bought one instead of GFB and noticed it can't.
Added alternativ sql-file (global) from someone in the thread, because I was to stupid to understand how to fix one myself.
Create a pull request on the original repo :)
 
I fixed some bugs and quests and stuff:

Sorry if I'm intruding, but I've been bored and fixing stuff so I thought I'd share it and somewhat how to fix them yourself. It might mess stuff up if you use it, I'm new to programming and just fixed stuff as me and my friends played. Also first time using github so I might've gone against some convention on how one shares this kind of stuff.

Map Fixes:
  • HOTA (Helmet of the Ancients) fixed so you can make the helmet rather than loot it. (Was UID, should be AID (or vice versa I don't remember)) Also removed chest. If there's more bugs on earlier pharaohs I don't know because I only checked if it was another AID/UID-bug
  • Banshee Quest fourth seal (pointed to life fluid (2) instead of blood(7))
  • Fixed Djinn Lamp-doors missing AID.
  • Fixed Nibelor Dog sled (Was UID, should be AID (or vice versa))
  • A few Postman-mailboxes, had AID instead of UID or no ID at all
  • Added AID to the door accessing Formargor Mines.
  • Added stairs missing in Svargrond cavesystem above the mine + Frost Manor
  • Added "roof" to Formorgar Mines so the ceiling doesn't clip.
  • Filled in short-cut in Formargor Mines I couldn't find on Tibicams, but I didn't find any of 8.0 so might be wrong
  • Lowered spawns in Formargor Mines
  • Removed hole on Talahu that didn't have any cave below it, getting people stuck {x = 31808, y = 32658, z = 7}.
  • Locked a few doors that should be locked (venore bank, shipyard
  • Lowered spawn-amount in Nargor and made it 60 seconds instead of 5
  • Changed some boss-spawns to 600 seconds instead of 60 (in the case of Demodras and Tiquanda's revenge: 5 seconds)
  • Removed a bunch of trash
lua fixes:
  • Added a lot of random "lore" dialogue missing.
  • "Fixed" Ice Island quest (and seemingly others): breaking the ice and others by making pick1.lua into pick.lua. This solution sadly crashes the tibia client during POI pick-axe stone for the lava, but you can just restart and the stone is correctly broken.
  • Svargrond Arena can only be done as honourary barbarian
  • You can only go to Nibelor by doing pre-req quest
  • 8.1+ items removed from NPCs so that their trades work

Stuff I'm working on:
Dialogue and Pirate Quest missing.

Stuff I'm uncertain about:
Couldn't fireball be used without a target? Accidentally bought one instead of GFB and noticed it can't.
Added alternativ sql-file (global) from someone in the thread, because I was to stupid to understand how to fix one myself.
Create a pull request on the original repo :)
Thank you for your contribution, I am very happy for the help. The pull was accepted (:
 
Error - mysql_real_query] Query: TRUNCATE TABLE towns
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (1, 'Trekolt'
, 95, 117, 7)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (2, 'Rhyves',
159, 387, 6)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (3, 'Varak',
242, 429, 12)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (4, 'Jorvik',
496, 172, 7)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (5, 'Saund',
240, 566, 7)
Message: Table 'Global.towns' doesn't exist



How do I solve this problem?
 
Error - mysql_real_query] Query: TRUNCATE TABLE towns
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (1, 'Trekolt'
, 95, 117, 7)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (2, 'Rhyves',
159, 387, 6)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (3, 'Varak',
242, 429, 12)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (4, 'Jorvik',
496, 172, 7)
Message: Table 'Global.towns' doesn't exist
[Error - mysql_real_query] Query: INSERT INTO towns (id, name, posx, posy, posz) VALUES (5, 'Saund',
240, 566, 7)
Message: Table 'Global.towns' doesn't exist



How do I solve this problem?
Go to SQL and use this command to create a missing table.

Code:
CREATE TABLE `towns` (
    `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    `name` VARCHAR(255) NOT NULL,
    `posx` INT NOT NULL,
    `posy` INT NOT NULL,
    `posz` INT NOT NULL
);
 
this should be up dated to tfs 1.5 or higher if there are still ppl working in old project
 
Go to SQL and use this command to create a missing table.

Code:
CREATE TABLE `towns` (
    `id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
    `name` VARCHAR(255) NOT NULL,
    `posx` INT NOT NULL,
    `posy` INT NOT NULL,
    `posz` INT NOT NULL
);
eu não sei aonde coloco este código tem um passo a passo para me mostrar ? e qual numero do ip eu uso para logar minha conta no OTserv ?
 
Back
Top