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

Close thread!

Status
Not open for further replies.
I will play here with some of my rl friends :p I hope you get a good ddos protection we dont want to play with lags :p

dunno if Hosteam will be enought
 
I will play here with some of my rl friends :p I hope you get a good ddos protection we dont want to play with lags :p

dunno if Hosteam will be enought

It should be, the top servers using Hosteam :)
 
The beta was online for 4days.

I have collected all requests and information.

Now need buy dedi, but seems to be out of stock and need to wait.

But we can have this thread open for more discussion.

So you're saying there's only one company in the world selling dedicated servers?
 
So you're saying there's only one company in the world selling dedicated servers?

No, its not the only one. But if you want a good hosting company with ddos protection, then this is it.

- - - Updated - - -

Any estimated launch date?

I will put a date, as soon the dedicate server i want are available again.
 
Waiting for the launch date! BUMP

As i said, i will post it soon as possible, the get in the dedicate server i want to buy.
 
Hi i got a server everything is working but not first items shuld it looks like this or did i somthing wrong?

local commonItems = {
-- ITEMS ALL VOCS RECEIVE
{itemid=2120, count=1}, -- rope
{itemid=5710, count=1}, -- shovel
{itemid=2789, count=100}, -- brown mushrooms
}

local firstItems = {
{ -- SORC ITEMS
{itemid=2323, count=1}, -- hat of the mad
{itemid=8871, count=1}, -- focus cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=2191, count=1}, -- wand of dragonbreath


{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2274, count=1}, -- avalanche rune
{itemid=2305, count=1}, -- firebomb rune
},
{ -- DRUID ITEMS
{itemid=2323, count=1}, -- hat of the mad
{itemid=8871, count=1}, -- focus cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=2186, count=1}, -- moonlight rod

{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2269, count=1}, -- wg
{itemid=2274, count=1}, -- avalanche rune
{itemid=2305, count=1}, -- firebomb rune
},
{ -- PALADIN ITEMS
{itemid=2457, count=1}, -- steel helemet
{itemid=8891, count=1}, -- belted cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=7368, count=1}, -- assassin stars

{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2305, count=1}, -- firebomb rune
{itemid=2274, count=1}, -- avalanche rune
},
{ -- KNIGHT ITEMS
{itemid=2457, count=1}, -- steel helemet
{itemid=2463, count=1}, -- plate armor
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=10313, count=1}, -- Incredible Mumpiz Slayer

{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2305, count=1}, -- firebomb rune
{itemid=2274, count=1}, -- avalanche rune

}
}

for _, items in ipairs(firstItems) do
for _, item in ipairs(commonItems) do
table.insert(items, item)
end
end

function onLogin(cid)
if getPlayerGroupId(cid) < 2 then
local hasReceivedFirstItems = getPlayerStorageValue(cid, 67708)

if hasReceivedFirstItems ~= 1 then
--[[local backpack = ]]doPlayerAddItem(cid, 1988, 1)

local giveItems = firstItems[getPlayerVocation(cid)]

if giveItems ~= nil then
for _, v in ipairs(giveItems) do
--doAddContainerItem(backpack, v.itemid, v.count or 1)
doPlayerAddItem(cid, v.itemid, v.count or 1)
end

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have recieved your first items!")
end
setPlayerStorageValue(cid, 67708, 1)
end
end
return TRUE
end
 
Hi i got a server everything is working but not first items shuld it looks like this or did i somthing wrong?

local commonItems = {
-- ITEMS ALL VOCS RECEIVE
{itemid=2120, count=1}, -- rope
{itemid=5710, count=1}, -- shovel
{itemid=2789, count=100}, -- brown mushrooms
}

local firstItems = {
{ -- SORC ITEMS
{itemid=2323, count=1}, -- hat of the mad
{itemid=8871, count=1}, -- focus cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=2191, count=1}, -- wand of dragonbreath


{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2274, count=1}, -- avalanche rune
{itemid=2305, count=1}, -- firebomb rune
},
{ -- DRUID ITEMS
{itemid=2323, count=1}, -- hat of the mad
{itemid=8871, count=1}, -- focus cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=2186, count=1}, -- moonlight rod

