Jump to content

Zikoziz

Members
  • Posts

    208
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Zikoziz

  1. hola, eimira yo una ves abri un server eRO (español ro) que tenia todos los npc en español mas las descripcion de item y skill, hasta los mensajes estaban en español (msg.txt) si te interesa te lo busco y te lo paso. me mandas inbox o si queires se sube a repositorio
  2. Saludos, Necesito ayuda con esto: 1 NPC que se inscriban personas y lanze pvp randon con un recordar a los dos usuario. La idea es que en el mapa esten duelos 1vs1 mientras gane uno selecciones randon el sigiente duelo y los manda al mapa y asi mantiene una lista con unos 8 usuarios esperando duelos randon. Regards, I need help with this: 1 NPC people sign up and lanze pvp randon with a reminder to both user. The idea is that on the map are duels 1vs1 while you win a selections randon the sigiente duel and sends them to the map and so maintains a list with about 8 users waiting duels randon. Ejemplo:
  3. Zikoziz

    Zona PvP

    dentro de esa zona nada afecta ni los mob, skill etc...
  4. Zikoziz

    Zona PvP

    ya lo solucione usando esto OnInit: setcell "quiz_01",310,92,359,92,cell_basilica,1; solo remplaza las cordenadas que deseas que no tenga pvp y dejas el mapa modo pvp on
  5. Zikoziz

    Zona PvP

    Saludos Comunidad, Me gustaria que me ayudaran en poder dejar solo las zonas marcadas como PVP y el resto del mapa NO PVP Greetings Community, I would like to help me to leave only the areas marked as PVP and the rest of the map NO PVP IMAGEN
  6. Greetings, I need a npc to record user names that you want to report for abuse. example: Who do you want to report? --->Next--> Zikoziz ---->Because motive----> Abuse in PvP --->Thanks for your report, see you later. ***Then save the text to sql tables*** ***And the NPC has the option to review the reports*** thx!! ,
  7. Hi, I have a problem entering DOUBLE LOGIN to BattleGround, which is necessary to remove the DOBLE LOGIN restriction Message showing(use @joinbg) You Cannot join BattleGround Arena queue. Double Login detected pls help me <3
  8. Hi, I need this "npc warp" to be unlocked by ACCOUNT It's unlockable by Character here I leave the scrip ------------------------------- solved =)
  9. Hi =) I need help with this error PLS!! THX <3
  10. Pero al cambiar de Sura a Mini Champ por ejemplo el exe se me cambia el formato. deben ser las mismas cantidades de celdas y asi se mantiene el exe bien X.x
  11. yep need change name 3Job for New Names custom In exe 2013, I can not find the names of the 3rd job
  12. Saludos, Necesito ayuda con el cambio de los nombres de los 3°Job, ejemplo donde dice SURA que diga Test. uso exe 2013 Intente Luas y const.txt pero no funciono Quiero cambiar donde dice SURA por otro nombre
  13. solvet MoleBox = Data.ini + exe in one exe =D
  14. I want to hide the data.ini, I do not want to change the name
  15. Hi, I need to merge exe + data.ini Need to hide data.ini to avoid modifications Box = exe+ini
  16. It does not change in any job
  17. no change Edit Sura job pcjobname [pcJobTbl.JT_SURA] = "Test Champ", pcjobnamegender.lub [pcJobTbl2.JT_SURA] = "Test Champ", exe 2013
  18. Greetings, I need to change the name of the job. Example ---> Assassin Cross ---> Assassin Black THX =D
  19. I dont like xD can you tell me where to add the query_sql line? and how would my table =D I dont like xD can you tell me where to add the query_sql line? and how would my table =D
  20. Hi, I need help implementing query_sql to write the security keys. So you can have a backup if at some point they forget the pass Hola, Necesito ayuda para implementar una query que me guarde las claves de seguridad, por si algun momento algun user se le olvida tener la tabla con su clave =D - script SecuritySystem -1,{ end; OnSettings: while( 1 ) { mes "[^FFA500Security System^000000]"; mes "Estado Actual"; mes "- Clave de Seguridad:"; if( #SECURITYCODE ) { mes "^FFFFFF__________^2E8B57Activada^000000."; mes "- Salidas de Items:"; if( getsecurity() ) { mes "^FFFFFF__________^2E8B57Bloqueadas^000000."; set .@Menu2$, "Permitir Salidas"; } else { mes "^FFFFFF__________^FF0000Permitidas^000000."; set .@Menu2$, "Bloquear Salidas"; } next; set .@Option, select("Cambiar Clave",.@Menu2$,"Quitar Clave","Salir"); } else { mes "^FFFFFF__________^FF0000Inactiva^000000."; next; set .@Option, select("Establecer Clave","Salir") + 4; } switch( .@Option ) { case 1: // Cambiar Clave mes "[^FFA500Security System^000000]"; mes "La clave debe ser un número de 4 digitos entre 1000 y 9999"; mes "Ingrese su Clave Actual..."; next; input .@Pass; if( .@Pass != #SECURITYCODE ) { mes "[^FFA500Security System^000000]"; mes "Clave actual incorrecta!!."; close; } case 5: mes "[^FFA500Security System^000000]"; mes "Ingrese la nueva Clave (Número entre 1000 y 9999)"; next; input .@Pass; if( .@Pass < 1000 || .@Pass > 9999 ) { mes "[^FFA500Security System^000000]"; mes "Valor incorrecto de Pin!!."; close; } mes "[^FFA500Security System^000000]"; mes "Repita la nueva clave para confirmar."; next; input .@CPass; if( .@CPass != .@Pass ) { mes "[^FFA500Security System^000000]"; mes "Las Claves no Concuerdan."; close; } set #SECURITYCODE, .@Pass; break; case 2: // Permitir Salidas - Bloquear Salidas if( getsecurity() ) { mes "[^FFA500Security System^000000]"; mes "Ingrese su número de Pin o Clave para permitir la salida de items."; next; input .@Pass; if( #SECURITYCODE != .@Pass ) { mes "[^FFA500Security System^000000]"; mes "Clave incorrecta!!."; close; } setsecurity 0; } else if( #SECURITYCODE > 0 ) setsecurity 1; else setsecurity 0; break; case 3: // Quitar Clave mes "[^FFA500Security System^000000]"; mes "Ingrese su número de Pin o Clave para continuar."; next; input .@Pass; if( #SECURITYCODE != .@Pass ) { mes "[^FFA500Security System^000000]"; mes "Clave incorrecta!!."; close; } set #SECURITYCODE, 0; setsecurity 0; break; case 4: case 6: mes "[^FFA500Security System^000000]"; mes "Puedes regresar al sistema de Seguridad con @security."; mes "Buen día..."; close; } } end; }
  21. HELP!!! make[1]: *** [obj/sql.o] Error 1 make[1]: Leaving directory `/root/ragnarok/src/common' make: *** [common] Error 2 [div][/div]
×
×
  • Create New...