Jump to content

Arthurion

Members
  • Posts

    21
  • Joined

  • Last visited

  • Days Won

    1

Arthurion last won the day on November 9 2018

Arthurion had the most liked content!

Profile Information

  • Server
    None
  • Github: None

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Arthurion's Achievements

Poring

Poring (1/15)

4

Reputation

  1. change your clientinfo to 127.0.0.1 since you're connecting to your local server
  2. As he said use the bonus script to add the HP. and use OnLoadMapEvent for specific maps to remove bonus_script_clear script command. go read the script command bonus_script "{bonus bMaxHP,500000;}",86400000,0,0;
  3. Both potion creation / 3rd job food creation have both failing chances.
  4. Try not creating with a user with _M / _F and start with that first.
  5. It's still nonexistent in rathena, only the job sprite support is available. It shouldn't be a problem even if you don't remove it at the moment
  6. prontera,1,1,1 script exchanger 123,{ for(.@i = 0; .@i < getarraysize(.possible_trade); .@i++){ if(countitem(.possible_trade[.@i]) >= .trade_amount[.@i]){ .@menu$ += .trade_amount[.@i] + " - " + getitemname(.possible_trade[.@i]) + ":"; .@trade += 1; } else { .@menu$ += "^d3d3d3You lack " + getitemname(.possible_trade[.@i]) + "^000000" + ":"; } } if(.@trade == 0){ mes "- You don't have any possible items to trade. -"; close; } .@i = select(.@menu$) - 1; if(countitem(.possible_trade[.@i]) < .trade_amount[.@i]){ mes "- You lack "+getitemname(.possible_trade[.@i])+" for trading."; close; } mes "Are you sure you want to trade your "+.trade_amount[.@i]+" "+getitemname(.possible_trade[.@i])+"?"; next; if(select("Yes:No") == 2) end; delitem .possible_trade[.@i],.trade_amount[.@i]; getitem .reward_item,1; end; OnInit: setarray .possible_trade,501,502,503; // Item ID To Exchange setarray .trade_amount,5,5,10; // Amount To Exchange .reward_item = 607; // Item Reward for Exchanging end; } Just change the ID in possible trade and the reward item for each trade. You can also add possible id to trade in the array
  7. Try changing your msgstringtable
  8. I think you're talking about this.
  9. enable the dynamic mob in the conf
  10. I think its somewhere in the client conf aura_lvl
  11. Editing the aura in battle.conf should be sufficient and there is 185/65 update in rathena, and this aura is hardcoded in the client.
  12. except for the zeny requirement everything else should be in the channels.conf
  13. The default rA already has a 16.1 episode.
  14. delay_dependon_dex: no delay_dependon_agi: no
×
×
  • Create New...