{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2269, count=1}, -- wg
{itemid=2274, count=1}, -- avalanche rune
{itemid=2305, count=1}, -- firebomb rune
},
{ -- PALADIN ITEMS
{itemid=2457, count=1}, -- steel helemet
{itemid=8891, count=1}, -- belted cape
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=7368, count=1}, -- assassin stars

{itemid=2268, count=1}, -- sd
{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2305, count=1}, -- firebomb rune
{itemid=2274, count=1}, -- avalanche rune
},
{ -- KNIGHT ITEMS
{itemid=2457, count=1}, -- steel helemet
{itemid=2463, count=1}, -- plate armor
{itemid=2647, count=1}, -- plate legs
{itemid=2643, count=1}, -- leather boots
{itemid=2525, count=1}, -- dwarven shield
{itemid=10313, count=1}, -- Incredible Mumpiz Slayer

{itemid=2273, count=1}, -- uh
{itemid=7620, count=1}, -- mp
{itemid=7618, count=1}, -- hp
{itemid=2293, count=1}, -- mw
{itemid=2261, count=1}, -- dr
{itemid=2305, count=1}, -- firebomb rune
{itemid=2274, count=1}, -- avalanche rune

}
}

for _, items in ipairs(firstItems) do
for _, item in ipairs(commonItems) do
table.insert(items, item)
end
end

function onLogin(cid)
if getPlayerGroupId(cid) < 2 then
local hasReceivedFirstItems = getPlayerStorageValue(cid, 67708)

if hasReceivedFirstItems ~= 1 then
--[[local backpack = ]]doPlayerAddItem(cid, 1988, 1)

local giveItems = firstItems[getPlayerVocation(cid)]

if giveItems ~= nil then
for _, v in ipairs(giveItems) do
--doAddContainerItem(backpack, v.itemid, v.count or 1)
doPlayerAddItem(cid, v.itemid, v.count or 1)
end

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "You have recieved your first items!")
end
setPlayerStorageValue(cid, 67708, 1)
end
end
return TRUE
end

Wtf? Please if you need help go to the support board.
 
Waiting on real version. Btw you can still log on the OT account manager :p even though it says its down for normal chars
 
Great news, today i bought the dedicate server with ddos protection. I will update this thread with the new link to the new thread with a timer.
 
Great news indeed.

few questions?
1) Is MC allowed?
2) How many MC's if yes
3) anti aimbot coded?
4) will aimbotter and cavebotter be banned? hope so
 
So the OT will be up in prolly 2 days then Printer? Since you want people to see the countdown and WANT to play :p
 
put it up online today and I will donate 10€ instantly :D if its possible
 
Great news indeed.

few questions?
1) Is MC allowed?
2) How many MC's if yes
3) anti aimbot coded?
4) will aimbotter and cavebotter be banned? hope so

1) Yes, but i dont see any reasons to use mc, since runes are in the shop buyable :) I can prevent MC, since some people share same ip.
2) How many you want, but if there is a activity of thrid party software, you will get banned.
3) No, but the will get banned if they are caught in the act!
4) Ofcouse!

- - - Updated - - -

put it up online today and I will donate 10€ instantly :D if its possible

Premium is free :) But i will be adding buyable stuff into the shop, since need cash to pay to the dedicate server company :)

I will recive the dedi today need to configure stuff into it, from this day you will be able to create account and 30Mars will you be able to login, i will write more information when i recive the dedicate server :)

Thanks for the support guys.

- - - Updated - - -

So the OT will be up in prolly 2 days then Printer? Since you want people to see the countdown and WANT to play :p

As you said, countdown from today :D
 
1) Yes, but i dont see any reasons to use mc, since runes are in the shop buyable :) I can prevent MC, since some people share same ip.
2) How many you want, but if there is a activity of thrid party software, you will get banned.
3) No, but the will get banned if they are caught in the act!
4) Ofcouse!

- - - Updated - - -



Premium is free :) But i will be adding buyable stuff into the shop, since need cash to pay to the dedicate server company :)

I will recive the dedi today need to configure stuff into it, from this day you will be able to create account and 30Mars will you be able to login, i will write more information when i recive the dedicate server :)

Thanks for the support guys.

- - - Updated - - -



As you said, countdown from today :D

Okay :) Id rather it be online today cause im bored, but the wait will make more people come online at once!

- - - Updated - - -

Also, did you get a website? :eek:
 
Status
Not open for further replies.
Back
Top