• 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.60] The Forgotten Server 0.3.6 (Crying Damson) V8

When I download your server and I go to unzip it, my Norton just takes it away saying its a high threat and has to be removed. Am I the only one having this problem?
 
I downloaded the server, but how do I link it to localhost? It doesn't have forgottenserver.sql ???
 
I downloaded the server, but how do I link it to localhost? It doesn't have forgottenserver.sql ???
It's in "cryingdamson 0.3.6 (8.60) V8.2/schemas/mysql.sql"
Also, use 127.0.0.1 in your config.lua, localhost is kinda buggy.

When I download your server and I go to unzip it, my Norton just takes it away saying its a high threat and has to be removed. Am I the only one having this problem?
This is a safe download, it's tested by otland staff and I personally never had any trouble from it.
It could be that norton sees it as a thread because its a .exe and it used internet via different ports.
 
Also:

1) Is the attack speed for this distribution increased? My wand seems to be able to get an extra hit in every few turns before an exori tera. If so, is there any way to edit it?
2) I was messing with NPCs and found that "The Forgotten King" is able to epicize people for 200k and make them an Epic Knight/Paladin/Sorc/Druid, but it doesn't work when I say 'epic', which is supposed to be the key word. How do I fix this?

2)

this is the code for the second promotion you can find it inside npc/scripts/promotion2

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

local node1 = keywordHandler:addKeyword({'promote'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'I can epicize you for 2000000 gold coins. Do you want me to epicize you?'})
    node1:addChildKeyword({'yes'}, StdModule.promotePlayer, {npcHandler = npcHandler, cost = 2000000, level = 150, promotion = 2, text = 'Congratulations! You\'r Promotion has been upgraded.'})
    node1:addChildKeyword({'no'}, StdModule.say, {npcHandler = npcHandler, onlyFocus = true, text = 'Alright then, come back when you are ready.', reset = true})

npcHandler:addModule(FocusModule:new())
Keyword : Promote
 
A bug: I say 'trade' to Soya and she opens up the shop window, but I can't sell my items to her. They're highlighted and everything but I click OK and nothing happens. Only way I can sell is if I say "sell boots of haste" "yes"

Can this be fixed?

Edit yur Soya to this

PHP:
<?xml version="1.0" encoding="UTF-8"?>
<npc name="Soya" script="loot.lua" walkinterval="2000" floorchange="0">
    <health now="150" max="150"/>
    <look type="139" head="132" body="79" legs="97" feet="132" corpse="2212"/>
    <parameters>
        <parameter key="module_shop" value="1"/>
        <parameter key="message_greet" value="Hello |PLAYERNAME|. I buy swords, clubs, axes, helmets, boots, legs, shields and armors."/>
        <parameter key="shop_sellable" value="royal helmet,2498,40000;warrior helmet,2475,6000;crusader helmet,2497,9000;crown helmet,2491,5000;devil helmet,2462,4000;mystic turban,2663,500;chain helmet,2458,35;iron helmet,2459,30;steel boots,2645,400000;boots of haste,2195,40000;golden boots,2646,100000;magic plate armor,2472,100000;dragon scale mail,2492,60000;demon armor,2494,90000;golden armor,2466,30000;crown armor,2487,20000;knight armor,2476,5000;blue robe,2656,15000;lady armor,2500,2500;plate armor,2463,400;brass armor,2465,200;chain armor,2464,100;golden legs,2470,80000;crown legs,2488,15000;knight legs,2477,6000;plate legs,2647,500;brass legs,2487,100;mastermind shield,2514,80000;demon shield,2520,40000;blessed shield,2523,150000;great shield,2522,100000;vampire shield,2534,25000;medusa shield,2536,8000;amazon shield,2537,4000;crown shield,2519,5000;tower shield,2528,4000;guardian shield,2515,200;beholder shield,2518,1500;dwarven shield,2525,100;magic longsword,2390,150000;warlord sword,2408,100000;magic sword,2400,90000;giant sword,2393,10000;bright sword,2407,6000;ice rapier,2396,4000;fire sword,2392,3000;serpent sword,2409,1500;spike sword,2383,800;two handed sword,2377,400;broad sword,2413,70;short sword,2406,30;sword,2376,25;dragon lance,2414,10000;stonecutter axe,2431,90000;guardian halberd,2427,7500;fire axe,2432,10000;knight axe,2430,2000;double axe,2387,200;halberd,2381,200;battle axe,2378,100;hatchet,2388,20;war hammer,2391,6000;thunder hammer,2421,90000;skull staff,2436,1000;dragon hammer,2434,2000;clerical mace,2423,200;battle hammer,2417,60;mace,2398,30;"/>
    </parameters>
</npc>
 
I hope the player-item-no-deathloss is fixed in the last rev
 
07.jpg
08.jpg
 
How to even compile this?
The
Code:
TheForgottenServer.dev
is missing.. Every compile tutorial asks me to open this.. but its not there... How do you compile this?
 
How to even compile this?
The
Code:
TheForgottenServer.dev
is missing.. Every compile tutorial asks me to open this.. but its not there... How do you compile this?

honey u can find this
Code:
TheForgottenServer-console.dev
TheForgottenServer-debug.dev
TheForgottenServer-console-debug.dev
 
Hello!

Downloaded this distro today and got everything working without problems.
Have not edited a single thing and now the server crashes upon startup? Right after the "running database manager" and sometimes when loading "items" it crashes :(
 
Back
Top