Jump to content

Robert

Estafador (Niño)
  • Contador contenido

    337
  • Ingreso

  • Última visita

  • Días ganados

    29

Actividad de reputación

  1. Me Gusta
    Robert got a reaction from caanmasu in [Cliente] Angel2.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.  
  2. Me Gusta
    Robert got a reaction from WUJEK in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  3. Me Gusta
    Robert got a reaction from ROCK FF in Armas By TreeN   
    Aqui os traigo un set de armas, en la descarga teneis los iconos y los gr2 con la textura.Las querys las haceis vosotros a proprio gusto.
    Creditos: TreeN de Epvp

    ViruScan:
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.

  4. Me Gusta
    Robert got a reaction from Mandale Mecha in [Cliente] Angel2.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.  
  5. Gracias
    Robert got a reaction from Gustavo Gonzales in Unos cuantos items nuevos   
    En la descarga viene todo completo las querys etc. Vienen en formato eix-epk
    Fuente: Epvp
    Link:
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  6. Me Gusta
    Robert got a reaction from admnahui in Nuevas ciudades MAP 1   
    Buenas me encontre con esto y os lo dejo a vosotros tambien, no se si ya las han posteado si es asi pido que borren post

    Descarga: 
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  7. Me Gusta
    Robert got a reaction from CHRISTIAN YESID CARVAJAL FUENTES in [Cliente] Metin2essential.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  8. Me Gusta
    Robert got a reaction from lchiro in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  9. Haha
    Robert got a reaction from maryam33 in [Cliente] Metin2essential.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  10. Me Gusta
    Robert got a reaction from elbloqueconcreto23 in Diff   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  11. Me Gusta
    Robert got a reaction from ninja691 in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  12. Confuso
    Robert got a reaction from jose reyes in [MAP] Crystal Dungeon   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación. Contraseña: RobertMZ
  13. Haha
    Robert got a reaction from Horus mt2 in EVADIR PROTECCION [SVSIDE]   
    Eso no se dice jeje
  14. Me Gusta
    Robert got a reaction from Mari Carmen Rodriguez Morete in [Atuendo] Spartan   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  15. Me Gusta
    Robert got a reaction from xOSCUROREYx in [Cliente] Angel2.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.  
  16. Gracias
    Robert got a reaction from KADİR MERCAN in [Cliente] Egoria.pl   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  17. Me Gusta
    Robert got a reaction from Mari Carmen Rodriguez Morete in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  18. Me Gusta
    Robert got a reaction from Luiz A. G. Oliveira in [Cliente] Angel2.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.  
  19. Me Gusta
    Robert got a reaction from ANDREI COSMIN SANDU in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  20. Me Gusta
    Robert got a reaction from Speedy94 in [Quest] Sistema de matar con sonido   
    Bueno me encontre con esto hace ya semanas no me acuerdo ni donde y os lo traigo a vosotros tambien. Lo que hace el sistema es que a cada muerte que hagas dice un sonido como monsterkill, ultrakill, pentakill etc. Y para que sigan tienes que matar en un intervalo de 20 segundos. Esto solo lo vas a escuchar tu la otra persona no, solo si te mata ella primero.

     

    Entrais en game.py y buscais:


    "PlayMusic" : self.__PlayMusic,

    Debajo de ella añadireis esto:


    "PlayMusicxd" : self.__PlayMusicxd,

    Allí os copiáis de los TAB que trae el de arriba.

    Después buscáis esto:


    snd.FadeInMusic("BGM/" + musicInfo.fieldMusic)

    Y debajo añadiréis esto:


    [TAB]def __PlayMusicxd(self, filename):
    [TAB][TAB]snd.PlaySound("BGM/" + filename)

    Aquí los [TAB] es la tecla tab no la copiéis

     

    Ahora la quest:


    quest pentakillxd begin
    state start begin
    when kill with npc.is_pc() begin
    if get_time()< pc.getqf("grupo") then
    pc.delqf("grupo")
    pc.setqf("one", get_time()+20)
    cmdchat("PlayMusicxd onekill.mp3")
    elseif get_time()< pc.getqf("one") then
    pc.setqf("doble", get_time()+20)
    cmdchat("PlayMusicxd doublekill.mp3")
    elseif get_time()< pc.getqf("doble") then
    pc.setqf("triple", get_time()+20)
    cmdchat("PlayMusicxd triplekill.mp3")
    elseif get_time()< pc.getqf("triple") then
    pc.setqf("quadra", get_time()+20)
    cmdchat("PlayMusicxd quadra.mp3")
    elseif get_time()< pc.getqf("quadra") then
    pc.setqf("pentakill", get_time()+20)
    cmdchat("PlayMusicxd pentakill.mp3")
    elseif get_time()< pc.getqf("pentakill") then
    pc.setqf("hexakill", get_time()+20)
    cmdchat("PlayMusicxd hexakill.mp3")
    elseif get_time()< pc.getqf("hexakill") then
    pc.setqf("dominating", get_time()+20)
    cmdchat("PlayMusicxd dominating.mp3")
    elseif get_time()< pc.getqf("dominating") then
    pc.setqf("neutralized", get_time()+20)
    cmdchat("PlayMusicxd neutralized.mp3")
    elseif get_time()< pc.getqf("neutralized") then
    pc.setqf("unstoppable", get_time()+20)
    cmdchat("PlayMusicxd unstoppable.mp3")
    elseif get_time()< pc.getqf("unstoppable") then
    pc.setqf("unstoppable", get_time()+20)
    cmdchat("PlayMusicxd unstoppable.mp3")
    else
    pc.setqf("grupo", get_time()+10)
    cmdchat("PlayMusicxd onekill1.mp3")
    end
    end
    end
    end

    Y por ultimo los sonidos que los meteis en la carpeta BGM.


    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  21. Me Gusta
    Robert got a reaction from lokilla24 in [Cliente] Metin2essential.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  22. Me Gusta
    Robert got a reaction from Hunyadi Jani in [C++] Anti Wait hack   
    Vamos a battle.cpp
    Y agregamos al final de los include:
    #include "db.h" Luego buscamos:
    bool IS_SPEED_HACK(LPCHARACTER ch, LPCHARACTER victim, DWORD current_time) Y remplazamos con esto:
    #define ENABLE_SYSCHAT_NOTICE #define ENABLE_SYSLOG_NOTICE #define ENABLE_BAN_WAITHACK bool IS_SPEED_HACK(LPCHARACTER ch, LPCHARACTER victim, DWORD current_time) { if (ch->m_kAttackLog.dwVID == victim->GetVID()) { if (current_time - ch->m_kAttackLog.dwTime < GET_ATTACK_SPEED(ch)) { INCREASE_SPEED_HACK_COUNT(ch); if (test_server) { sys_log(0, "%s attack hack! time (delta, limit)=(%u, %u) hack_count %d", ch->GetName(), current_time - ch->m_kAttackLog.dwTime, GET_ATTACK_SPEED(ch), ch->m_speed_hack_count); ch->ChatPacket(CHAT_TYPE_INFO, "%s attack hack! time (delta, limit)=(%u, %u) hack_count %d", ch->GetName(), current_time - ch->m_kAttackLog.dwTime, GET_ATTACK_SPEED(ch), ch->m_speed_hack_count); } SET_ATTACK_TIME(ch, victim, current_time); SET_ATTACKED_TIME(ch, victim, current_time); return true; } } SET_ATTACK_TIME(ch, victim, current_time); if (victim->m_AttackedLog.dwPID == ch->GetPlayerID()) { if (current_time - victim->m_AttackedLog.dwAttackedTime < GET_ATTACK_SPEED(ch)) { INCREASE_SPEED_HACK_COUNT(ch); if (ch->m_speed_hack_count > 50) { #ifdef ENABLE_SYSLOG_NOTICE sys_log(0, "%s Attack Speed HACK! time (delta, limit)=(%u, %u), hack_count = %d", ch->GetName(), current_time - victim->m_AttackedLog.dwAttackedTime, GET_ATTACK_SPEED(ch), ch->m_speed_hack_count); #endif #ifdef ENABLE_SYSCHAT_NOTICE ch->ChatPacket(CHAT_TYPE_INFO, "Attack Speed Hack(%s), (delta, limit)=(%u, %u), hack_count = %d", ch->GetName(), current_time - victim->m_AttackedLog.dwAttackedTime, GET_ATTACK_SPEED(ch), ch->m_speed_hack_count); #endif #ifdef ENABLE_BAN_WAITHACK std::auto_ptr<SQLMsg> msg(DBManager::instance().DirectQuery("UPDATE account.account SET status= 'BLOCK' WHERE id = %d", ch->GetDesc()->GetAccountTable().id)); #endif ch->GetDesc()->DelayedDisconnect(3); } SET_ATTACKED_TIME(ch, victim, current_time); return true; } } SET_ATTACKED_TIME(ch, victim, current_time); return false; } Debería quedar algo así:


     
    Y un video de la prueba:

    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  23. Me Gusta
    Robert got a reaction from Tomáš Daniš in [Cliente] Theris.eu   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  24. Me Gusta
    Robert got a reaction from Sr.Mecha in [Cliente] Metin2essential.es   
    Debes iniciar sesión para ver el contenido del enlace en esta publicación.
  25. Me Gusta
    Robert got a reaction from Muzzy in Protección anti inject cliente by Eugen   
    Bueno me encontre esto hoy asi que lo comparto aqui tambien.
    Lo que hace es que encuentra un larga lista de hacks y si los usas te saca del cliente con un mensaje.
     
    Paso 1 : Poneis la carpeta Protectie y el archivo .mix en donde teneis el launcher.
    Paso 2: Esconderemos el archivo mix en el launcher con el programa Enigma esta en la descarga
     
     
    Y esto es todo aqui la descarga 
    Debes iniciar sesión para ver el contenido del enlace en esta publicación. Contraseña: roberts
    P.D: No lo he usado.
×
×
  • Crear nuevo...