• 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.41/42] The Forgotten Server 0.3.4PL2 (Crying Damson)

Status
Not open for further replies.
@Fare-Fray: Yee I use the local ip to enter the server (127.0.0.1) Buts doesn't work ;S Please help mee!
 
Sorry for doble posting but I need make some special thing, (It doesnt work lika past servers, OPEN - ENTER LOCAL IP - PLAY ALONE)

worldId = 0
ip = "127.0.0.1"
loginPort = 7171
gamePort = 7172
adminPort = 7171
statusPort = 7171
loginTries = 10
retryTimeout = 5 * 1000
loginTimeout = 60 * 1000
maxPlayers = "1000"
motd = "Welcome to the Forgotten Server!"
displayOnOrOffAtCharlist = "no"
onePlayerOnlinePerAccount = "yes"
allowClones = 0
serverName = "Forgotten"
loginMessage = "Welcome to the Forgotten Server!"
statusTimeout = 5 * 60 * 1000
replaceKickOnLogin = "yes"
forceSlowConnectionsToDisconnect = "no"
loginOnlyWithLoginServer = "no"
 
there are no groups at database anymore, check data/xml/groups.xml
;D
 
The .exe wont start :confused:
I am pretty sure I did everything correctly.

Whats going on? :huh:
 
The .exe wont start :confused:
I am pretty sure I did everything correctly.

Whats going on? :huh:

errorzwf.jpg
 
Feel the power of Winblows!
 
Help me with this scrip...

function onStepIn(cid, item, pos)

if isPlayer(cid) == 1 then
tible = getPlayerItemCount(cid,1970)
if tible >= TRUE then
newpos = {x=pos.x,y=pos.y-3,z=pos.z}
doSendMagicEffect(pos,12)
doTeleportThing(cid,newpos)
doSendMagicEffect(newpos,12)
end
end
end

i use this script in the intro of POI Quest.
If have Holy Tible in a SQM the character can enter in POI.

In TFS 0.3.2 its work. But in TFS 0.3.4 Don't Work, what i need change?

Sorry for my bad english :p
 
Help me with this scrip...



i use this script in the intro of POI Quest.
If have Holy Tible in a SQM the character can enter in POI.

In TFS 0.3.2 its work. But in TFS 0.3.4 Don't Work, what i need change?

Sorry for my bad english :p

Lua:
function onStepIn(cid, item, position, fromPosition)
 local tible = getPlayerItemCount(cid,1970)
    if isPlayer(cid) == 1 and tible >= 1 then
        doSendMagicEffect(position, 12)
        doSendMagicEffect(fromPosition, 12)
	else
        doTeleportThind(cid, fromPosition)	
    end
	return TRUE
end
PHP:
    <movevent type="StepIn" actionid="78932" event="script" value="pitsofinferno.lua" />
 
Status
Not open for further replies.
Back
Top