Jump to content

Brynner

Members
  • Posts

    1959
  • Joined

  • Last visited

  • Days Won

    16

Everything posted by Brynner

  1. ah dati kasi uso pa converter ngaun kc s grf editor di mo na need ngconverter makikita mo nadin agad yung sprite dun
  2. depends on the custom item that you are trying to put in, and the item id range depends on the client that you are using. haha this is the best comment that I saw that really helps a lot hahaha
  3. same padin wala naman nabago sa location ng jobs sprite. meron lang mga nadagdag na jobs kasama yung doram
  4. Tbh, rAthena cant be held responsible for transactions that occur outside of the forum.even if Pokeye scammed you, the staff has no authority to intervene in private deals made off platform. at most your experience can serve as a public warning to others about Pokeye’s past behavior. and not to trust him for future transactions. While rAthena is against unauthorized reselling, transactions made directly between individuals especially outside the forum are beyond the control and responsibility of the rAthena team. since they werent involved and didnt benefit from the deal, theres no basis for expecting official support or action in this case.
  5. this also working on 2023 client.
  6. you mean this one? https://rathena.org/board/topic/104049-freeze-status-modification/
  7. translate1.mp4 data.zip note! just a translation only
  8. no need to use virtualbox. you can directly run it on windows.
  9. yeah not everyone who got 2023 and 2024 exe. how ever even you get a working exe. you still need to fix some latest features of that client because rathena doesn't supported it yet.
  10. -- Instructions: -- 1. Place itemInfo.lua and packageitem.lub in this directory. -- 2. Run run_update.bat -- 3. The script will update only the name field in packageitem.lub based on itemInfo.lua. -- 4. A success message will be printed if changes are made. -- 5. If no matching item IDs are found, no changes will be made. here is the simple script that I made to automatically translate the item name in Probability from itemInfo converter.zip
  11. i just tried it no error on my side. i don't have Grand Arena map so I replace it with another existing map but it works fine on me no error on map server
  12. try this. i haven't tested it. /* ALTER TABLE `char` ADD `pvp_kill` INT(11) UNSIGNED NOT NULL DEFAULT '0' AFTER `fame`; */ payon,193,104,4 script PVP Warper 630,{ doevent "pvp_rank_main::OnTalk"; } - script pvp_rank_main -1,{ OnTalk: mes "[PvP Room Master]"; mes "Where do you want to go?"; next; switch ( select ( "Grand Arena [ "+getmapusers("grandarena")+" ]", "^ff0000[ No Points ]^000000 Izlude PVP Room [ "+getmapusers("pvp_y_1-2")+" ]", ( getgmlevel() >= 99 ) ? "^FF0000[GM] Reset PVP Ranking^000000":"" )) { case 1: // Grand Arena if ( getmapusers("grandarena") >= 100 ) { mes "The Grand Arena is full!"; close; } if ( BaseLevel < 50 ) { mes "Excuse me, but"; mes "you need to be at least level 50 or above!"; close; } warp "grandarena",0,0; announce ""+strcharinfo(0)+" entered Grand Arena PVP ROOM!", bc_all, 0xCCFFFF; end; case 2: // Izlude PVP Room if ( getmapusers("pvp_y_1-2") >= 100 ) { mes "The Izlude PVP Room is full!"; close; } if ( BaseLevel < 50 ) { mes "Excuse me, but"; mes "you need to be at least level 50 or above!"; close; } warp "pvp_y_1-2",0,0; announce ""+strcharinfo(0)+" entered Izlude PVP ROOM!", bc_all, 0xCCFFFF; end; case 3: // GM Reset Ranking if ( getgmlevel() < 99 ) { mes "You do not have permission to perform this action."; close; } mes "[PvP Room Master]"; mes "Reset Ranking? This action cannot be undone."; if ( select( "Confirm", "Cancel" ) == 1 ) { query_sql( "UPDATE `char` SET `pvp_kill` = 0 WHERE `pvp_kill` > 0" ); mes "PvP ranking has been reset."; } close; default: // PvP Rankings mes "[PvP Room Master]"; mes "PvP Rankings:"; query_sql( "SELECT `name`, `pvp_kill` FROM `char` WHERE `pvp_kill` > 0 ORDER BY `pvp_kill` DESC LIMIT 10", .@name$, .@pvp_kill ); .@size = getarraysize( .@name$ ); if ( .@size == 0 ) { mes "No PvP rankings available yet."; } else { for ( .@i = 0; .@i < .@size; .@i++ ) { mes "["+(.@i + 1 )+"] "+.@name$[.@i]+" - "+.@pvp_kill[.@i]+" kill(s)"; } } close; } }
  13. it seems not really an official server. they also use the exact english client translation we are using on their client.
  14. MakeableRace = { Doram = true } AssistAddr = "YOUR IP ADDRESS:8888" ----------------------------------------- -- Old client compatibility [Secret] -- (Just change the "AssistAddr" to your IP) ----------------------------------------- Url = { TwitterUrl = 'http://'..AssistAddr } AccountLinkedUserDataUrl = { Save = 'http://'..AssistAddr..'/userconfig/save', Load = 'http://'..AssistAddr..'/userconfig/load' } TwitterDataUrl = { Auth = 'http://'..AssistAddr..'/twitter/user-auth', Upload = 'http://'..AssistAddr..'/twitter/upload' } EmblemDataUrl = { Upload = 'http://'..AssistAddr..'/emblem/upload', Download = 'http://'..AssistAddr..'/emblem/download' }
  15. just replace the http://0.0.0.0:3000 127.0.0.1.110 127.0.0.1.1 with your ip address.
  16. there is a bug on it. it was reported for a very long time. https://github.com/rathena/rathena/pull/6959
  17. cash and zeny is missing. it works i forgot the db\import\item_db_ex.yml
  18. src\config\secure.hpp #define SECURE_NPCTIMEOUT but I'm not sure if it's going to work. because there is an issue on it which is not fixed for a very long time.
  19. if it's a LAN it doesn't even need to do port forward. all you need to do is to be allowed on your firewall. and also, on your char_athena.conf and map_athena.conf make sure you use your LAN IP instead of 127.0.0.1 and also check if your client uses clientinfo.xml or sclientinfo.xml and also just use your LAN IP there.
×
×
  • Create New...