Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/24/19 in all areas

  1. A mod that makes NPC able to open Buyingstore First diff for rAthena Git Hash: 584fcac4 (20180726) Possible for older rAthena version or emulator
    1 point
  2. try - script Sample -1,{ OnInit: .map$ = "guild_vs1"; .max_round = 40; end; OnClock0000: if (.status) end; .round = 0; .status = 1; OnSummon: sleep 3000; .round++; if (.round <= .max_round) { mapannounce .map$, "ROUND - "+.round+"/"+.max_round+"!", bc_map; sleep 5000; monster .map$,50,50,"--ja--",-3,1,strnpcinfo(3)+"::OnReward"; } else { .status = 0; .round = 0; killmonsterall .map$; } end; OnReward: donpcevent strnpcinfo(3)+"::OnSummon"; addrid(1, 0, 5, .map$); // Prize + Amount if (.round <= 10) .@amount = 1; else if (.round <= 20) .@amount = 2; else if (.round <= 30) .@amount = 3; else .@amount = 4; getitem 501, .@amount; getitem 502, .@amount; getitem 503, .@amount; end; }
    1 point
  3. Yes, I saw the problem, I was using one variable not declared. ('@char[0]', '@char[1]' instead of '.@char[0]', '.@char[1]') You guys need change this: To: And this: To: Thanks to notify me.
    1 point
  4. you can try deleting this part on a separate function switch (flag) { case 1: npc_buysellsel(sd,nd->bl.id,0); break; //Buy window case 2: npc_buysellsel(sd,nd->bl.id,1); break; //Sell window default: clif_npcbuysell(sd,nd->bl.id); break; //Show menu } case 2: npc_buysellsel(sd,nd->bl.id,1); break; //Sell window could be the other one though
    1 point
  5. set the value for range parameter maybe... fixed and wait the new download to be available again.
    1 point
×
×
  • Create New...