Jump to content

KazumaSatou

Members
  • Posts

    157
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by KazumaSatou

  1. Pode ser necessário habilitar isso para que a roleta seja exibida
  2. What's to fix? The GM Suit Sprite? If it is, just remove the account id from clientinfo.xml in your GRF or Diff your client to Remove GM Sprite.
  3. Yes, if you're client using Towninfo.lub by default.
  4. No, not the MVP Map. It is a Battleground which has a MVP Guardian that can be killed by other team.
  5. Might be you're using old client that doesn't support the latest models? But if you're using at least 2018 or 2022 client, that might not be the issue.
  6. This will be automatically updated once the server time reach 00:00. prontera,161,185,3 script Day of The Day 100,{ end; OnInit: while(1){ .@day = gettime(DT_DAYOFWEEK); if(.@day == 0) .@day$ = "Sunday"; if(.@day == 1) .@day$ = "Monday"; if(.@day == 2) .@day$ = "Tuesday"; if(.@day == 3) .@day$ = "Wednesday"; if(.@day == 4) .@day$ = "Thursday"; if(.@day == 5) .@day$ = "Friday"; if(.@day == 6) .@day$ = "Saturday"; waitingroom "Today is "+.@day$+"!",0; sleep 100; delwaitingroom; } end; }
  7. The first link is the one that teach you how to create an item. https://rathena.org/board/topic/61862-guide-spriting-101-creating-a-sprite-and-act-file/
  8. This guide is old but still the same process to make custom sprite. https://rathena.org/board/topic/61862-guide-spriting-101-creating-a-sprite-and-act-file/ For adding custom items, you can check the guide here:
  9. Enable similar patch on WARP and that'll fix your problem.
  10. Double check your database if you have a table named pvp_arenas If you don't have it, it will not show anything since you don't have that table.
  11. You just request it to functor to install your gepard on latest rathena.
  12. You can enable this patch while diffing your client and set to 255:
  13. I don't know what are you talking about broken link from rms, I just downloaded it right now and it works. But I'll upload it anyway since I think you have problem downloading in ratemyserver. spr_conview_v0.11.zip
  14. You can find a few RO Tools on ratemyserver including the SPR Conview. https://ratemyserver.net/index.php?page=download_tool
  15. Because there's a unique id for every rental item to know when it will expire. So bound is your only way to prevent that
  16. I don't think that you can make that stack since it has an expiration date. You can make a bound item and that can be stacked.
  17. Diff your client and remove the Add support for preview button in cash shop Then check again.
  18. - Id: 55073 AegisName: _Cocodrilo_Charm Name: Cocodrilo Charm Type: Charm Buy: 948 Weight: 10 Trade: NoSell: true NoDrop: true Script: | if ( countitem( 55073 ) < 2){ bonus bDef2,1; bonus bAllStats,5; bonus bAddMaxWeight,10000; bonus2 bAddClass,Class_All,10; bonus2 bMagicAddClass,Class_All,10; skill 257,5; skill 249,5; } else { message strcharinfo(0),"You can only use 1x "+getitemname(55073)+"! All same charm(s) has been disabled."; bonus bDef2,1; } Try this.
  19. https://github.com/rathena/rathena/blob/master/conf/battle/player.conf#L237
  20. You need to set a map with loadevent mapflag so the OnPCLoadMapEvent will be triggered when you enter the map. Without that, OnPCLoadMapEvent won't work.
×
×
  • Create New...