Ir para conteúdo

Saymon14

Conde
  • Total de itens

    544
  • Registro em

  • Última visita

  • Dias Ganhos

    9

Tudo que Saymon14 postou

  1. ShermanI DiogoTemporario Zutun Hj ta bem balanceado
  2. Tipo eu recomendo usar esse rank para criaturas "Boss", porque ai fica melhor, sabendo usar dar para ficar interessante Abraços
  3. O que é ? É um script com o qual você pode ver quem matou mais criaturas. Como uso ele? Para você usar é só falar: !killers MONSTER_NAME Exemplo: !killers rat •Crie um arquivo com o nome "killers.lua" em data/talkactions/scripts/ e cole isso dentro: local monsters = { --name = storage ["rat"] = 35001, ["cave rat"] = 35002, ["hydra"] = 35003, ["dragon"] = 35004 } function onSay(cid, words, param) -- max players on the highscore local players = 20 -- The amount of players that is shown in the list -- don't touch -- local str = "" local value = "" local name = "" local player_id = 0 local result = nil local namis = param local crat = monsters[string.lower(namis)] if (crat) then str = "# Top "..param.." Killers\n" value = "value" player_id = "player_id" result = db.getResult("SELECT `player_id`, `value` FROM `player_storage` WHERE `key` = "..crat.." ORDER BY `value` DESC, `player_id` ASC;") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Fale !killers [monster name].") return TRUE end if (result:getID() ~= -1) then local i = 1 while TRUE do str = str .. "\n " .. i .. ". [" .. result:getDataInt(value) .. "] - " .. (name ~= "" and result:getDataString("name") or getPlayerNameByGUID(result:getDataInt(player_id))) i = i+1 if not(result:next()) or i > players then break end end result:free() end if str ~= "" then doPlayerPopupFYI(cid, str) end return TRUE end •coloque em talkactions.xml: <talkaction words="!killers" event="script" value="killers.lua"/> Você precisa editar a Data Base para funcionar perfeitamente. Vai em player_storage e altere o value de varchar(255) para int(10). Creditos || PHBS
  4. tenta esse do Vodkart function onLook(cid) if getPlayerStorageValue(cid, 11548) >= 1 then doPlayerSetSpecialDescription(cid, " [Gennin]") end return TRUE end if getPlayerStorageValue(cid, 11548) >= 1 then eu acho que pode usar tanto onLook como onLogin
  5. O que aconteceu com os topicos que foram recomendados ? Apropósito, bela edição
  6. Essa barra lateral ja ta atrapalhando o [*b][*/b], to tendo que colocar manualmente, e sobre essa radio ja foi discutida duas vezes foi reprovado.
  7. Esse script mostra a quantidade de frags que o player tem quando voce da look nele exemplo: You see Theax. He is a Royal Paladin.[frags:43] Crie na pasta Data/Creaturescripts/script o arquivo fraglook.lua e cole isso --Script By Theax "" function getPlayerFrags(cid) 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 = {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) } return size.day + size.week + size.month end function onLogin(cid) registerCreatureEvent(cid, "fraglook") return true end function onLook(cid, thing, position, lookDistance) if isPlayer(thing.uid) and thing.uid ~= cid then doPlayerSetSpecialDescription(thing.uid,'[Frags: '..getPlayerFrags(thing.uid)..']') return true elseif thing.uid == cid then doPlayerSetSpecialDescription(cid,'[Frags: '..getPlayerFrags(cid)..']') local string = 'You see yourself.' if getPlayerFlagValue(cid, PLAYERFLAG_SHOWGROUPINSTEADOFVOCATION) then string = string..' You are '.. getPlayerGroupName(cid) ..'.' elseif getPlayerVocation(cid) ~= 0 then string = string..' You are '.. getPlayerVocationName(cid) ..'.' else string = string..' You have no vocation.' end string = string..getPlayerSpecialDescription(cid)..'' if getPlayerNameByGUID(getPlayerPartner(cid), false, false) ~= nil then string = string..' You are '.. (getPlayerSex(cid) == 0 and 'wife' or 'husband') ..' of '.. getPlayerNameByGUID(getPlayerPartner(cid)) ..'.' end if getPlayerGuildId(cid) > 0 then string = string..' You are ' .. (getPlayerGuildRank(cid) == '' and 'a member' or getPlayerGuildRank(cid)) ..' of the '.. getPlayerGuildName(cid) string = getPlayerGuildNick(cid) ~= '' and string..' ('.. getPlayerGuildNick(cid) ..').' or string..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEECREATUREDETAILS) then string = string..'nHealth: ['.. getCreatureHealth(cid) ..' / '.. getCreatureMaxHealth(cid) ..'], Mana: ['.. getCreatureMana(cid) ..' / '.. getCreatureMaxMana(cid) ..'].' string = string..'nIP: '.. doConvertIntegerToIp(getPlayerIp(cid)) ..'.' end if getPlayerFlagValue(cid, PLAYERCUSTOMFLAG_CANSEEPOSITION) then string = string..'nPosition: [X:'.. position.x..'] [Y:'.. position.y..'] [Z:'.. position.z..'].' end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, string) return false end return true end Agora no Data/Creaturescripts/creaturescripts.xml adicione essas tags: <event type="login" name="fraglook_register" event="script" value="fraglook.lua"/> <event type="look" name="fraglook" event="script" value="fraglook.lua"/> •Creditos Theax
  8. Até que enfim Mount System no Global, ja tava passando da hora ¬¬'

    1. Fir3element

      Fir3element

      só falta pokeball e fly =D

  9. Vo tomar café e ir pra escola, falow ;D

  10. O que que a vaca disse pro gafanhoto ?

    1. Powerzin

      Powerzin

      volte pra pokebola

    2. ninkox
    3. Saymon14

      Saymon14

      AF, POLVO SEM CULTURA

  11. Nossa nessa nova versao melhorou bastante ein, vo ficar aguardando as novas versões
  12. poha nem teve o apagao, vsf .i.

  13. fiquei sabendo que vai ter apagao hj na minha city, só vai voltar a energy 6 da noite, daqui a pouco vai cair a energia :(

  14. Soca, Soca, ela gosta de passoca...

  15. Saymon14

    Lol?

    DEXA O KAKILIS GOZTOZAO
  16. Esse Rola Doida era eu, rsrs Muito bom o script, essencial aos outros ranks. Abraços
  17. JV Socialista, riairariair

  18. essa textura da madeira fico meio que 3D, a grama nao curti muito Abraços
  19. Woow, gostei bastante. Isso seria varios efeitos em uma area só ? Abraços, Recomendado.
  20. é porque nao precisa nescessariamente usar o function onLook
  • Quem Está Navegando   0 membros estão online

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