Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Probably something like this in iologindata.cpp in the function loginserverAuthentication
result = db.storeQuery(fmt::format(
"SELECT `name` FROM `players` WHERE `account_id` = {:d} AND `deletion` = 0 ORDER BY `name` ASC", account.id));
if (result) {
do {...
You need to go to the Accounts table in the database, there you will find that you can change the account.type to 3. Forget about account_id that was a mistake the previous posters made. You're looking for account.type
First & second proposals:
Bullet
Points
/jk
But basically you mean:
People propose features
People vote on the proposals
People who develop the feature get paid by the funding
or am I wrong?
Couldn't you just do a default value as -1 for your queries?
SELECT
p.name,
COALESCE(ps.value, -1)
FROM
Players AS p LEFT JOIN
Player_storage AS ps ON p.player_id = ps.player_id
ORDER BY ps.value DESC
LIMIT 10
(not sure about the table names or field names)
Just to confirm for people who may see this in the future, I had this issue yesterday and fixed by having the following. (seems like OP tried this and didn't work, but there are no specific details to his configs)
In my config.lua I had my domain
ip = "rombadr.hopto.org"
in my...
We should all start at level 3k, wanna fight cyclops at level 8? can't because you will die. wanna hunt dragons at level 15? can't because you will die. Why not just start at level 3k so we can all go around killing all monsters and soloing all quests?
/s
It's all part of the grind, if you...
-- Xikini's edit.
if (scroll == 13 or scroll == 14) and (player:hasAchievement("Marid Ally") or player:hasAchievement("Efreet Ally")) then
player:sendTextMessage(MESSAGE_STATUS_SMALL, "You have already chosen whom will be your ally. You cannot change your decision.")
return...