Jump to content

Waken

Members
  • Posts

    65
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Waken

  1. Could you put a screenshot from the browedit in Gat EditMode pls?
  2. Later will prove it Hiero! Looks like a good tool... GJ!
  3. De que lo han traducido yo creo que quiza? ... pero de que lo han compartido, yo creo que no... la comunidad española de RO no es de muy compartir que se diga; o de organizarse en algo que ayude a los demás. ¿Porqué mejor no subirlo en script releases en ingles? Ya he visto que la gente solicita un poco de ayuda en algunos releases, y la gente apoya. En tu caso, solo es el hecho de traducir, osea, el trabajo ya esta más que hecho; estoy muy seguro que más de alguno traduciria y publicaría la traduccion. Estoy totalmente de acuerdo contigo Olrox, la comunidad Española suele compartir lo mínimo, releases como este podrían ser traducidos al inglés y más tarde si acaso podrían ser traducidos al Español a partir de una versión Inglesa, ya que las probabilidades de que un Español sepa coreano a mi parecer son mucho más menores a las de cualquier usuario de rAthena. Si se traduciese al Inglés, yo mismo lo traduciría al Español, el caso es que no sé coreano y por eso no puedo aportar ninguna buena traducción.
  4. Thanks for these buttons Gnome! Thx for sharing! The images only and paste with other images in À¯ÀúÀÎÅÍÆäÀ̽º/ !
  5. Well, the problem it's that i dont want to do when the player hide, i want to do that, when a player is disguised (@disguise) the player cant do any skills, but i have problems doing this...
  6. "When a player is disguised (@disguise) the player cant do any skills"
  7. Hello community of rathena. It I Do not it works at the log out disappears full strip effect. I want to do will not disappear the full strip effect. status.conf // Will certain skill status-changes be removed on logout? // This mimics official servers, where Extremity Fist's no SP regen, // Strip Equipment, and some other buffs are removed when you logout. Setting is: // 0 = remove nothing. // 1 = remove negative buffs (stripping, EF) // 2 = remove positive buffs (maximize power, steel body...) // 3 = remove both negative and positive buffs. debuff_on_logout: 0 Is set to 0 but continues disappearing.... I have added full strip here, but still not working, Status.c -> int status_change_clear_buffs //Stuff that cannot be removed case SC_WEIGHT50: case SC_WEIGHT90: case SC_COMBO: case SC_SMA: case SC_DANCING: case SC_GUILDAURA: case SC_SAFETYWALL: case SC_PNEUMA: case SC_NOCHAT: case SC_JAILED: case SC_ESPOSADO: case SC_ANKLE: case SC_BLADESTOP: case SC_CP_WEAPON: case SC_CP_SHIELD: case SC_CP_ARMOR: case SC_CP_HELM: case SC_STRFOOD: case SC_AGIFOOD: case SC_VITFOOD: case SC_INTFOOD: case SC_DEXFOOD: case SC_LUKFOOD: case SC_HITFOOD: case SC_FLEEFOOD: case SC_BATKFOOD: case SC_WATKFOOD: case SC_MATKFOOD: case SC_FOOD_STR_CASH: case SC_FOOD_AGI_CASH: case SC_FOOD_VIT_CASH: case SC_FOOD_DEX_CASH: case SC_FOOD_INT_CASH: case SC_FOOD_LUK_CASH: case SC_EXPBOOST: case SC_JEXPBOOST: case SC_ITEMBOOST: case SC_STRIPWEAPON: case SC_STRIPSHIELD: case SC_STRIPARMOR: case SC_STRIPHELM: continue; Any ideas on that may be?
  8. I will test it. Thanks for your answer. EDIT : It I Do not it works at the log out disappears full strip effect. I have to post east message into a English section. Básicamente no me ha servido el script que me ha dado, no me funciona, además de que no quiero hacer scripts, porque no me gusta la idea de ir sobre cargando el server. Dejo esto a ver si alguien me puede echar una mano, preferiblemente por source...
  9. Buenas a todos comunidad de rAthena hispana, vengo a pedir soporte ya que he intentado hacerlo por mi mismo pero no lo he logrado. Lo que sencillamente quiero hacer como el titulo indica es que el full strip se mantenga al deslogear, tras mirarme status.c, skill.c, me he dado cuenta que no encuentro nada relacionado con el tema y no logro poderlo hacer. En teoría con esto debería funcionar en el status.conf, pero sin embargo no encuentro solución con ponerlo al 0. // Will certain skill status-changes be removed on logout? // This mimics official servers, where Extremity Fist's no SP regen, // Strip Equipment, and some other buffs are removed when you logout. Setting is: // 0 = remove nothing. // 1 = remove negative buffs (stripping, EF) // 2 = remove positive buffs (maximize power, steel body...) // 3 = remove both negative and positive buffs. debuff_on_logout: 0 ¿Alguna sugerencia para que al logear se conserve el strip?
  10. We want to make a command that executes a skill with target But the problem is that the skill makes itself because the command Any idea? atcommand.c /*========================================== * @asesinar (asesinar) *------------------------------------------*/ ACMD_FUNC(asesinar) { struct map_session_data *pl_sd = sd; struct block_list *bl; nullpo_retr(-1, sd); bl = &sd->bl; if (skill_get_inf(1023)&INF_GROUND_SKILL) unit_skilluse_pos(bl, pl_sd->bl.x, pl_sd->bl.y, 1023, 1); else unit_skilluse_id(bl, pl_sd->bl.id, 1023, 1); return 0; } skill.c case CM_ASESINAR: clif_skill_nodamage(src,bl,skillid,skilllv,1); break;
  11. He wants to know is how to make a target skill, do not know if the target is calculated at the source or the skill db.
×
×
  • Create New...