Ir para conteúdo
  • 0

daduloko

Pergunta

Oi galera, tava precisando de uma ajudinha em um script! Sabe o addon doll que geralmente tem em baiak's? Então estava querendo que o script NÃO PRECIASSE de PREMIUM! já tentei mas não consegui fazer não precisar de premium!

Se puder POR FAVOR me ajudem a fazer só vir o FRIST addon não os 2! Quem responder e funcionar as 2 perguntas vai ganhar 5 rep's! ^^ (cada dia recebe 1)

 

Ta ai o script

 

 

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}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324} }

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}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325} }

local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"}

local param = string.lower(param)

if (not isPremium(cid)) then

doPlayerSendCancel(cid, "Você nao tem premium account.")

return TRUE

end

if(getPlayerItemCount(cid, 2112) > 0) then

if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then

doPlayerRemoveItem(cid, 2112, 1)

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])

doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)

if(getPlayerSex(cid) == 0)then

doPlayerAddOutfit(cid, femaleOutfits[param][1], 3)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 3)

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])

end

end

 

 

Por favor, me ajudem!

Link para o comentário
Compartilhar em outros sites

4 respostass a esta questão

Posts Recomendados

  • 0
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}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324} }

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}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325} }

local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"}

local param = string.lower(param)

if(getPlayerItemCount(cid, 2112) > 0) then

if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then

doPlayerRemoveItem(cid, 2112, 1)

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])

doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)

if(getPlayerSex(cid) == 0)then

doPlayerAddOutfit(cid, femaleOutfits[param][1], 1)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 1)

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])

end

end

procura

em config.lua addonsOnlyPremium = true se tiver assim coloca addonsOnlyPremium = false

 

 

se ajudei REP+

 

 

aonde first e second essa parte doPlayerAddOutfit(cid, femaleOutfits[param][1], 1)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 1)

 

ali no ultimo aonde ta um eu modifiquei entao so vai vim first

Editado por Zmovir
Link para o comentário
Compartilhar em outros sites

  • 0
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}, ["norsewoman"]={252}, ["nightmare"]={269}, ["jester"]={270}, ["brotherhood"]={279}, ["demonhunter"]={288}, ["yalaharian"]={324} }

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}, ["norsewoman"]={251}, ["nightmare"]={268}, ["jester"]={273}, ["brotherhood"]={278}, ["demonhunter"]={289}, ["yalaharian"]={325} }

local msg = {"Digite o nome correto!", "Voce não possui Addon Doll!", "Bad param!", "Você recebeu seu addons!"}

local param = string.lower(param)

if(getPlayerItemCount(cid, 2112) > 0) then

if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then

doPlayerRemoveItem(cid, 2112, 1)

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[4])

doSendMagicEffect(getCreaturePosition(cid), CONST_ME_GIFT_WRAPS)

if(getPlayerSex(cid) == 0)then

doPlayerAddOutfit(cid, femaleOutfits[param][1], 1)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 1)

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[1])

end

else

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, msg[2])

end

end

procura

em config.lua addonsOnlyPremium = true se tiver assim coloca addonsOnlyPremium = false

 

 

se ajudei REP+

 

 

aonde first e second essa parte doPlayerAddOutfit(cid, femaleOutfits[param][1], 1)

else

doPlayerAddOutfit(cid, maleOutfits[param][1], 1)

 

ali no ultimo aonde ta um eu modifiquei entao so vai vim first

 

Ixi vei, aparece que eu recebi o addon mas ele não aparece! Não tem como usar só aparece que recebe

___________________

EDIT

 

Funcionou cara! o que eu tinha feito de errado é que eu não tinha add o addonsOnlyPremium = false direito! faltava a letra "a"! haha! Como prometido 5 rep's! 1 por dia hoje já vai 1! ;P Valéu vei!

Editado por daduloko
Link para o comentário
Compartilhar em outros sites

  • 0

vame m seu config e procura por isso:

 

[u][b]addonsOnlyPremium[/b][/u]

 

coloque para false se estiver true ou se tiver 1 coloque 0

 

caso nao tenha adicione esse linha:

 

addonsOnlyPremium = false

 

pronto agora funcionará normalmente!

 

Ajudei? +rep!

 

e claro se fizer essa mudança em um ot online reinicie ele q sera aplicada as modificaçoes do config!

 

Até, nao esqueça do +rep!

Link para o comentário
Compartilhar em outros sites

  • 0
function onSay(cid, words, param, channel)

