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

0.3.6 Promotion to give coloured emblem?

Samaster

Raptorserver.ddns.net
Joined
Jun 9, 2013
Messages
291
Reaction score
23
Location
UK
Hello,

I am making a third promotion system, and I would like it to give the player a permanent red emblem when they are promoted?

Is this possible? If so, can someone kindly create this for me please.

TFS 0.3.6
Server: Crying Damson V8.2

Thank you
 
Hello,

I am making a third promotion system, and I would like it to give the player a permanent red emblem when they are promoted?

Is this possible? If so, can someone kindly create this for me please.

TFS 0.3.6
Server: Crying Damson V8.2

Thank you

Place this in your login.lua under function onLogin

Code:
local voc = getPlayerVocation(cid)

if (isInArray({1, 2, 3, 4}, voc)) then -- place your vocationids
    doCreatureSetGuildEmblem(cid, 2)
    return true
end
 
Last edited:
Back
Top