Jump to content

OmarAcero

Members
  • Posts

    71
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by OmarAcero

  1. Hola buenas, Amigos alguna persona amable que me pueda apoyar a Diffear el cliente : HERE 1. 2014-02-05 ragexe from : http://k3dt.eu/Ragexe/unpacked/ 2. patch that 2014-02-05 client with NEMO Patcher : http://hercules.ws/b...client-patcher/ 3. The client 2014 - System + Data Traslation Ultima versión Lo he intentado millones de veces y no he tenido éxito, me sale de error, tras error. =( habrá una persona Caritativa que ya lo tenga diffeado para poder probarlo por favor? Ayúdenme yo estoy probando con los emuladores Rathena la última versión y Hercules T-T. Actualmente, yo estoy usando los últimos Packet_db, con mi cliente 2013.
  2. Nombre Real: Omar Nick: BackStripBoy Edad: 25 Nacionalidad: Peruana ( Perú-Lima ) Contacto: llOmarAceroll ( Skype ) Sobre Mi: Soy Técnico de sistemas. Comencé a jugar Ragnarok fines de 2004 en el server oficial en ingles, luego por falta de tiempo y estudios me meti al servidor de NekotsukiRo que era high rates mas accesible, entre los años 2010-2011 entre a foros como eAthena y DivineRO y rAthena, Desde allí estado experimentando con emuldores, de diferentes procedencia, scripts y uno que otro control panel. Mi gran sueño es tener un Ro para el mundo Hispanoamericano donde todo este en idioma español, Ahora trabajo en un proyecto similar traduciendo todo el RO hasta el cliente. Mi job favorito es el Stallker.
  3. hmmm!! amigos hay para eathena??? hey Gyus, this command no work in eathena T-T ..... pls.. make compatibility with eathena....
  4. no manches xD! Jose Luis desde cuando estas en esto y por que fuck no avisas jajajaja! ..... soy OmarAcero también tengo github si quieres agregarme para ayudar saludos
  5. friends, a question I Implemented the class rebellion in my emulator is running Both dbs and Src. Compiles fine. But When you hit a monster with use the skill of rebellion goes wrong. not hit anyone, only gives MISS miss here: Hi guys pls!! help T-T Error sorry
  6. Gyus, someone please tell me how I can do so that the mechanic can make the skill with power siwng with robot (MADO)?
  7. I have a host rented, i have test mode my server for this month, no users, Only test, i help you! xantara... find me in the FB... ...book.com/llomaraceroll
  8. me sale un error al compilar, pero rAthena ya no tenia ese sistema implementado?
  9. We he leido todo pero aun no entiendo algo ¿Como puedo hacer para que mi merchant venda item por cash?
  10. Muchas Gracias we por responder a mi duda
  11. Bueno el motivo de este post es el siguiente ando aprendiendo sobre emuladores y me tope con rAthena, me dijeron que este emu es muy bueno y actualizado la cosa esque lo he probado y es bueno pero aun nose todos sus sitemas he visto por hay en su src cashshop nose de que se trata (he visto en otros servers que los merchanst venden item por cash, si es asi este sistema esta re bueno pero como lo puede activar?) tmb he visto de costume item si es ese sistema que simula la apariencia del item esta re bueno, nose si me dejo entender quisiera que me informaran acerca del emulador rathena porfa y sus sitemas se los agradeceria mucho!.
  12. Hi guys pls the script , have error¡???? look... i use rAthena revision 17235 ..... - script custom_bg#control -1,{ OnInit: set .minplayer2start, 3; // minimum player to start setarray .rewarditem, 30000, 10, // reward to the winning team 30000, 3; // reward to the losing team set .startingscore, 15; // score at start set .eventlasting, 100; // event last 100 seconds end; OnStart: if ( getwaitingroomstate( 0, "red side" ) < .minplayer2start || getwaitingroomstate( 0, "blue side" ) < .minplayer2start ) end; set .red, waitingroom2bg( "guild_vs3", 13,50, strnpcinfo(0)+"::OnredQuit", strnpcinfo(0)+"::OnredDead", "red side" ); copyarray .team1aid[.@i], $@arenamembers[.@i], $@arenamembersnum; set .blue, waitingroom2bg( "guild_vs3", 86,50, strnpcinfo(0)+"::OnblueQuit", strnpcinfo(0)+"::OnblueDead", "blue side" ); copyarray .team2aid[.@i], $@arenamembers[.@i], $@arenamembersnum; delwaitingroom "red side"; delwaitingroom "blue side"; bg_warp .red, "guild_vs3", 13,50; bg_warp .blue, "guild_vs3", 86,50; set .score[1], .startingscore; set .score[2], .startingscore; bg_updatescore "guild_vs3", .score[1], .score[2]; sleep .eventlasting * 1000; if ( .score[1] == .score[2] ) mapannounce "guild_vs3", "Draw !", 0; else if ( .score[1] > .score[2] ) { mapannounce "guild_vs3", "red side wins !", 0; callsub L_reward, 1, 0; callsub L_reward, 2, 2; } else if ( .score[1] < .score[2] ) { mapannounce "guild_vs3", "blue side wins !", 0; callsub L_reward, 2, 0; callsub L_reward, 1, 2; } bg_warp .red, "prontera", 149,168; bg_warp .blue, "prontera", 162,168; bg_destroy .red; bg_destroy .blue; donpcevent "red side::OnInit"; donpcevent "blue side::OnInit"; end; L_reward: set .@size, getarraysize( getd(".team"+ getarg(0) +"aid") ); for ( set .@i, 0; .@i < .@size; set .@i, .@i +1 ) if ( isloggedin( getd(".team"+ getarg(0) +"aid["+ .@i +"]" ) ) ) getitem .rewarditem[ getarg(1) ], .rewarditem[ getarg(1) +1 ], getd(".team"+ getarg(0) +"aid["+ .@i +"]" ); return; OnredDead: callsub L_dead, 1; OnblueDead: callsub L_dead, 2; L_dead: set .score[ getarg(0) ], .score[ getarg(0) ] -1; bg_updatescore "guild_vs3", .score[1], .score[2]; if ( .score[ getarg(0) ] == 0 ) //awake strnpcinfo(0); areapercentheal "guild_vs3",13,50,86,50,100,100; sleep2 1500; percentheal 100,100; end; OnredQuit: callsub L_quit, 1, .red; OnblueQuit: callsub L_quit, 2, .blue; L_quit: if ( bg_get_data( getarg(1), 0) ) end; set .score[ getarg(0) ], 0; awake strnpcinfo(0); percentheal 100, 100; end; } prontera,149,168,5 script red side 101,{ end; OnInit: waitingroom "Red Team", getvariableofnpc( .minplayer2start, "custom_bg#control" ) +1, "custom_bg#control::OnStart", getvariableofnpc( .minplayer2start, "custom_bg#control" ); end; } prontera,162,168,5 script blue side#custom_bg 101,{ end; OnInit: waitingroom "Blue Team", getvariableofnpc( .minplayer2start, "custom_bg#control" ) +1, "custom_bg#control::OnStart", getvariableofnpc( .minplayer2start, "custom_bg#control" ); end; } guild_vs3 mapflag battleground 2 guild_vs3 mapflag nosave SavePoint guild_vs3 mapflag nowarp guild_vs3 mapflag nowarpto guild_vs3 mapflag noteleport guild_vs3 mapflag nomemo guild_vs3 mapflag nopenalty
  13. Is that my GRF is produced from Lua Files, and clients 2012, not work my GRF with LUA FILES T-T
  14. guys help me... i have the problem too, some i can gimme one EXE 2011 with support kageroy and oboro pls
×
×
  • Create New...