Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 12/15/18 in all areas

  1. The rAthena have changed the default PACKETVER to 20180620 because we support all required features or have them on some pull requests in the Git repository and because of that I'm releasing this client. That's all. Important Note: This client uses sclientinfo.xml instead of clientinfo.xml. Download link: 2018-06-20eRagexeRE.exe (MediaFire).
    1 point
  2. LOGIN SCREEN https://streamable.com/ii9gib https://streamable.com/fc0sn7 https://vimeo.com/287302640 https://vimeo.com/300142810 https://vimeo.com/274177970 https://vimeo.com/310257994 https://streamable.com/6t1f6 Splash's https://streamable.com/n58ma Misc All Launcher's have Discord RichPresence SCRIPT & SOURCE Bet System https://vimeo.com/297864967 Pick Item with Mouse Click https://vimeo.com/288068416 Hack'n Slash Attack System https://vimeo.com/285431474 SkillShot System https://vimeo.com/269528679 Header Hud Char Info https://vimeo.com/268928510 System Conversor Skill Target to Place https://vimeo.com/307620277 LEAGUE OF LEGENDS INSPIRED SKILLS Ivern https://vimeo.com/270423927 https://vimeo.com/270211429 Kalista https://vimeo.com/270518714 Ash https://vimeo.com/270728857 Orianna https://vimeo.com/270911850 Xayah https://vimeo.com/271172345 Katarina https://vimeo.com/269402201 Client Edit Drag System https://streamable.com/dnqgz New Hud Interface (Old) NEW INTERFACE FROM TOS (WITH NPC DIALOG) https://streamable.com/ebec1 TREE OF SAVIOR INTERFACE 2.0 https://streamable.com/zshk1t https://streamable.com/jpqeks https://streamable.com/5axy7g RPG Style Map Transition https://streamable.com/vjz06y New Game Filter https://vimeo.com/303199417 Item Summon Screen https://vimeo.com/300142810 Rain https://vimeo.com/298893681 Rain 2.0 https://streamable.com/8hlb3l Campfire Button Shortcut https://vimeo.com/298498848 Talk with NPC with spacebar press https://streamable.com/puoar2 Discord Integration WALK WITH WASD https://streamable.com/c4u7u DRESSROOM MOD https://streamable.com/n1ncz MASTERY WINDOW https://streamable.com/zfttp ________________________________________ A lot of other things I haven't record, but I will try to keep this updated. Green = last added.
    1 point
  3. Hello everyone, I present to you a modified tip box which has been completely translated to English. Tested on: 2018-04-04c RagexeRE and worked like a charm. In your System folder in Client side, replace your tipbox.lub with my translated tipbox i have attached below: tipbox.lub Then, Patch your client with whatever settings you want and then open the patched client in hexeditor ( I used XV132 for this) IMPORTANT NOTE : Make sure you hex a "patched" client. DO NOT do it on an unpatched client or else NEMO will show errors for random "recommended patches" that you select while patching it. Find the following and replace with hex for english translation : for checkbox: BD C3 C0 DB C7 D2 20 B6 A7 20 BF AD B1 E2 English translation: 53 61 76 65 20 54 69 70 3F 20 20 20 20 20 for close button : B4 DD B1 E2 English translation : 44 6F 6E 65 (korean translation of close has only 4 strings so I had to replace it with "Done" to match the string size -_-) OR go to your NEMO folder/patches/TranslateClient.txt and add this at the end of it then patch your clients: (Thanks to @Asheraf for telling me about this xD) M: Translate Tip box ------------------------------ F: BD C3 C0 DB C7 D2 20 B6 A7 20 BF AD B1 E2 R: 'Save Tip?' F: B4 DD B1 E2 R: 'Done' Old tip box: New translated tipbox: -- On a funny Note, I had no clue what the korean translation for the Check box was LOL so I just randomly translated it to "Save tip?" instead cuz it was a logical solution LMAO
    1 point
  4. Without a gdb file or a clue where is crashing is pretty impossible to help you. Are you using the last emulator? I don't think you are cause I can't reproduce this error
    1 point
  5. @InfectedX I have this version and work on my updated rAthena Server. NightmarishJitterbug.txt
    1 point
  6. 5 years of this wrong guide posted here, and no one corrects the OP about issues, that it will never work properly. Sorry, but this guide absolutely incorrect at all! 1. https://git-scm.com/docs/git-svn there is a tool called git svn, the tool specially designed for moving from old not popular anymore and very ineffective SVN to git. All that needs to do is: 2. Git SVNCLONE <URL> git svn clone https://github.com/rathena/rathena/blob/master/ or git svn clone http://<your_svn_repository_link> It will convert almost ALL commits from SVN since r1 up to the latest revision and will save it in a good format to GIT with saving ALL changes made since the beginning of SVN, with commits, with authors, with changes, etc, without any merge issues whatever. All that is required: is working svn server. The process will take a while (because there is already ~17k commits) each commit need to convert (the git svn tool will do it by itself).
    1 point
  7. To Annie's post above she actually told me not to do this when I did it like 4 years ago... What the heck and she doesn't even credit me here for maybe giving her some kind of subliminal inspiration whatever... :< [Source] Hurry before she changes it. /gg Anyways I just wanted to post a neat function I came up with for anybody who might want to use it. DisplayPages Function: Basically, it takes a bunch of options that you want to put into a menu and adds pages so the players can move through them easily. ///This function takes an array of strings and builds a menu players can navigate. ///Usage: DisplayPages(.@string_array${, .@page_size }); ///Output: This function returns the selected item index from the given array. function script DisplayPages { .@page_size = getarg(1, 10); .@len = getarraysize(getarg(0)); .@pages = .@len / .@page_size; .@pages -= .@len > .@page_size && .@len % .@page_size ? 0 : 1; do { copyarray .@copy$[0], getelementofarray(getarg(0), .@page_size * .@page), .@page_size; if( .@page < .@pages ) .@copy$[.@page_size] = "Next Page =>"; if( .@page > 0 ) .@copy$[.@page_size +1] = "<= Previous Page"; .@menu = select(implode(.@copy$,":")); if( .@menu == .@page_size +1 ) .@page++; else if( .@menu == .@page_size +2 ) .@page--; deletearray .@copy$; } while( .@menu > .@page_size ); .@menu += .@page_size * .@page; return .@menu-1; } Example NPC: prontera,146,188,4 script Warper 97,{ mes "[Warper]"; mes "Select the map you want to warp to."; next; setarray .@maps$, "prontera", "morocc", "payon", "geffen", "izlude", "jawaii", "dewata", "eclage", "moscovia", "ayothaya", "lighthalzen", "alberta", "aldebaran", "xmas", "comodo", "hugel", "rachel", "veins", "pvp_n_1-5", "pvp_n_1-4"; .@selection = DisplayPages(.@maps$, 5); warp .@maps$[.@selection], 0, 0; end; }
    1 point
  8. Evening all! I'm sure we've all come across a file that we really wanted to download, but found that we end up with a page that simply says "File Not Found". It's annoying. We feel your pain. You can help us to clean up these files! When you come across a file that doesn't actually have any files attached to it, you can click on the grey "Report this file" link near the bottom of the file page area. This will give you something that looks like this: When you select the Missing File option, your report will be placed into a special category. If moderators don't happen to have the original file on hand (which we tend to keep when approving files to make sure they work) they will send the original author a PM asking for a re-upload. If the author doesn't respond within 7 days, the file and support topic (if it has one) will be hidden. There are currently 2,760 file records in our database, and i'm almost willing to put money on the fact that ~15% of those files are ghost records (file records in our database without actual files saved on disk). Members who are particularly diligent will be awarded the Helper badge and will be displayed next to all of your posts and on your forum profile. It's like bug-hunting.. but for things that aren't there.. Happy reporting! Akky out~
    1 point
  9. CREATE TABLE IF NOT EXISTS `cp_ticket` ( `ticket_id` int(11) NOT NULL AUTO_INCREMENT, `ticket_number` int(11) NOT NULL, `group` tinyint(4) NOT NULL DEFAULT '1', `account_id` int(11) NOT NULL, `subject` varchar(100) NOT NULL, `category` varchar(100) NOT NULL, `body` text NOT NULL, `date_filed` datetime NOT NULL, `poster` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'open', `ip` varchar(50) NOT NULL, PRIMARY KEY (`ticket_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=804 ; -- There ya go!
    1 point
×
×
  • Create New...