• 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.6] OTServ 0.6.4 STABLE

Whats the account manager? I just started the server but can't create a new character.
 
:: OTServ Version 0.6.4_SVN
:: ============================================================================
::
:: Initializing the random numbers... [done]
:: Loading lua script config.lua... [done]
:: Using data directory data/... [done]
:: Checking Database Connection... [done]
:: Checking Schema version...

Error: Your database is outdated. Run the dbupdate utility to update it to the latest schema version.
 
Notice: Undefined index: lang in C:\xampp\htdocs\pages\latestnews.php on line 33

Notice: Undefined index: lang in C:\xampp\htdocs\pages\latestnews.php on line 38

Notice: Undefined index: lang in C:\xampp\htdocs\pages\latestnews.php on line 43

Fatal error: Call to a member function fetchAll() on boolean in C:\xampp\htdocs\pages\latestnews.php on line 50
With Giesor install this is error i get after setup of webpage
 
I cant get where i have gessior account loading thru the install until it gets to step 4 to add the samples. it literally just sits the and does nothing. lol But the weird thing is i can click step 5 to make an admin account, it makes it in db but if i try to logging into account it says invalid acc or pass. is it the scheme? who has a good on if so?
 
http://prntscr.com/c4hh6m

any ideas? im using uniserver!
Paste your database file (.sql) inside the folder of mysql (for example, C:\UniServerZ\core\mysql\bin), after that, open the MS-DOS and execute this:
Code:
cd C:\UniServerZ\core\mysql\bin
Now execute this code inside of MS-DOS:
Code:
mysql -u root -p YOUR_DB_NAME < database.sql
It will ask for the password of your database, insert that and press ENTER, it should import your database to phpmyadmin with no problems ;)

Enjoy it !
 
Paste your database file (.sql) inside the folder of mysql (for example, C:\UniServerZ\core\mysql\bin), after that, open the MS-DOS and execute this:
Code:
cd C:\UniServerZ\core\mysql\bin
Now execute this code inside of MS-DOS:
Code:
mysql -u root -p YOUR_DB_NAME < database.sql
It will ask for the password of your database, insert that and press ENTER, it should import your database to phpmyadmin with no problems ;)

Enjoy it !
YOU are a saint my friend! <3 thanks alot for this fast help!!!!!
 
hmm another problem serched some on this forum without successes..
http://prntscr.com/c4tmwy


this is the part of the config.lua

"
----
-- SQL type
-- options: mysql, sqlite, odbc or pgsql
sql_type = "mysql"

-- SQL connection part
sql_db = "otserv.pdb"
-- "otserv" -- use this for MySQL/PgSQL
-- "Your Source" -- ODBC

-- Additional connection settings for mysql, pgsql and odbc
sql_host = "localhost"
sql_port = 3306
-- 5432 -- use this port for PgSQL
sql_user = "*******************" database username?
sql_pass = "************************" database password?
----
"
 
I am having trouble getting orange text to popup - for example when eating foods, food.lua script does work as it takes away the food and says 'you are full' when I'm full but no orange text. But! Orange text does work for spells tho, so I'm guessing its just a script issue, which I am not able to resolve myself.

I have checked global.lua
TALKTYPE_ORANGE_1 = 13
TALKTYPE_ORANGE_2 = 14

I tried both ID's but none are working.
As well as I tried to use doPlayerSendTextMessage or doCreatureSay but it does not work either.
And food sounds are there in actions/lib/actions.lua

Here is (unmodified) original food.lua script from this distro:

Code:
local MAX_FOOD = 1200

function onUse(cid, item, frompos, item2, topos)
    if (item.itemid == 6280) then
        doPlayerSay(cid, "Blewing out the candle.", TALKTYPE_ORANGE_1)
        doTransformItem(item.uid, item.itemid - 1)
        doSendMagicEffect(frompos, CONST_ME_POFF)
        return true
    end

    if FOODS[item.itemid] == nil then
        return false
    end

    local size = FOODS[item.itemid][1]
    local sound = FOODS[item.itemid][2]

    if (getPlayerFood(cid) + size > MAX_FOOD) then
        doPlayerSendCancel(cid, "You are full.")
        return true
    end
    doPlayerFeed(cid, size)
    doRemoveItem(item.uid, 1)
    doPlayerSay(cid, sound, TALKTYPE_ORANGE_1)
    return true

end
 
Does anyone know any solution to my problem above? I know it may be simple but I have checked and the code should work unless there is something I do not know about. Thanks.
 
Back
Top