Jump to content

_Terra

Members
  • Posts

    176
  • Joined

  • Last visited

  • Days Won

    7

_Terra last won the day on April 17 2024

_Terra had the most liked content!

4 Followers

Profile Information

  • Gender
    Male
  • Location
    Chile

Recent Profile Visitors

5712 profile views

_Terra's Achievements

Metaling

Metaling (6/15)

  • Conversation Starter
  • Problem Solver Rare
  • Reacting Well
  • First Post
  • Collaborator

Recent Badges

55

Reputation

19

Community Answers

  1. En tu GRF vas a data\luafiles514\lua files\service_korea\ExternalSettings_kr.lub lo abres con notepad y buscas la siguiente linea: MakeableRace = { Doram = false } Lo cambias por true guardas y ya con eso podrás crear el personaje.
  2. Todo lo que tenga que ver con archivos .gat deben ir en la carpeta data raiíz, es decir que en tu grf lo colocas directo.
  3. I had my server for 1 year in ovh and 0 issues.
  4. Can you post how do you fix that issue? for people who has the same problem.
  5. https://rathena.org/board/topic/105737-just-when-you-log-in/#comment-363232 check this post
  6. Change the skill duration 10000 to 600 in skill_db.yml - Id: 86 Name: WZ_WATERBALL Description: Water Ball MaxLevel: 5 Type: Magic TargetType: Attack Flags: IsAutoShadowSpell: true Range: 9 Hit: Multi_Hit HitCount: 1 Element: Water CopyFlags: Skill: Plagiarism: true Reproduce: true CastTime: - Level: 1 Time: 1000 - Level: 2 Time: 2000 - Level: 3 Time: 3000 - Level: 4 Time: 4000 - Level: 5 Time: 5000 - Level: 6 Time: 6000 - Level: 7 Time: 7000 - Level: 8 Time: 8000 - Level: 9 Time: 9000 - Level: 10 Time: 10000 Duration1: 10000
  7. You can check this line in src/map/trade.cpp /** * Adds the specified amount of zeny to the trade window * This function will check if the player have enough money to do so * And if the target player have enough space for that money * @param sd : Player who's adding zeny * @param amount : zeny amount */ void trade_tradeaddzeny(map_session_data* sd, int32 amount) { map_session_data* target_sd; nullpo_retv(sd); if( !sd->state.trading || sd->state.deal_locked > 0 ) return; //Can't add stuff. if( (target_sd = map_id2sd(sd->trade_partner.id)) == nullptr ) { trade_tradecancel(sd); return; } if( amount < 0 || amount > sd->status.zeny || amount > MAX_ZENY - target_sd->status.zeny ) { // invalid values, no appropriate packet for it => abort trade_tradecancel(sd); return; } sd->deal.zeny = amount; clif_tradeadditem(sd, target_sd, 0, amount); }
  8. Esos iconos recomiendo que los hagas tu mismo porque no creo que encuentres alguno suelto por internet, por lo que tocaría improvisar con photoshop. De igual forma aquí te dejo la ubicación de los archivos que puedes cambiarle el ícono. Cash Shop: data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\basic_interface\nc_cashshop.bmp Roulette Icon: data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\basic_interface\roullette\RoulletteIcon.bmp
  9. El emulador lo puedes encontrar aquí: https://github.com/rathena/rathena
  10. Go to src/map/battle.cpp Search: if ( (skill_get_inf2(skill_id, INF2_ISTRAP) || !status_reflect) && tsd && tsd->bonus.short_weapon_damage_return ) { add after short_weapon_damage_return if ( (skill_get_inf2(skill_id, INF2_ISTRAP) || !status_reflect) && tsd && tsd->bonus.short_weapon_damage_return && skill_id != WS_CARTTERMINATION && skill_id != GS_DESPERADO ) {
  11. You can create a Custom Skill that targets someone and force to follow you, then you can put on an item itemskill "GM_ARREST",1;
  12. Eso se soluciona usando un cliente mas reciente, la otra forma es hacer un "downgrade" del mapa:
×
×
  • Create New...