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

The Forgotten Server v0.3 beta 1

Status
Not open for further replies.
@UP
Goto data/lib and search on all files "isknight" it will say something like (4,8)... if your vocation 2 is id=12 then add it like (4,8,12).
 
Bug... dustbin isnt working

data/items/items.xml

Code:
Item id = 1777
<attribute key="type" value="trashholder"/>

Maybe functions are bad.
 
Check this thing (Exausted in distance weapons and not weapons Melee)
Alpha 4. Not passing it
 
SQL query:

DELIMITER | CREATE TRIGGER `ondelete_accounts` BEFORE DELETE ON `accounts` FOR EACH ROW BEGIN DELETE FROM `bans` WHERE `type` NOT IN ( 1, 2 ) AND `value` = OLD.`id` ;

MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DELIMITER |

CREATE TRIGGER `ondelete_accounts`
BEFORE DELETE
ON `accounts`
FOR ' at line 1


I get this error while uploading the mysql file to PHPmyadmin.
 
Oo?? I am start compile....

./autogen.sh && ./configure --enable-mysql --enable-server-diag && make
-bash: ./autogen.sh: Permission denied

Edit...
Checked, working now!! ;)
 
Last edited:
@UP

Code:
[ TODO
    Project Name
        The Forgotten Server

    Version
        0.3 Beta 1

    Codenamed
        \

    License
        GNU GPLv3

    Forum
        http://otland.net/
]

[ FEATURES
    PvP Arenas
        Assigned to: Elf

    [B]Multiworld system (revmultisys methods + custom config path from argv)
        Assigned to: Elf, Kiper[/B]
]

[ TASKS
    Deprecate guild management system from Chat class and rewrite it in TalkActions
        Assigned to: Elf

    Make more constant values configurable
        Assigned to: *
]
 
I've just discovered - PVP isn't working lol. World set to PVP, and players cannot attack themselves. Wtf ? :D
 
1.- What is allowpickupable for?
2.- How does return values in talkactions work?

Thanks in advance.

EDIT: I also found a small bug:
01 December 2008 19:41:43 Died at Level 66 by an orc warrior and by an orc warrior.

This happens because before storing altkilled_by, it checks if the mostDamageKiller and the lastHitKiller are not the same creature, but in this case, they are not the same creatures, they are two different orc warriors. So maybe checking if they don't have the same names?
 
Last edited:
well, this is a bug report and a request...

PHP:
doPlayerAddExp(cid, exp)

if you add a negative value here, you will get like 1337k exp (lvl 1 - 650).. This means it is impossible to downgrade levels without dying..

My request then is: Either fix so you can add negative values, or add:

setPlayerLevel(cid, level)
setPlayerExperience(cid, value)

going through sql is so clumsy for just editing the level, and it also requires that the player is offline.
 
Status
Not open for further replies.
Back
Top