local cfg = {

["citizen"] = {

outfit = {

male = 128,

female = 136,

addon = 1,

storage = 11001

},

items = {

{2112,1}

}

},

["hunter"] = {

outfit = {

male = 129,

female = 137,

addon = 1,

storage = 11002

},

items = {

{2112,1}

}

},

["mage"] = {

outfit = {

male = 130,

female = 138,

addon = 1,

storage = 11003

},

items = {

{2112,1}

}

},

["knight"] = {

outfit = {

male = 131,

female = 139,

addon = 3,

storage = 11004

},

items = {

{2112,1}

}

},

["nobleman"] = {

outfit = {

male = 132,

female = 140,

addon = 1,

storage = 11005

},

items = {

{2112,1}

}

},

["summoner"] = {

outfit = {

male = 133,

female = 141,

addon = 1,

storage = 11006

},

items = {

{2112,1}

}

},

["warrior"] = {

outfit = {

male = 134,

female = 142,

addon = 1,

storage = 11007

},

items = {

{2112,1}

}

},

["barbarian"] = {

outfit = {

male = 147,

female = 143,

addon = 3,

storage = 11008

},

items = {

{2160,100}

}

},

["druid"] = {

outfit = {

male = 148,

female = 144,

addon = 1,

storage = 11009

},

items = {

{2112,1}

}

},

["wizard"] = {

outfit = {

male = 149,

female = 145,

addon = 3,

storage = 11010

},

items = {

{2112,1}

}

},

["oriental"] = {

outfit = {

male = 150,

female = 146,

addon = 3,

storage = 11011

},

items = {

{2112,1}

}

},

["pirate"] = {

outfit = {

male = 151,

female = 155,

addon = 1,

storage = 11012

},

items = {

{2112,1}

}

},

["assassin"] = {

outfit = {

male = 152,

female = 156,

addon = 1,

storage = 11013

},

items = {

{2112,1}

}

},

["beggar"] = {

outfit = {

male = 153,

female = 157,

addon = 1,

storage = 11014

},

items = {

{2112,1}

}

},

["shaman"] = {

outfit = {

male = 154,

female = 158,

addon = 1,

storage = 11015

},

items = {

{2112,1}

}

},

["norseman"] = {

outfit = {

male = 251,

female = 252,

addon = 1,

storage = 11016

},

items = {

{2112,1}

}

},

["nightmare"] = {

outfit = {

male = 268,

female = 269,

addon = 3,

storage = 11017

},

items = {

{2112,1}

}

},

["jester"] = {

outfit = {

male = 273,

female = 270,

addon = 3,

storage = 11018

},

items = {

{2112,1}

}

},

["brotherhood"] = {

outfit = {

male = 278,

female = 279,

addon = 1,

storage = 11019

},

items = {

{2112,1}

}

},

["demon hunter"] = {

outfit = {

male = 289,

female = 288,

addon = 1,

storage = 11020

},

items = {

{2112,1}

}

},

["yalaharian"] = {

outfit = {

male = 325,

female = 324,

addon = 1,

storage = 11021

},

items = {

{2112,1}

}

},

["wayfarer"] = {

outfit = {

male = 366,

female = 367,

addon = 1,

storage = 11023

},

items = {

{2112,1}

}

},

["warmaster"] = {

outfit = {

male = 335,

female = 336,

addon = 1,

storage = 11022

},

items = {

{2112,1}

}

}

}

local v, removeItems = cfg[param], 0, 0

if(param == "") then

doPlayerSendCancel(cid, "Command requires param.")

return true

end

if(getPlayerStorageValue(cid, v.outfit.storage) == -1) then

for i = 1, #v.items do

if(getPlayerItemCount(cid, v.items[1]) >= v.items[2]) then

removeItems = removeItems+1

end

end

if(removeItems == #v.items) then

if(getPlayerSex(cid) == 1) then

doPlayerAddOutfit(cid, v.outfit.male, v.outfit.addon)

elseif(getPlayerSex(cid) == 0) then

doPlayerAddOutfit(cid, v.outfit.female, v.outfit.addon)

end

for i = 1, #v.items do

doPlayerRemoveItem(cid, v.items[1], v.items[2])

end

doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você recebeu uma nova outfit!")

doSendMagicEffect(getThingPos(cid), CONST_ME_FIREWORK_YELLOW)

setPlayerStorageValue(cid, v.outfit.storage, 1)

else

for i = 1, #v.items do

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "você precisa " .. v.items[2] .. "x " .. getItemNameById(v.items[1]) .. " para comprar a outfit.")

end

end

else

doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_RED, "Você ja tem está outfit.")

end

return true

end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...