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

Programmer Pay Job

xshaggyx

New Member
Joined
Feb 20, 2016
Messages
42
Reaction score
2
I need a serious person this work is paid , it is required to mount a server on linux do the complete installation, then leave the connected page the server everything worked and have the web list but you have to prove that the system works well on the other hand need to do the players do not get down level 100 and dying not to discard items also need to change the map between cities from time to time and I need to use the client that you put the ip of my server only serious people add me to vampirium.baertl
 
So you need a fully working server and a website installed on a linux environment?

Instead of paying someone todo all the work, you should try yourself and learn.
You need some knowledge when you run the server later.

You can follow this guide how to install and setup Debian 8 (Jessie)
https://www.howtoforge.com/tutorial/debian-8-jessie-minimal-server/

Guide how to setup webserver, mysql server and compile TFS 1.X.
https://otland.net/threads/nothing-...t-how-to-configure-a-dedicated-server.207051/

Map Changer Script for TFS 1.X.
https://otland.net/threads/change-map-tfs-1-x.227517/

You can simply modify this script to remove the posibility to drop items.
https://github.com/otland/forgottenserver/blob/master/data/creaturescripts/scripts/droploot.lua

You could create a simple onLogin script that handles the downgrade if you get below 100.
Code:
function onLogin(player)
    if player:getLevel() < 100 then
        player:addExperience(getExpForLevel(100) - player:getExperience())
    end
end

You can use either GesiorAAC or ZnoteAAC as a Website/AAC.
https://github.com/Znote/ZnoteAAC
https://github.com/Gesior/Gesior2012

Either hex edit cipsoft client or use OTClient.
https://otland.net/forums/otclient.494/
 
Back
Top