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

request !addons talkaction

Na Amigo

The crazy girl
Joined
Jun 5, 2017
Messages
254
Solutions
3
Reaction score
17
Location
Egypt
i want just all players outfits if you male or female. at talkaction command !addons, it requires to purchase "5" crystal coin
thanks
 
Solution
Since this is an "old" code and I don't use TFS, you can easily convert it

LUA:
function onSay(cid, words, param)

local femaleOutfits = { ["citizen"] = {136}, ["hunter"] = {137}, ["mage"] = {138}, ["knight"] = {139}, ["nobleman"] = {140}, ["summoner"] = {141}, ["warrior"] = {142}, ["barbarian"] = {147}, ["druid"] = {148}, ["wizard"] = {149}, ["oriental"] = {150}, ["pirate"] = {155}, ["assassin"] = {156}, ["beggar"] = {157}, ["shaman"] = {158}, ["norse"] = {252}, ["nightmare"] = {269}, ["jester"] = {270}, ["brotherhood"] = {279}, ["demonhunter"] = {288}, ["yalaharian"] = {324}, ["warmaster"] = {336}, ["wayfarer"] = {366} }
local maleOutfits = { ["citizen"] = {128}, ["hunter"] = {129}, ["mage"] = {130}, ["knight"] = {131}, ["nobleman"] =...
Since this is an "old" code and I don't use TFS, you can easily convert it

LUA:
function onSay(cid, words, param)

local femaleOutfits = { ["citizen"] = {136}, ["hunter"] = {137}, ["mage"] = {138}, ["knight"] = {139}, ["nobleman"] = {140}, ["summoner"] = {141}, ["warrior"] = {142}, ["barbarian"] = {147}, ["druid"] = {148}, ["wizard"] = {149}, ["oriental"] = {150}, ["pirate"] = {155}, ["assassin"] = {156}, ["beggar"] = {157}, ["shaman"] = {158}, ["norse"] = {252}, ["nightmare"] = {269}, ["jester"] = {270}, ["brotherhood"] = {279}, ["demonhunter"] = {288}, ["yalaharian"] = {324}, ["warmaster"] = {336}, ["wayfarer"] = {366} }
local maleOutfits = { ["citizen"] = {128}, ["hunter"] = {129}, ["mage"] = {130}, ["knight"] = {131}, ["nobleman"] = {132},["summoner"] = {133}, ["warrior"] = {134}, ["barbarian"] = {143}, ["druid"] = {144}, ["wizard"] = {145}, ["oriental"] = {146}, ["pirate"] = {151}, ["assassin"] = {152}, ["beggar"] = {153}, ["shaman"] = {154}, ["norse"] = {251}, ["nightmare"] = {268}, ["jester"] = {273}, ["brotherhood"] = {278}, ["demonhunter"] = {289}, ["yalaharian"] = {325}, ["warmaster"] = {335}, ["wayfarer"] = {367} }
local msg = {"Addons successfully added!", "Sorry, but only premium players can use that command.", "You do not have the Addon Doll!", ".:: Addons options ::.\n\n* Citizen\n* Hunter\n* Knight\n* Mage\n* Barbarian\n* Druid\n* Wizard\n* Oriental\n* Pirate\n* Assassin\n* Beggar\n* Shaman\n* Norse\n* Nightmare\n* Jester\n* Brotherhood\n* Demonhunter\n* Yalaharian\n* Warmaster\n* Wayfarer"}
local param = string.lower(param)

    if isPremium(cid) then
        if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then
            if (getPlayerItemCount(cid, 2160) >= 5) then
                doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, msg[1])
                doSendMagicEffect(getCreaturePosition(cid), CONST_ME_MAGIC_BLUE)
                doPlayerRemoveItem(cid, 2160, 5)
                if(getPlayerSex(cid) == 0)then 
                    doPlayerAddOutfit(cid, femaleOutfits[param][1], 3)
                else 
                    doPlayerAddOutfit(cid, maleOutfits[param][1], 3) 
                end
            else
                doPlayerSendCancel(cid, msg[3])
            end   
        else
            doShowTextDialog(cid, 2195, msg[4])
        end
    else
        doPlayerSendCancel(cid, msg[2])
    end
    return false
end
 
Solution
Did you know that you have little taste, and you are a despised man
Could you translate it to modern english?
I dont want to be rude nor gross. Its just that i wanted to make fun of the fact its "BUMP" wich stands for "Bring up my POST". Cheers.
 
Back
Top