Ir para conteúdo

Subwat

Infante
  • Total de itens

    1516
  • Registro em

  • Última visita

  • Dias Ganhos

    24

Tudo que Subwat postou

  1. o do heroserv nao vai points no site nao fih. vai ITEM points,que é por storage. e que eu sei fazer ,mas eu fiz por vip coin pois é mais interessante. xd
  2. Informação Bom pessoal,me baseando no servidor heroserv,que tem comandos parecidos,resolvi fazer um comando no qual você poderá comprar items donates e vende-los por comando,isso pode ser muito útil para otservers que vendam items VIPS. !sellitem este comando você poderá vender seus items VIPS por moedas VIP (vip coin). !buyitem este comando você poderá comprar items VIPS por moedas VIP (vip coin). segue abaixo os scripts,já tendo os items VIPS do heroserv,para venda e compra,mude as IDS conforme os items VIPS do seu server. COMANDO !buyitem function onSay(cid, words, param) if param == "wand" or param == "special wand" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,7424,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "axe" or param == "special axe" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,8925,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "club" or param == "special club" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,8929,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "sword" or param == "special sword" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,8932,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "arrow" or param == "special arrow" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,2352,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "bow" or param == "special bow" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,8853,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "hat" or param == "special hat" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,6096,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "armor" or param == "special armor" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,6095,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "legs" or param == "special legs" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,5918,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "boots" or param == "special boots" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,5462,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "shield" or param == "special shield" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,2527,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "life" or param == "life scroll" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,11539,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "mana" or param == "mana scroll" then if doPlayerRemoveItem(cid,11192,5) then doPlayerAddItem(cid,11523,1) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end end tag: <talkaction words="!buyitem" script="buyitems.lua"/> COMANDO !sellitem function onSay(cid, words, param) if param == "wand" or param == "special wand" then if doPlayerRemoveItem(cid,7424,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "axe" or param == "special axe" then if doPlayerRemoveItem(cid,8925,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "club" or param == "special club" then if doPlayerRemoveItem(cid,8932,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "arrow" or param == "special arrow" then if doPlayerRemoveItem(cid,2352,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "bow" or param == "special bow" then if doPlayerRemoveItem(cid,8853,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "boots" or param == "special boots" then if doPlayerRemoveItem(cid,5462,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "legs" or param == "special legs" then if doPlayerRemoveItem(cid,5918,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "armor" or param == "special armor" then if doPlayerRemoveItem(cid,6095,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "hat" or param == "special hat" then if doPlayerRemoveItem(cid,6096,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end if param == "shield" or param == "special shield" then if doPlayerRemoveItem(cid,2527,1) then doPlayerAddItem(cid,11192,5) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else doPlayerSendCancel(cid, 'voce nao tem este item.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FLAMEAREA) end end end TAG: <talkaction words="!sellitem" script="sellitems.lua"/> Créditos: Subwat (Gean Riot) gostou da um REP+,se não puder tudo bem vou entender. valeu. Esqueci de falar do vip coin. vai em items.xml procura pela ID 11192 e poe isso. <item id="11192" name="vip coin"> <attribute key="description" value="item de credito para sellitem e buyitem." /> <attribute key="weight" value="10" /> </item>
  3. absolute24h.servegame.com 24HORAS ONLINE HÁ 6 MESES FAZENDO A ALEGRIA DA GALERA contas pelo account manager mapa próprio.

  4. pra fazer sucesso,só vocÊ ser um noob,com 55 reais na mão comprar um dedicado,baixar um baiak lixo scroto q n caia,por 999x,e largar on... pronto ta fazendo sucesso.... hoje em dia é assim mesmo,nao adianta ter RPG,TER MAPA PROPRIO,TER coisas legais e tals,na adianta,tem que ser zuado o ot,tem que ser baiak e ser 999x,e milhares de TPS,E areas de hunt quadradas,e frost dragons no fogo. pode ter certeza que vai ficar famosão.
  5. você pegou de meu servidor riot server. fui eu que fiz,mas era por crystal coins. script original. function onSay(cid, words, param) local premium = "yes" -- Apenas players premium accounts "yes" or "no"!? if premium == "yes" and not isPremium(cid) then return doPlayerPopupFYI(cid,"Apenas Premium Account Podem Healar Sua estamina.") end if doPlayerRemoveItem(cid,2160,100) then doPlayerAddStamina(cid,100000000) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_HOLYAREA) doPlayerSendTextMessage(cid,25,"Você será kickado em 3 segundos Para adicionar a stamina.") addEvent(doRemoveCreature, 3*1000, cid, true) else doPlayerSendCancel(cid, 'You do not have 100 crystal coins.') doSendMagicEffect(getPlayerPosition(cid), CONST_ME_FIREEAREA) end end como é uma potion nao fica legal usando talkaction,e sim usando uma action,na qual basta dar use no item. segue o exemplo abaixo function onUse(cid, item, fromPosition, itemEx, toPosition) local premium = "yes" -- Apenas players premium accounts "yes" or "no"!? if premium == "yes" and not isPremium(cid) then return doPlayerPopupFYI(cid,"you're not premium account.") end if item.itemid == 5468 then doRemoveItem(item.uid,item.type) doPlayerAddStamina(cid,100000000) doCreatureSay(cid, "stamina restored.", TALKTYPE_ORANGE_1) doPlayerSendTextMessage(cid,25,"Você será kickado em 3 segundos Para adicionar a stamina.") addEvent(doRemoveCreature, 3*1000, cid, true) end end tag em actions: <action itemid="5468" script="nomedoarquivo.lua" />
  6. absolute24h.servegame.com

  7. sexo sexo,dinheiro,dinheiro,mulheres,mulheres,fazer sexo anal.

  8. sexo sexo,dinheiro,dinheiro,mulheres,mulheres,fazer sexo anal.

  9. estou preparando tudo no servidor,em breve a versão 20.0 oficial estará lançada neste mesmo topico. depois trago algumas imagens para vocÊs ja irem conferindo. vlw
  10. não vejo nada que você tenha arrumado no script.. está igual o que tem no servidor né. mas ok asokpaokskoas
  11. quero um comando que o adm digita /resetar,e todos os players do ot voltam pro lvl 20,para sqlite. Obrigado.
  12. pior que tem limite mesmo,o limite é 2kkk de life,meu ot exp alta tmbm tem isso,eu uso o comando buyvida,ae quando chega no 2kkk ela começa a voltar a vida..,ou quando eu vo fazer um bixo com mais de 2kkk de life,ele ja nasce morto. xD é nas sources só se vc souber mecher pra arrrumar isso xD
  13. ja retira 100 reps dele e poe em mim.
  14. idai. xantera tmbm n é OT KKKKKKKKKK
  15. mexera
  16. ae Pessoalzinho do bar bora jogar www.xanteraserver.net melhor global que eu ja joguei melhor que esse pythera e nao tem lag nem bugs '-' quem for jogar fala ae que eu do uma ajuda !!! Algumas informações: • IP: xanteraserver.net • PORT: 7171 • PROTOCOLO: 8.60 Rates: - Skill Rate: 30x; - Magic Rate: 15x; - Loot Rate: 3x. - Spawn: 2x. - World Type: PVP. - Experience Stages: (1 to 30: 100x) (31 to 50: 80x) (51 to 80: 60x) (81 to 100: 40x) (101 to 120: 20x) (121 to 140: 10x) (141 to 160: 5x) (161 to 180: 4x) (181 to 200: 3x) (201 to 221: 2x) (221 + : 1x) BORA JOGAR SEUS HOMOSSEXUAIS >.< (NADA CONTRA TMMB SOU)
  17. Voltando ao ekztibia,hehe =)

  18. vocÊ nao é lenda,você é um pessoa eioeioieoioe
  19. Subwat

    Subwat V17

    eoieioeoi falando de mim aqui estou eu =] vou baixar pra ver =]
  20. ti amo maria beatriz knibel : P

  21. eae lycanYundari suhuhas, quanto voce pretende me pagar? uhul =] ge lindo aki
  22. né ppodecre adogo em breve atualizações sem bugs =]
  23. credo que tópico mal feito uhsahuashuas. vou baixar pra conferir/ bjos
  • Quem Está Navegando   0 membros estão online

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