Ir para conteúdo

Gustavo Ferreira

Membro
  • Registro em

  • Última visita

Tudo que Gustavo Ferreira postou

  1. Qual cidade tu mora?
  2. Namorar é uma coisa difícil de se fazer Não há regras, nem escolas para ensinar esta arte Namorar é nunca se cansar de dizer do amor que sentimos pela amada É ter que descobrir os gostos dela sem que ela os diga. É nunca dizer a verdade sem antes pensar se esta verdade pode deixá-la triste É sentir aquele arrepio na espinha quando sabemos que ela está por vir Namorar é levar o cheirinho daquele corpinho gostoso onde for Mandar flores e cartões a qualquer hora Mesmo sem ter motivos aparentes Dizer que o amor que sente por ela é maior do que tudo que se possa comparar Namorar é tão gostoso que nos faz rejuvenescer Quem nunca caminhou numa praia ou mesmo na rua de mãos dadas O tempo pára, o coração dispara e um enorme desejo existe que este momento jamais termine Namorar é aprender a valorizar as melhores coisas da vida Ter sempre um desejo incontrolável de encostar a boca na sua boca Apertá-la em seus braços, sentir teu respirar descompassado... Por isso eu quero sempre te namorar Minha menina, minha gatinha, minha eterna namorada.
  3. Curti *.*
  4. Tentem fazer isso Coloque esta tag em movements.xml <movevent type="StepIn" actionid="2008" event="script" value="zombievent.lua"/> e crie um arquivo zombievent.lua Dentro adicione local config = { playerCount = 2001, -- Global storage for counting the players in the event maxPlayers = 50, -- Max players who can participate minLevel = 50 } function onStepIn(cid, item, position, lastPosition, fromPosition, toPosition, actor) if getPlayerLevel(cid) < config.minLevel then addEvent(tpBack, 1000, cid, fromPosition) doPlayerSendCancel(cid, "You need to be at least level " .. config.minLevel .. ".") return false end if getGlobalStorageValue(config.playerCount) < config.maxPlayers then setGlobalStorageValue(config.playerCount, getGlobalStorageValue(config.playerCount)+1) if getGlobalStorageValue(config.playerCount) == config.maxPlayers then doBroadcastMessage("The Zombie event is now full [" .. getGlobalStorageValue(config.playerCount) .. " players]! The event will soon start.") else doBroadcastMessage(getPlayerName(cid) .. " entered the Zombie event! Currently " .. getGlobalStorageValue(config.playerCount) .. " players have joined!", MESSAGE_STATUS_CONSOLE_RED) end else addEvent(tpBack, 1000, cid, fromPosition) doPlayerSendCancel(cid, "The event is full. There is already " .. config.maxPlayers .. " players participating in the quest.") return false end print(getStorage(config.playerCount) .. " Players in the zombie event.") return true end function tpBack(cid, fromPosition) doTeleportThing(cid, fromPosition, true) doSendMagicEffect(getPlayerPosition(cid), CONST_ME_TELEPORT) end Comentem resultado, abraços!
  5. Beleza, só me adicionar no msn!! te ajudo no que precisar!!
  6. vamos fazer uma pequena alteração no arquivo items.xml, abra-o e procure por "giant eye", mude esse nome para "mysterious pet", assim: <itemid="11191"name="mysterious pet"> <attribute key="weight" value="120" /> </item> Agora vamos adicionar as actions, vá até a pasta "Actions" e abra o arquivo "Actions.xml" e adicione esta tag: <actionitemid="11191"event="script"value="mount.lua"/> Ok, agora volte a pasta "Actions" e abra a pasta "Scripts", faça uma arquivo chamado "mount.lua" e adicione isto: --[(MountSystem1.4 created byMatheus)]-- function onUse(cid, item) local outfit = {lookType = 342} -- Outfit da montaria! local exhaust = 60 -- Tempo para player poder usar o item novamente! (tempo em segundos) local time = 60 -- Tempo para ficar na montaria! (tempo em segundos) local speed = 300 -- Velocidade adicionada ao player após usar o item! (300 = velocidade, quanto maior mais rapido...) local mana = 1300 -- Quantidade de mana que o player necessita para usar o sistema! local premium = "yes" -- Apenas players premium accounts "yes" or "no"!? local storage = 9393 -- Não mexa aqui! if premium == "yes" and not isPremium(cid) then return doPlayerSendTextMessage(cid, 23, "Sorry, only premium players.") end if(getCreatureMana(cid) < mana) then return doPlayerSendDefaultCancel(cid, RETURNVALUE_NOTENOUGHMANA) end if (getPlayerStorageValue(cid, storage) <= os.time()) then doCreatureSay(cid, "Yeeeah!!!\nYou went up on his ride.", 19) doSetCreatureOutfit(cid, outfit, time*1000) doChangeSpeed(cid, speed) doSendMagicEffect(getCreaturePosition(cid), 34) setPlayerStorageValue(cid, storage, os.time()+exhaust) doPlayerAddMana(cid, -mana) addEvent(doChangeSpeed, time*1000+40, cid, -speed) addEvent(doPlayerSendTextMessage, time*1000+45, cid, 23, "Mount System is time out!") addEvent(doSendMagicEffect, time*1000+50, getCreaturePosition(cid), 2) doRemoveItem(item.uid, 1) else doPlayerSendCancel(cid, "Sorry, you only can again use this item after "..exhaust.." seconds.") end return TRUE end
  7. Vai até htdocs/shopsystem.php, procura por: if($buy_offer['type'] == 'pacc') Selecione todos esse coder a seguir: if($buy_offer['type'] == 'pacc') { $player_premdays = $buy_player_account->getCustomField('premdays'); $player_lastlogin = $buy_player_account->getCustomField('lastday'); $save_transaction = 'INSERT INTO '.$SQL->tableName('z_shop_history_pacc').' (id, to_name, to_account, from_nick, from_account, price, pacc_days, trans_state, trans_start, trans_real) VALUES (NULL, '.$SQL->quote($buy_player->getName()).', '.$SQL->quote($buy_player_account->getId()).', '.$SQL->quote($buy_from).', '.$SQL->quote($account_logged->getId()).', '.$SQL->quote($buy_offer['points']).', '.$SQL->quote($buy_offer['days']).', \'realized\', '.$SQL->quote(time()).', '.$SQL->quote(time()).');'; $SQL->query($save_transaction); $buy_player_account->setCustomField('premdays', $player_premdays+$buy_offer['days']); $account_logged->setCustomField('premium_points', $user_premium_points-$buy_offer['points']); $user_premium_points = $user_premium_points - $buy_offer['points']; if($player_premdays == 0) { $buy_player_account->setCustomField('lastday', time()); } $main_content .= '<center><h2>Premium ACcount added!</h2><b>'.$buy_offer['days'].' days</b> of Premium Account added to the account of player <b>'.$buy_player->getName().'</b> for <b>'.$buy_offer['points'].' premium points</b> from your account.<br />Now you have <b>'.$user_premium_points.' premium points</b>.<br><br><a href="index.php?subtopic=shopsystem">Go to Shop Site</a><br>'; } E substiuir por: Vipsystem by Mock and Lukeskywalker if($buy_offer['type'] == 'pacc') { $player_vip_time = $buy_player_account->getCustomField('vip_time'); $player_lastlogin = $buy_player_account->getCustomField('lastday'); $save_transaction = 'INSERT INTO '.$SQL->tableName('z_shop_history_pacc').' (id, to_name, to_account, from_nick, from_account, price, pacc_days, trans_state, trans_start, trans_real) VALUES (NULL, '.$SQL->quote($buy_player->getName()).', '.$SQL->quote($buy_player_account->getId()).', '.$SQL->quote($buy_from).', '.$SQL->quote($account_logged->getId()).', '.$SQL->quote($buy_offer['points']).', '.$SQL->quote($buy_offer['days']).', \'realized\', '.$SQL->quote(time()).', '.$SQL->quote(time()).');'; $SQL->query($save_transaction); if($player_vip_time > 0) $buy_player_account->setCustomField('vip_time', $player_vip_time + $buy_offer['days'] * 86400); else $buy_player_account->setCustomField('vip_time', time() + $buy_offer['days'] * 86400); $buy_player_account->setCustomField('premium_points', $user_premium_points-$buy_offer['points']); $user_premium_points = $user_premium_points - $buy_offer['points']; if ($player_vip_days >= 1) { } $main_content .= '<center><h2>VIP Days added!</h2><b>'.$buy_offer['days'].' days</b> of VIP days added to the account of player <b>'.$buy_player->getName().'</b> for <b>'.$buy_offer['points'].' premium points</b> from your account.<br />Now you have <b>'.$user_premium_points.' premium points</b>.<br><br><a href="index.php?subtopic=shopsystem">Go to Shop Site</a><br>'; } Vip system by Kydrai. if($buy_offer['type'] == 'pacc') { $player_viptime = $buy_player_account->getCustomField('viptime'); $player_lastlogin = $buy_player_account->getCustomField('lastday'); $save_transaction = 'INSERT INTO '.$SQL->tableName('z_shop_history_pacc').' (id, to_name, to_account, from_nick, from_account, price, pacc_days, trans_state, trans_start, trans_real) VALUES (NULL, '.$SQL->quote($buy_player->getName()).', '.$SQL->quote($buy_player_account->getId()).', '.$SQL->quote($buy_from).', '.$SQL->quote($account_logged->getId()).', '.$SQL->quote($buy_offer['points']).', '.$SQL->quote($buy_offer['days']).', \'realized\', '.$SQL->quote(time()).', '.$SQL->quote(time()).');'; $SQL->query($save_transaction); if($player_viptime > 0) $buy_player_account->setCustomField('viptime', $player_viptime + $buy_offer['days'] * 86400); else $buy_player_account->setCustomField('viptime', time() + $buy_offer['days'] * 86400); $buy_player_account->setCustomField('premium_points', $user_premium_points-$buy_offer['points']); $user_premium_points = $user_premium_points - $buy_offer['points']; if ($player_vip_days >= 1) { } $main_content .= '<center><h2>VIP Days added!</h2><b>'.$buy_offer['days'].' days</b> of VIP days added to the account of player <b>'.$buy_player->getName().'</b> for <b>'.$buy_offer['points'].' premium points</b> from your account.<br />Now you have <b>'.$user_premium_points.' premium points</b>.<br><br><a href="index.php?subtopic=shopsystem">Go to Shop Site</a><br>'; } Espero ter ajudado!!!
  8. kkkkkkkkkkkk Valeew abraços
  9. Obrigado Slaake por trazer o conteúdo ao TibiaKing! Eu Acho muita ipocrezia muitos cabaços que só sabe criticar tópicos, Mais montar um servidor rullex do 0 e postar em forum ninguem quer né?
  10. Não gosto desses baiak, Só muda templo -'
  11. Pra compilá o distro eh facil, Eu usava LaaTido no exequtor e roda normal akiie ein ksa!
  12. Vai na area de otservers 8.60, Lá tem um que postei Angel Baiak
  13. Né manin, Mais já tenho minha novinha u.u hsuashhuashu' Obrigado a todos pelo carinho *.*
  14. São Roque, Interior de São paulo, Perto de Itu, Sorocaba.. etc
  15. Opa, Bagui vai rola solto Domingão, Pegamos a chacara do vice-prefeito da cidade akiw.. eu trampo com ele!!! vai ser fera!!
  16. kkkkk, Responsa akiie né pow! Vlww Ana kkk thierre doido..
  17. Hoje dia 2 de agosto, Completo 18 anos.. Que felicidade!!! Aceito REP De presente suauhshuahu'
  18. Valeew Eratsu
  19. Gustavo Ferreira postou uma resposta no tópico em Suporte Bots
    Magebot
  20. Cuidado com double post!!
  21. Cara troca o distro do seu servidor, ve se resolve , Troca o script do clean!!! Talvez seja algum erro nele!
  22. Tenho um aqui, inclusive postei ele !!! Baiak Angel.. Ta 100%
  23. Eu tentei baixar mais sem sucesso, Alguem me indica um site bom pra baixar o 4?

Informação Importante

Confirmação de Termo