Jump to content

All Activity

This stream auto-updates

  1. Yesterday
  2. Earlier
  3. No meu grupo de amigos, todo mundo fala de apostas no fim de semana. Eu nunca tentei. Resolvi procurar um site seguro e achei o jogar no site mostbet em portugal. O site funciona liso, com odds boas em futebol português e europeu. Eles dão bónus por registro e apostas acumuladas. Tem ainda ofertas semanais e jogos com odds dinâmicas. O suporte também responde em português, o que me ajudou bastante.
  4. Nickbhz

    day por hours

    up
  5. Entediado, quis ação nos jogos no Brasil. Plataformas top oferecem bônus generosos e pagamentos rápidos. Encontrei um bônus de R$400, 150 giros grátis e vantagens VIP. Veja brazino 777 é confiavel para mais. Neteller e PayPal garantem saques rápidos com segurança. O pôquer ao vivo no celular envolve, e giros grátis empolgam. Perfeito para fãs no Brasil!
  6. Sentindo sorte, busquei diversão nos jogos no Brasil. Plataformas top oferecem saques rápidos e bônus. Encontrei um bônus de R$200, 70 giros grátis e promoções semanais. Visite brazino777 oficial para mais. Skrill e cripto garantem depósitos instantâneos com segurança. Jogos ao vivo no celular encantam, e cashback dá mais diversão. Ótimo para fãs no Brasil!
  7. Se você é fã de servidores Pokémon OT como o Poke Happy, com sistemas de resets, auto-loot e lendários, então vai adorar o que o www.brazino777brasil.com tem a oferecer. Lá, a emoção continua com jogos de cassino, bônus para novos jogadores e recursos que lembram os melhores sistemas de recompensa dos OTServers — só que agora com chance de ganhar dinheiro de verdade. Uma evolução natural pra quem já curte grind, sorte e estratégia
  8. Sempre curti servidores como esse, ainda mais quando têm sistemas diferenciados como o de guildas e quests no estilo Naruto. Depois de horas jogando, costumo dar uma pausa e ir pro brazino7.com, onde achei bônus exclusivos pra quem joga do Brasil. O JetX virou meu favorito — simples, direto e cheio de adrenalina. É o equilíbrio perfeito entre foco e distração antes de voltar pro grind do servidor
  9. Esse tipo de script mostra como a tecnologia por trás dos jogos é complexa e interessante. Eu, que não entendo muito disso, gosto mesmo é da emoção de jogar. Encontrei casino brazino, com bônus exclusivos pra quem joga do Brasil. Experimentei o Aviator, que tem uma vibe parecida com o que o script sugere — cheia de chances e riscos, só que bem divertida.
  10. Olá amigos!! Estou com um problema ao criar minha página web. Estou tentando instalar o OT 8.60 no meu computador. Uso o TFS 0.3.6 e o UniServer Zero XV com myaac-1.2. E aparece este erro que não entendo, é o seguinte!! Já vi tudo, revisei tudo e ainda recebo este erro no console. Configurei assim. Já tentei mudar para Plain ou PLAIN - sha1 e nada funciona. Também verifiquei a senha inserida no phpmyadmind e está tudo correto, mas ainda assim não funciona. Só funciona quando a insiro no "sqlite". Configurei assim: sqlType = "mysql" sqlHost = "127.0.0.1" sqlPort = 3306 sqlUser = "root" sqlPass = "mypassword which is obviously the same as phpmyadmind"" sqlDatabase = "name the database" sqlFile = "schemas/forgotten.s3db" sqlKeepAlive = 0 mysqlReadTimeout = 10 mysqlWriteTimeout = 10 encryptionType = "plain"
  11. Nickbhz

    day por hours

    Bom dia, alguem consegue me ajudar ? Como trocar esse script que da acesso por dia/dias para que seja feito por hora/horas ? 8.60 / 0.4 -- Script Feito Por Leandro Machado function onUse(cid, item, fromPosition, itemEx, toPosition) local config={ removeOnUse = "yes" -- remover quando usar ("yes" or "no") } local days = 1 -- coloque quantos dias o player terá acesso a essa área local daysvalue = days * 24 * 60 * 60 local storageplayer = getPlayerStorageValue(cid, 19234) local timenow = os.time() if getPlayerStorageValue(cid, 19234) - os.time() <= 0 then time = timenow + daysvalue else time = storageplayer + daysvalue end doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você ativou ".. days .." dias de booster!") setPlayerStorageValue(cid, 19234, time) local quantity = math.floor((getPlayerStorageValue(cid, 19234) - timenow)/(24 * 60 * 60)) doSendMagicEffect(getPlayerPosition(cid), math.random(28,30)) doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Você tem ".. quantity .." dias de booster!") if (config.removeOnUse == "yes") then doRemoveItem(item.uid, 1) end return TRUE end Desde ja agradeço caso alguem possa dar essa ajuda!!
  12. Para adicionar um tutor robô que responde automaticamente no canal de ajuda (Help Channel) quando um jogador escreve algo e o ADM não está online, você precisa editar o script do creaturescripts ou criar um sistema que detecta mensagens no canal de help. Como o TFS 0.3.6 (Tibia 8.60) não possui um sistema interno de interceptação direta no Help Channel, você pode contornar isso com um sistema de creaturescript que detecta mensagens no canal de help (canal 9) e responde automaticamente caso o ADM não esteja online. ✅ Passo a passo: Criando um tutor robô para o canal de ajuda 1. Abra ou crie este arquivo: data/creaturescripts/scripts/help_bot.lua 2. Adicione este script: lua Copiar Editar local ADM_NAME = "ADM" -- Nome do personagem do administrador local HELP_CHANNEL_ID = 9 function onTalk(cid, type, channel, msg) -- Verifica se a mensagem é no Help Channel if channel == HELP_CHANNEL_ID then -- Verifica se o ADM está online local admPlayer = getPlayerByNameWildcard(ADM_NAME) if not isPlayer(admPlayer) then doPlayerSendChannelMessage(0, "Tutor Robo", "Para suporte, mande um ticket para o ADM no e-mail: po-ca@hotmail.com ou adicione ele no WhatsApp: +55 11 91230-8360.", TALKTYPE_CHANNEL_O, HELP_CHANNEL_ID) end end return true end 3. Adicione o creaturescript no creaturescripts.xml: Abra o arquivo data/creaturescripts/creaturescripts.xml e adicione: xml Copiar Editar <event type="channel" name="HelpBot" script="help_bot.lua"/> 4. Registre o evento no login.lua: Abra o arquivo data/creaturescripts/scripts/login.lua e adicione esta linha dentro da função onLogin: lua Copiar Editar registerCreatureEvent(cid, "HelpBot") ✅ Resultado Agora, sempre que um jogador mandar uma mensagem no Help Channel (canal 9), se o personagem chamado "ADM" não estiver online, o tutor robô automaticamente responderá com: "Para suporte, mande um ticket para o ADM no e-mail: po-ca@hotmail.com ou adicione ele no WhatsApp: +55 11 91230-8360." Se quiser que o nome do ADM seja outro, é só mudar a variável ADM_NAME = "ADM". Quer que ele só responda uma vez a cada X segundos por jogador, ou algo mais inteligente? Posso melhorar o script. Você disse: nao pego no tfs 0.3.6 O ChatGPT disse: Perfeito, obrigado pelo retorno! Como o TFS 0.3.6 (8.60) não possui suporte ao evento onTalk com type="channel" no creaturescripts, precisamos usar uma outra abordagem, baseada em talkactions ou em modificações no source (mais avançado). A melhor solução sem mexer no source é usar talkactions para detectar mensagens específicas e simular um tutor robô. ✅ 1. Habilitar o evento onTalk no server (creaturescript) 📄 Arquivo: luascript.cpp 🔍 Procure por a função: cpp Copiar Editar void LuaScriptInterface::registerFunctions() `` ➡️ Dentro dela, **adicione esta linha** (se ainda não existir): ```cpp lua_register(m_luaState, "registerCreatureEvent", LuaInterface::luaRegisterCreatureEvent); 📄 Arquivo: creatureevent.h Procure a enumeração CreatureEventType e adicione o novo tipo TALK: cpp Copiar Editar enum CreatureEventType { ... CREATURE_EVENT_CHANNEL, ... CREATURE_EVENT_TALK, // ✅ Adicione isso }; 📄 Arquivo: creatureevent.cpp Adicione o novo tipo de evento ao final do getType: cpp Copiar Editar CreatureEventType CreatureEvents::getType(const std::string& str) { ... else if(str == "talk") return CREATURE_EVENT_TALK; // ✅ novo ... } Na função configureEvent, adicione suporte ao onTalk: cpp Copiar Editar bool CreatureEvent::configureEvent(xmlNodePtr p) { ... if(m_type == CREATURE_EVENT_TALK) m_interface->reserveScriptEnv(); // reserva ambiente para o script ... } ✅ 2. Chamar o evento onTalk quando jogador fala no canal 📄 Arquivo: chat.cpp Encontre a função: cpp Copiar Editar bool Chat::talkToChannel(Player* player, MessageClasses type, const std::string& text, uint16_t channelId) Logo no início dessa função, adicione a chamada do evento: cpp Copiar Editar if (player) { CreatureEventList talkEvents = player->getCreatureEvents(CREATURE_EVENT_TALK); for(CreatureEventList::iterator it = talkEvents.begin(); it != talkEvents.end(); ++it) (*it)->executeTalk(player, type, text, channelId); } ✅ 3. Criar a função executeTalk no CreatureEvent 📄 Arquivo: creatureevent.cpp Adicione esta função: cpp Copiar Editar bool CreatureEvent::executeTalk(Creature* creature, MessageClasses type, const std::string& text, uint16_t channel) { // Função só ativa se for script registrado if(m_type != CREATURE_EVENT_TALK) return false; // Prepara o script if (!m_interface->reserveScriptEnv()) { std::cout << "[Error - CreatureEvent::executeTalk] Call stack overflow." << std::endl; return false; } ScriptEnviroment* env = m_interface->getScriptEnv(); env->setScriptId(m_scriptId, m_interface); env->setRealPos(creature->getPosition()); // Empilha argumentos lua_State* L = m_interface->getLuaState(); m_interface->pushFunction(m_scriptId); LuaScriptInterface::pushThing(L, creature, false); lua_pushnumber(L, type); lua_pushstring(L, text.c_str()); lua_pushnumber(L, channel); return m_interface->callFunction(4); } 📄 Arquivo: creatureevent.h Adicione no final da classe CreatureEvent: cpp Copiar Editar bool executeTalk(Creature* creature, MessageClasses type, const std::string& text, uint16_t channel);
  13. Entre os jogos mais populares hoje em dia está o jogo do aviador, que é algo como um clássico imortal e aqui podem vê-lo com mais detalhe, recomendo vivamente por isso, não vos vai deixar ficar mal baixar 888bets aviator, é sem dúvida uma boa opção para aderir ao jogo do aviador aqui em Moçambique!
  14. can you upload the link again please !!
  15. Why Digital Marketing Matters to Small Business
     

    Competitive business landscapebuilding a strong digital presence is not just nice to have  it'necessary. For small businesses in particular, digital marketing is a robust solution that levels the playing field and enables them to compete with large brands.Let'explore why digital marketing matters to small businesses and how it can fuel growth, visibility, and long-term success.

    1. Cost-Effective Marketing Solution
     

    Small businesses tend to have small budgets. Conventional advertising such as TV, radio, or newspaper ads are costly and not necessarily measurable. Digital marketing, however, can get you in front of thousands of potential customers for pennies on the dollar. Whether by social media, email marketing, or SEO, small businesses can create tangible results without breaking the bank.

    2Target Your Ideal Audience Easily
     

    One of the best advantages of digital marketing is finding your perfect audience. Whether age, place, interests, or behavior determines ittools such as Facebook and Google Ads allow you to reach out to individuals who are most likely to be interested in what you have to offer.

    3Establish a Solid Online Presence
     

    Consumers today search online before making purchasing decisions. If your business isn’t visible on search engines or social media, you’re missing out. A well-optimized website, engaging social media profiles, and a Google Business listing all help build trust and credibility for your brand.

    4. Trackable Results & Analytics
     

    Online marketing provides complete transparency when it comes to performance. Using Google Analytics and Facebook Insights, you can monitor what's working, what's not, and where to make changes. This allows small businesses to make better, data-based decisions and not waste resources.

    5Boost Engagement and Customer Loyalty
     

    Social media and email marketing enable you to keep in touch with your audience. Valuable content, frequent updates, and quick responses to customer questions build trust and loyalty — and are necessary for long-term relationships and repeat business.

    6. Compete with Bigger Brands
     

    Digital marketing provides small businesses the opportunity to stand shoulder-to-shoulder with industry leaders. A well-thought-out content strategy, proper SEO, or a viral Instagram video can provide your business with exposure that money cannot.

    7Keep up with Evolving Consumer Habits
     

    Consumers today are mobile-first and information-researching. They demand convenience, fast answers, and real-time engagement. Digital marketing enables small businesses to remain relevant, nimble, and responsive to these shifting customer expectations.

     

    How Fixdot Technologies Assist Small Businesses to Grow
     

    Fixdot Technologies, as a prominent digital marketing company in Faridabad, realizes the special challenges of small businesses. With experienced experts in its ranks, Fixdot offers affordable and effective solutions — ranging from SEO and content marketing to website design and social media management. Through data-driven approaches and customized service, Fixdot enables small businesses to gain visibility, gain more customers, and achieve long-term growth in the online universe.

  16. Esta não é uma publicação ... apenas um anuncio se escrever para ele no dc ele oferecerá para vender por 800 ou 2000 reais
  17. When flying with Southwest Airlines through Minneapolis-Saint Paul International Airport (MSP), it's essential to know what to expect for a smooth and stress-free travel experience. Whether you're heading out on a business trip or a vacation, understanding the terminal layout, services, and facilities offered by southwest terminal msp can make all the difference. Overview of MSP Airport Minneapolis-Saint Paul International Airport (MSP) is a major hub in the Midwest, known for its excellent services, efficient operations, and traveler-friendly amenities. The airport features two terminals—Terminal 1-Lindbergh and Terminal 2-Humphrey. Southwest Airlines operates from Terminal 2, which is often less crowded than Terminal 1, offering a quicker check-in and security process for travelers. Terminal 2 is modern and streamlined, catering mostly to low-cost and leisure airlines, which makes it ideal for Southwest's operational model. This terminal has become a popular choice for domestic travelers seeking efficiency and comfort.
  18. Streaming movies has become one of the most popular ways to relax and pass the time. With high-tech gadgets, fast internet, a cozy couch, and your favorite snacks, the only thing missing is access to unlimited, high-quality entertainment. That’s where platforms like 123MKv come in! 123MKv is one of the top websites for free movie downloads, offering a massive collection of the latest films in HD quality. Whether you're into Bollywood, Hollywood, or regional cinema, this site caters to all tastes — without the hassle of subscriptions. Websites like 123MKv, FMovies, and 300MBmovies4u have become go-to destinations for movie lovers. In today’s fast-paced world, they provide a simple way to enjoy personal time and entertainment on demand. If you’ve been searching for a reliable platform to stream or download your favorite movies for free, 123MKv could be just what you need. In this post, we’ll dive deeper into what 123MKv offers and how it keeps audiences coming back for more.
  19. If you're looking to grow your business online, REN Digital Solutions is the Best Digital Marketing Company in Ghaziabad you can count on. As a result-driven Digital Marketing Agency in Ghaziabad, we offer customized solutions in SEO, social media marketing, paid ads, and content marketing to help you reach your target audience effectively. Our expert team focuses on driving leads, improving ROI, and enhancing brand visibility for long-term success. Contact Details REN Digital Solutions Phone No.: +91-8851070527, +91-7217871051 Email ID: info@rendigitalsolutions.com Address:14074 Tower 5 Block E2 GH7 Crossing Republik, Ghaziabad Website: www.rendigitalsolutions.com/
  20. If you're dealing with problems like login failures, server downtime, or a forgotten Bigpond email password, you're not alone—and help is just a call away. At Pc Help Reviews Australia, we offer trusted remote support services nationwide to fix Bigpond email and internet issues quickly and securely. Our process is straightforward and designed with your convenience in mind. A single call connects you with skilled technicians who can assist with anything from setting up your account and resetting your password to resolving more advanced technical issues. No more waiting on hold or struggling with confusing online tutorials. Our expert support team delivers fast, dependable service that respects your privacy—all at affordable rates. Reach out now by calling the Bigpond Phone Number Australia +61-180-086-8603 for quick, courteous, and effective assistance with any Bigpond email or internet concern.
  21. Fui procurar previsões sobre os favoritos do campeonato português e acabei lendo uma matéria que vai além do básico. Em vez de focar só nos times grandes, o texto considera também o desempenho estável de clubes médios. Isso me fez pensar melhor nas chances de surpresas ao longo da temporada. Boa leitura pra quem gosta de acompanhar com mais profundidade.
  22. Makefile:567: recipe for target 'otserv.o' failed make[1]: *** [otserv.o] Error 1 make[1]: *** Waiting for unfinished jobs.... make[1]: Leaving directory '/home/ots/src' Makefile:418: recipe for target 'all' failed make: *** [all] Error 2
  23. Qual Seria o Rme usado para editar este mapa ?
  24. Best Digital Marketing Agency in Faridabad: Grow Your Business Online with the Right Partner

    Finding the right digital marketing agency in Faridabad, in today’s digital world can make or break your online presence. Whether you're a small business, a local brand, or a startup, a strong digital strategy is essential to stay ahead of the competition. This is where expert agencies step in — to transform your online growth with the right tools, techniques, and team.

    Why You Need a Digital Marketing Agency in Faridabad

    Faridabad is one of the fastest-growing business hubs in Delhi NCR. With increasing competition, every business is trying to make a mark online. A professional digital marketing agency offers:

    • 360° online marketing solutions
    • Increased traffic, leads & sales
    • Affordable yet ROI-driven strategies
    • SEO, Social Media, PPC, and Website services

     

    Fixdot Technologies – Your Trusted Growth Partner

    One of the best digital marketing companies in Faridabad, Fixdot Technologies, stands out for delivering real results with smart digital strategies. They combine creativity with performance-based marketing to help businesses grow online.

    Services Offered by Fixdot:

    • Search Engine Optimization (SEO) – Rank higher on Google
    • Social Media Marketing – Build your brand on Facebook, Instagram & more
    • Google Ads & Paid Campaigns – Fast lead generation
    • Website Designing & Development – Custom, mobile-friendly sites
    • Content & Branding – Engaging content and creative storytelling

     

    What Makes Fixdot the Best Digital Marketing Agency in Faridabad?

    • Experienced & skilled team
    • Transparent pricing & regular reporting
    •  Custom strategies for every business
    • Proven client results across industries
    • Great support & communication

    Whether you run a small café, a real estate business, or an online store — Fixdot can create a digital strategy tailored to your goals.

    Fixdot (5).jpg

  25. Cenforce 100 is a medication used to treat erectile dysfunction in men. It works by increasing blood flow to the penis, allowing for a stronger and longer-lasting erection. The active ingredient in Cenforce 100 is sildenafil citrate, which is a type of phosphodiesterase type 5 inhibitor. Buy Cenforce 100 Paypal Online From Genericaura.
  26. Vidalista Black 80 Mg tablets is an erectile dysfunction medication with an active ingredient, Tadalafil. This chemical compound helps men get an erection by increasing the flow of blood in the penis. Vidalista Black 80mg is a prescription-based drug available at drugstores, online pharmacies, and medical supply stores. The active salt in Vidalista Black 80mg is Tadalafil, a PDE-5 inhibitor. Tadalafil increases the flow of blood to the penis by relaxing the muscles and blood vessels in the penis. This helps a man trigger an erection. Tadalafil also helps treat pulmonary hypertension by relaxing the blood vessels in the lungs, which allows the blood to flow freely. Vidalista 80 Black tablet is used to treat male sexual health complications like erectile dysfunction (ED). However, take this tablet only when prescribed by a healthcare expert.
  27. Vidalista 60 mg is a world-renowned drug manufactured by Centurion Laboratories in India. It contains the urological agent Tadalafil as the active pharmaceutical agent and is available as a tablet. Vidalista is used to treat the condition of erectile Dysfunction (ED) in men. In this disorder, the patient is unable to achieve a proper penile erection during sexual intercourse. It is being recommended by doctors around the world and is considered to be one of the safest and most efficient drugs in the treatment of ED.
  1. Load more activity
×
×
  • Create New...