Ir para conteúdo

JaraguahOt

Campones
  • Total de itens

    13
  • Registro em

  • Última visita

Tudo que JaraguahOt postou

  1. teve uma parte q eu nao entendi, logo no final do video voce manda fazer uma pasta em htdocs com o nome de SITE, e dps vc manda colocar o site q tava usando dentro dessa? nao entendi essa parte ajuda
  2. rpz, sinceramente nao sei onde colocar isso! me explica ae em qual arquivo eu devo colocar porfavor!
  3. a primeira ja consegui agora falta a segunda! alguem me ajuda!
  4. È o seguinte, preciso de um script de um npc que vai funcionar assim: se o player tiver um anel ele fala com o npc e o npc da uma recompensa pro player! E o segundo é o seguinte, quero fazer uma quest, e queria fazer essa quest assim, quando o player clikar em um item no chão o item some e ele ganha um anel! pra que? quero esse script pq eu vo fazer um evento no meu ot, que quem achar esse anel(que no caso será uma quest) vai no NPC e Ganha sua recompensa! vlw REP+ pra quem me ajudar!
  5. coloquei mais quando eu coloko o nome de um bixo e aperto get task nao funciona me ajuda
  6. kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk oia o começo kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk "velho ferah seu tuto e tals tem tudu menos uq eu keria sab tpw kara"
  7. éh n meu pc é bom mano nunca tive esse problema! sempre tive OT global e nunca tive eesse problema, nunca foi lag q nennhum player reclama disso!
  8. é isso? se nao for isso fala oq eu devo posta aki!
  9. é o seguinte, eu tenho o sistema de vIP by mock, so q quando a vip acaba o player continua vip, tipo o cara tem vip de um dia no outro dia eu falo o comando /vip see nome do player, ai fala q o player nao tem mais vip so que ele continua entrando nas areas vip!! oq eu faço gente? sim... e outra coisinha q nao sei se ta na area certa mais vo pergunta, tbm no site os statos da vip fika la certo em verder VIP, so que eu deleto a vip do cara, /vip del nome do player, e o status continua VIP, so q ele nao ta mais vip! essas são minhas duvidas!! vlw ae
  10. ae nao éh nada disso de guild war, é pq no server tfs 0.4 nenhum membro da staff pode pegar loot dos bixo, GOD e outros nao podem! pensei q fosse um problema mais nao éh nao! podem fechar o topico!
  11. é o seguinte, quando alguem vai abrir uma bag demora para poder abrir ex: no ot quando a pessoa empurra outra de perto, ela demora um pouco pra se mover, agora se vc tiver com um sqm de distancia ela é empurrada rapidamente. ta acontecendo a msm coisa com as bag, e loot dos bixos! alguem pode me dar uma ajuda?? vlw EDIT esqueci de falar que eu estou usando o TFs 0.4 o mais novo!! EDIT Tbm esqueci de dizer, que nao dar lag nao é normal nenhum lag!
  12. estou com o mesmo problema, se vc consegui resolver mim add no msn e mim ajuda porfavor cara! msn : junior_m.s@hotmail.com
  13. comigo ta acontecendo a msm coisa! ajuda plssssssss!!!!!!!!
  14. cara script nota 10000 muito bom, so que eu estou com um probleminha, é o seguinte ele funciona massa so que tipo, se eu usar ele o xp nao para fika somente nakele, tipo assim eu pego o lvl 100, ai eu uso ele mato um bixo ele ta sempre akele xp, msm se tiver no lvl 150 vai ser o msm xp, tipo xp de lvl sem stages, so que esse msm lvl que for vai ser akela quantidade de xp poderia mim ajudar? ou pode até ser que esse ring cancele a exp estage do ot tipo colocar esse ring em stages tlg, pra lvl 100 tanto de xp?? ou até arrumar so esse bug estaria de bom tamanho! vlwww REP+ pra ti
  15. no lugar desse arquivo .lua voce coloca esse --[[ Offline player to player item trader (Auction System) by vDk Script version: 1.2a [ -- FIXED CLONE ITEMS BUG -- ] ]]-- local config = { levelRequiredToAdd = 20, maxOffersPerPlayer = 5, SendOffersOnlyInPZ = true, blocked_items = {2165, 2152, 2148, 2160, 2166, 2167, 2168, 2169, 2202, 2203, 2204, 2205, 2206, 2207, 2208, 2209, 2210, 2211, 2212, 2213, 2214, 2215, 2343, 2433, 2640, 6132, 6300, 6301, 9932, 9933} } function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end local t = string.explode(param, ",") if(t[1] == "add") then if((not t[2]) or (not t[3]) or (not t[4])) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.") return true end if(not tonumber(t[3]) or (not tonumber(t[4]))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You don't set valid price or items count.") return true end if(string.len(t[3]) > 7 or (string.len(t[4]) > 3)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "This price or item count is too high.") return true end local item = getItemIdByName(t[2], false) if(not item) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item wich such name does not exists.") return true end if(getPlayerLevel(cid) < config.levelRequiredToAdd) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You don't have required (" .. config.levelRequiredToAdd .. ") level.") return true end if(isInArray(config.blocked_items, item)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "This item is blocked.") return true end if(getPlayerItemCount(cid, item) < (tonumber(t[4]))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry, you don't have this item(s).") return true end local check = db.getResult("SELECT `id` FROM `auction_system` WHERE `player` = " .. getPlayerGUID(cid) .. ";") if(check:getID() == -1) then elseif(check:getRows(true) >= config.maxOffersPerPlayer) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry you can't add more offers (max. " .. config.maxOffersPerPlayer .. ")") return true end if(config.SendOffersOnlyInPZ) then if(not getTilePzInfo(getPlayerPosition(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You must be in PZ area when you add offert to database.") return true end end if(tonumber(t[4]) < 1 or (tonumber(t[3]) < 1)) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You have to type a number higher than 0.") return true end local itemcount, costgp = math.floor(t[4]), math.floor(t[3]) doPlayerRemoveItem(cid, item, itemcount) db.executeQuery("INSERT INTO `auction_system` (`player`, `item_name`, `item_id`, `count`, `cost`, `date`) VALUES (" .. getPlayerGUID(cid) .. ", \"" .. t[2] .. "\", " .. getItemIdByName(t[2]) .. ", " .. itemcount .. ", " .. costgp ..", " .. os.time() .. ")") doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You successfully add " .. itemcount .." " .. t[2] .." for " .. costgp .. " gps to offerts database.") end if(t[1] == "buy") then if(not tonumber(t[2])) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Wrong ID.") return true end local buy = db.getResult("SELECT * FROM `auction_system` WHERE `id` = " .. (tonumber(t[2])) .. ";") if(buy:getID() ~= -1) then if(getPlayerMoney(cid) < buy:getDataInt("cost")) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You don't have enoguh GP.") buy:free() return true end if(getPlayerName(cid) == getPlayerNameByGUID(buy:getDataInt("player"))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Sorry, you can't buy your own items.") buy:free() return true end if(getPlayerFreeCap(cid) < getItemWeightById(buy:getDataInt("item_id"), buy:getDataInt("count")))then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You try to buy a " .. buy:getDataString("item_name") .. ". It weight " .. getItemWeightById(buy:getDataInt("item_id"), buy:getDataInt("count")) .. " cap oz. and you have only " .. getPlayerFreeCap(cid) .. " oz. free capacity. Put some items to depot and try again.") buy:free() return true end if(isItemStackable((buy:getDataString("item_id")))) then doPlayerAddItem(cid, buy:getDataString("item_id"), buy:getDataInt("count")) else for i = 1, buy:getDataInt("count") do doPlayerAddItem(cid, buy:getDataString("item_id"), 1) end end doPlayerRemoveMoney(cid, buy:getDataInt("cost")) db.executeQuery("DELETE FROM `auction_system` WHERE `id` = " .. t[2] .. ";") doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You bought " .. buy:getDataInt("count") .. " ".. buy:getDataString("item_name") .. " for " .. buy:getDataInt("cost") .. " gps!") db.executeQuery("UPDATE `players` SET `auction_balance` = `auction_balance` + " .. buy:getDataInt("cost") .. " WHERE `id` = " .. buy:getDataInt("player") .. ";") buy:free() else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Wrong ID.") end end if(t[1] == "remove") then if((not tonumber(t[2]))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Wrong ID.") return true end if(config.SendOffersOnlyInPZ) then if(not getTilePzInfo(getPlayerPosition(cid))) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "You must be in PZ area when you remove offerts from database.") return true end end local delete = db.getResult("SELECT * FROM `auction_system` WHERE `id` = " .. (tonumber(t[2])) .. ";") if(delete:getID() ~= -1) then if(getPlayerGUID(cid) == delete:getDataInt("player")) then db.executeQuery("DELETE FROM `auction_system` WHERE `id` = " .. t[2] .. ";") if(isItemStackable(delete:getDataString("item_id"))) then doPlayerAddItem(cid, delete:getDataString("item_id"), delete:getDataInt("count")) else for i = 1, delete:getDataInt("count") do doPlayerAddItem(cid, delete:getDataString("item_id"), 1) end end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Your offert has been deleted from offerts database.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "This is not your offert!") end delete:free() else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Wrong ID.") end end if(t[1] == "withdraw") then local balance = db.getResult("SELECT `auction_balance` FROM `players` WHERE `id` = " .. getPlayerGUID(cid) .. ";") if(balance:getDataInt("auction_balance") < 1) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You don't have money on your auction balance.") balance:free() return true end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You got " .. balance:getDataInt("auction_balance") .. " gps from auction system!") doPlayerAddMoney(cid, balance:getDataInt("auction_balance")) db.executeQuery("UPDATE `players` SET `auction_balance` = '0' WHERE `id` = " .. getPlayerGUID(cid) .. ";") balance:free() end return true end
  16. tira esse de mod e aplica o do walef xavier pow, é mais complicado mais vale a pena funciona direitnho!
  17. Passo 1 Desinstale seu xampp e todos os seus serviços ( mysql, apache e os outros ). Passo 2 Baixe e instale esse xampp v 1.6.5 : Download (http://www.oldapps.com/xampp.php?old_xampp=38) Passo 3 Siga os passos do video-tutorial: Clique Aqui ! (http://www.youtube.com/watch?v=azHVnvy8774)
  18. JaraguahOt

    Duvida Simpless

    Eu coloquei o gesior aki so que quando eu cliko em latestnews os icones do lado direito vem um pouco pro lado esquerdo, acho que é simples!
  19. copas ja conseguir resolver, eu baixei um gesior 0.3.8 e copiei a pasta itens_imagen e coloquei no meu gesior 0.3.6
  20. mew aki nao tem essa pasta itens_imagen :S oq eu faço?
  21. voce vai fazer o seguinte, num tem quando voce aperta em exportar? ai la em baixo da pagina tem assim ()nenhum ()como zip ()como gzip, dai voce escolhe como zip, e clika em executar, pronto um download será iniciado e esse arquivo .sql é o backup da sua database... ajudei da rep+ ai que ja estou rep negativo kkkk
  22. pronto ja fiz ... mais tenho uma duvida, eu quero mudar meu servidor de pc, tipo eu quero colocar na casa do meu amigo, ai se eu importar esse backup vai fikar tudo igual como ta aki? vlw
  23. ja eu queria saber como coloca pra aparecer o changer name no shop, e tbm as imagens dos itens no meu site nao existe a pasta item_imagens :S EDIT to com o msm problema tbm mais o de cima ja consegui resolver!
  • Quem Está Navegando   0 membros estão online

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