Ir para conteúdo

Baiakuda

Campones
  • Total de itens

    45
  • Registro em

  • Última visita

Tudo que Baiakuda postou

  1. estou com esse erro : To use reCAPTCHA you must get an API key from http://www.google.com/recaptcha
  2. problema resolvido, podem fechar o topico, era um erro besta no config.lua vlw mesmo assim!
  3. já esta assim tb kkk disableOutfitsForPrivilegedPlayers = false
  4. já tentei e não deu certo
  5. Já esta assim como você pode ver abaixo, os outfits estão para os free porem eles nao conseguem fazer ADDON ;/ <?xml version="1.0"?> <outfits> <outfit id="1"> <list gender="0" lookType="136" name="Citizen"/> <list gender="1" lookType="128" name="Citizen"/> </outfit> <outfit id="2"> <list gender="0" lookType="137" name="Hunter"/> <list gender="1" lookType="129" name="Hunter"/> </outfit> <outfit id="3"> <list gender="0" lookType="138" name="Mage"/> <list gender="1" lookType="130" name="Mage"/> </outfit> <outfit id="4"> <list gender="0" lookType="139" name="Knight"/> <list gender="1" lookType="131" name="Knight"/> </outfit> <outfit id="5" premium="no"> <list gender="0" lookType="140" name="Noblewoman"/> <list gender="1" lookType="132" name="Nobleman"/> </outfit> <outfit id="6" premium="no"> <list gender="0" lookType="141" name="Summoner"/> <list gender="1" lookType="133" name="Summoner"/> </outfit> <outfit id="7" premium="no"> <list gender="0" lookType="142" name="Warrior"/> <list gender="1" lookType="134" name="Warrior"/> </outfit> <outfit id="8" premium="no"> <list gender="0" lookType="147" name="Barbarian"/> <list gender="1" lookType="143" name="Barbarian"/> </outfit> <outfit id="9" premium="no"> <list gender="0" lookType="148" name="Druid"/> <list gender="1" lookType="144" name="Druid"/> </outfit> <outfit id="10" premium="no"> <list gender="0" lookType="149" name="Wizard"/> <list gender="1" lookType="145" name="Wizard"/> </outfit> <outfit id="11" premium="no"> <list gender="0" lookType="150" name="Oriental"/> <list gender="1" lookType="146" name="Oriental"/> </outfit> <outfit id="12" premium="no"> <list gender="0" lookType="155" name="Pirate"/> <list gender="1" lookType="151" name="Pirate"/> </outfit> <outfit id="13" premium="no"> <list gender="0" lookType="156" name="Assassin"/> <list gender="1" lookType="152" name="Assassin"/> </outfit> <outfit id="14" premium="no"> <list gender="0" lookType="157" name="Beggar"/> <list gender="1" lookType="153" name="Beggar"/> </outfit> <outfit id="15" premium="no"> <list gender="0" lookType="158" name="Shaman"/> <list gender="1" lookType="154" name="Shaman"/> </outfit> <outfit id="16" premium="no"> <list gender="0" lookType="252" name="Norsewoman"/> <list gender="1" lookType="251" name="Norseman"/> </outfit> <outfit id="17" premium="no"> <list gender="0" lookType="269" name="Nightmare"/> <list gender="1" lookType="268" name="Nightmare"/> </outfit> <outfit id="18" premium="no"> <list gender="0" lookType="270" name="Jester"/> <list gender="1" lookType="273" name="Jester"/> </outfit> <outfit id="19" premium="no"> <list gender="0" lookType="279" name="Brotherhood"/> <list gender="1" lookType="278" name="Brotherhood"/> </outfit> <outfit id="20" premium="no"> <list gender="0" lookType="288" name="Demonhunter"/> <list gender="1" lookType="289" name="Demonhunter"/> </outfit> <outfit id="21" premium="no"> <list gender="0" lookType="324" name="Yalaharian"/> <list gender="1" lookType="325" name="Yalaharian"/> </outfit> <outfit id="22" premium="no"> <list gender="0" lookType="336" name="Warmaster"/> <list gender="1" lookType="335" name="Warmaster"/> </outfit> <outfit id="23" default="0"> <list gender="0" lookType="329" name="Wife"/> <list gender="1" lookType="328" name="Husband"/> </outfit> <outfit id="24" premium="no"> <list gender="0" lookType="366" name="Wayfarer"/> <list gender="1" lookType="367" name="Wayfarer"/> </outfit> </outfits>
  6. Gostaria de saber porque quando eu crio char pelo acc ele nao deixa os players escolherem as suas vocações. ele começa com "no vocation" Ja fiz tudo como manda no topico abaixo http://www.xtibia.com/forum/topic/170348-usar-account-manager-site-gesior/
  7. funcionou, grato! rep+ !!!
  8. Gostaria de saber como faço pra liberar os ADDONS 1 E 2 para os Free ACC, pois somente os PREMIUM conseguem usar, se alguem souber por favor me ensina ai, dou rep+ !
  9. realmente desisto, acho que isso oque eu quero ninguém sabe me ajudar, podem fechar o tópico!
  10. eu achei e já esta assim, e msm assim qndo o player é free ele nao consegue usar os ADDONS
  11. ele removeu os frags sim, pq antes eu tinha 25 frags ( 25 frags = red ), depois que eu usei o item fiquei com 0 frags, só que quando eu reloguei estava com 0 FRAGS e Red Skull =O
  12. é no config.lua né? eu achei e já esta assim, e msm assim qndo o player é free ele nao consegue usar os ADDONS
  13. Olá, estou usando o script abaixo pra remover frags, ele remove os frags, porem quando eu relogo o char ele fica red skull novamente, alguem sabe o pq? <?xml version="1.0" encoding="UTF-8"?> <mod name="Frag Remover" version="1.1" author="Hermes" contact="otland.net" enabled="yes"> <action itemid="9969" event="script"><![CDATA[ local noRemove = {SKULL_WHITE, SKULL_YELLOW} local playerSkull = getPlayerSkullType(cid) if isInArray(noRemove, playerSkull) then doPlayerSendCancel(cid, "You can't remove this type of skull.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) return true elseif playerSkull == SKULL_NONE then doPlayerSendCancel(cid, "You don't have skull.") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_POFF) return true else db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")") doPlayerSendTextMessage(cid, 27, "Your frags & your skull have been removed!") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MAGIC_RED) doSendAnimatedText(getPlayerPosition(cid), "POFF!", 180) doCreatureSetSkullType(cid,0) doPlayerSetSkullEnd(cid, 0, playerSkull) doRemoveItem(item.uid, 1) end return true ]]></action> </mod>
  14. PERFEITO, MUITO OBRIGADO ... REP+ !!! eu tinha te dado rep+ em outro post meu, entao nesse nao da pq aparece isso \/ Você já atingiu seu limite de reputações positivas para hoje mas amanha eu venho aqui só pra dar o REP!!!
  15. FUNCIONOU, MUITO OBRIGADO! Posso lhe pedir só mais um favor? tem como não aparecer isso (mostrar só o ultimo que eu matei e não mostrar todos) \/ * 18 December 2012 12:33:39 at Corinthians The Champion on level 208 * 18 December 2012 12:32:10 at Corinthians The Champion on level 210 * 18 December 2012 12:31:26 at Corinthians The Champion on level 211 * 18 December 2012 12:30:52 at Corinthians The Champion on level 213 * 18 December 2012 12:30:25 at Corinthians The Champion on level 214 * 18 December 2012 12:30:01 at Corinthians The Champion on level 216 * 18 December 2012 12:29:35 at Corinthians The Champion on level 218
  16. Vou tentar explicar novamente... SE eu deixar no config freepremium = false, OS PLAYERS NAO CONSEGUEM USAR OS ADDONS SE eu deixar no config freepremium = true, NÃO APARECE OS DIAS DE VIP, APARECE ISSO \/ EU GOSTARIA QUE APARECE-SE, GRATIS PREMIUM PARA OS FREE E PARA OS VIP ASSIM: ACCOUN STATUS: 10 DIAS PREMIUM ( EXEMPLO )
  17. não adiantou, se o player for FREE ACCOUNT, os addons não aparecem ;/
  18. agora não deu o erro, porem continua aparecendo os frags naquela telinha e essa telinha some quando o player tem mais de 10 frags! Será que é minha pasta LIB ou minhas Distros?
  19. deu esse erro aqui na linha 62 \/ unexpected sumbol near ' [ '
  20. já esta true, mas ainda não resolveu meu problema, mais alguém ai gostaria de me ajuda?
  21. se eu deixar os players sem premium account eles nao consegue usar os addons =x gostaria que desse pra eles terem a premium gratis ;x
  22. Não sei nem explicar como isso acontece, só sei que se o player tiver mais de 10 frags, ele não consegue usar o talkction "!frags", e quando ele tem menos de 10 ele usa e aparece isso \/ Minha talkactions de !frags \/ local config = { useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')), advancedFragList = getBooleanFromString(getConfigValue('advancedFragList')) } function onSay(cid, words, param, channel) if(not config.useFragHandler) then return FALSE end local time = os.time() local times = {today = (time - 86400), week = (time - (7 * 86400))} local contents, result = {day = {}, week = {}, month = {}}, db.getResult("SELECT `pd`.`date`, `pd`.`level`, `p`.`name` FROM `player_killers` pk LEFT JOIN `killers` k ON `pk`.`kill_id` = `k`.`id` LEFT JOIN `player_deaths` pd ON `k`.`death_id` = `pd`.`id` LEFT JOIN `players` p ON `pd`.`player_id` = `p`.`id` WHERE `pk`.`player_id` = " .. getPlayerGUID(cid) .. " AND `k`.`unjustified` = 1 AND `pd`.`date` >= " .. (time - (30 * 86400)) .. " ORDER BY `pd`.`date` DESC") if(result:getID() ~= -1) then repeat local content = { name = result:getDataString("name"), level = result:getDataInt("level"), date = result:getDataInt("date") } if(content.date > times.today) then table.insert(contents.day, content) elseif(content.date > times.week) then table.insert(contents.week, content) else table.insert(contents.month, content) end until not result:next() result:free() end local size = { day = table.maxn(contents.day), week = table.maxn(contents.week), month = table.maxn(contents.month) } if(config.advancedFragList) then local result = "Frags gained today: " .. size.day .. "." if(size.day > 0) then for _, content in ipairs(contents.day) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end result = result .. "\nFrags gained this week: " .. (size.day + size.week) .. "." if(size.week > 0) then for _, content in ipairs(contents.week) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end result = result .. "\nFrags gained this month: " .. (size.day + size.week + size.month) .. "." if(size.month > 0) then for _, content in ipairs(contents.month) do result = result .. "\n* " .. os.date("%d %B %Y %X at ", content.date) .. content.name .. " on level " .. content.level end result = result .. "\n" end local skullEnd = getPlayerSkullEnd(cid) if(skullEnd > 0) then result = result .. "\nYour " .. (getCreatureSkullType(cid) == SKULL_RED and "red" or "black") .. " skull will expire at " .. os.date("%d %B %Y %X", skullEnd) end doPlayerPopupFYI(cid, result) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You currently have " .. size.day .. " frags today, " .. (size.day + size.week) .. " this week and " .. (size.day + size.week + size.month) .. " this month.") if(size.day > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Last frag at " .. os.date("%d %B %Y %X", contents.day[1].date) .. " on level " .. contents.day[1].level .. " (" .. contents.day[1].name .. ").") end local skullEnd = getPlayerSkullEnd(cid) if(skullEnd > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Your " .. (getCreatureSkullType(cid) == SKULL_RED and "red" or "black") .. " skull will expire at " .. os.date("%d %B %Y %X", skullEnd)) end end return TRUE end
  23. Desculpa acho que não expliquei direito, é o seguinte eu uso o sistema "FREE PREMIUM ACCOUNT", pra todos terem premium, só que antigamente eu tinha um script (perdi ele) que quando o player coloca-se vip aparece na tela do char os dias de vip. Se o player fosse free apareceria "gratis premium account" se fosse vip iria aparecer "10 days premium account" (exemplo)
  24. Acredito que seja simples para vocês, porem pra mim é muito complicado, tentei, tentei e não consegui, enfim... Quando algum player FREE ACCOUNT usa esse script de addon doll, o addon doll some porem os addons nao aparecem, só funciona se o char for premium account. 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},["wayfarer"]={366},["warmaster"]={336} } 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},["wayfarer"]={367},["warmaster"]={335} } 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, 9693) > 0) then if(param ~= "" and maleOutfits[param] and femaleOutfits[param]) then doPlayerRemoveItem(cid, 9693, 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
  25. Olá, é o seguinte, eu uso um sistema de vip e gostaria que quando o player ganha-se "x" dias de vip ele mesmo tanto em dias de premium, e quando acabar a vip acaba-se a premium dele tambem. MEU SISTEMA VIP (talkaction) \/ local config = { vip = "yes", storage = 13500 } function onSay(cid, words, param, channel) if words == "/buyvip" then local days = 10 local storageplayer = getPlayerStorageValue(cid, 13500) if doPlayerRemoveItem(cid, 8981, 1) then addVipDays(cid, days) doPlayerAddPremiumDays(cid, days) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você adicionou "..days.." dia(s) de vip, agora você possui "..getVipDays(cid).." dia(s) de vip.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você não tem vip doll para ativar sua vip.") end elseif words == "/vipdays" then local duration = getVipDate(cid) doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Você possui "..getVipDays(cid).." dia(s) de vip."..(duration and (" Ela irá durar até "..duration..".") or "")) end return TRUE end <talkaction words="/buyvip;/vipdays" event="script" value="vipaccplayer.lua"/>
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...