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

my Server Projekt TFS 1.0

domyno2837

Member
Joined
Oct 28, 2013
Messages
168
Reaction score
5
Hey because i have now a Basic for an own ot i wanna get some Features for my Server.

Here a List what i wanna have:
- bounty Hunters System
- Guild war System
- offline Training ( i saw TFS 1.1 already have it :))
- some Special Skripts (i will post later what specific)
- Second (and third?) Promotion
- have The Problem When i select "500" attackspeed my Charakter Hit only faster while moving.
It's possible to fix That?
- Last Man Standing Battle Arena
- !bless to buy all blessings
- possible a Spell to transform Char (druid) like to a tiger so he can Play as melee too?

Just asking or Someone can help ne for that Features :)
Of corse a link for Skripts List.

I Use TFS 1.1 compiler with Visual Studio 2013
And Uniserver with ZNote 1.5


Thanks for every help :)
 
Guild War System is already built in. Just use a website which support the system. Such as Znote AAC.

Bless talkaction:
Code:
local cost = 100000

function onSay(player, words, param)
    local blessingsCount = 0
    for a = 1, 5 do
        if player:hasBlessing(a) then
            blessingsCount = blessingsCount + 1
        end
    end

    if blessingsCount == 5 then
        player:sendTextMessage(MESSAGE_STATUS_SMALL, 'You have already all the 5 bless.')
        return false
    end

    if not player:removeMoney(cost) then
        player:sendTextMessage(MESSAGE_STATUS_SMALL, 'You don\'t have enough of money. Cost: '.. cost ..'.')
        return false
    end

    for b = 1, 5 do
        player:addBlessing(b)
    end

    player:sendTextMessage(MESSAGE_EVENT_ADVANCE, 'You have been blessed by the five gods.')
    player:getPosition():sendMagicEffect(CONST_ME_HOLYAREA)
    return false
end
 
Back
Top