-
Posts
3144 -
Joined
-
Last visited
-
Days Won
212
Community Answers
-
Akkarin's post in Starting a High End Private Server was marked as the answer
If you had a legal team of any kind, they would tell you to stay the hell away from running a private server. Your team need to be fired.
Also, this is not the correct location for hiring staff - see: https://rathena.org/board/jobs_available/
-
Akkarin's post in Admin menu Fluxcp was marked as the answer
Actually, your theme is out of date. The xLabels are defined in the language files. You should update your theme.
-
Akkarin's post in Simple anti bot console error was marked as the answer
The error in the console literally tells you what's wrong. Remove the ; from the for loop.
-
Akkarin's post in Most Stable Client for Renewal now? was marked as the answer
"most stable" is ambiguous.
All clients work if rAthena has the packets listed. The default client at the moment is defined in source as:
#define PACKETVER 20211103 http://nemo.herc.ws/clients/2021-11-03_Ragexe_1635926200/
-
Akkarin's post in R> Modify @go map list was marked as the answer
The text you're looking for is in your conf folder: https://github.com/rathena/rathena/blob/master/conf/atcommands.yml#L167
- Command: go Help: | Params: <city name|number> Warps you to a city. -3: (Memo point 2) 14: louyang 31: mora -2: (Memo point 1) 15: start point 32: dewata -1: (Memo point 0) 16: prison/jail 33: malangdo island 0: prontera 17: jawaii 34: malaya port 1: morocc 18: ayothaya 35: eclage 2: geffen 19: einbroch 36: lasagna 3: payon 20: lighthalzen 4: alberta 21: einbech 5: izlude 22: hugel 6: aldebaran 23: rachel 7: xmas (lutie) 24: veins 8: comodo 25: moscovia 9: yuno 26: midgard camp 10: amatsu 27: manuk 11: gonryun 28: splendide 12: umbala 29: brasilis 13: niflheim 30: el dicastes
-
Akkarin's post in I found this script how they do that. was marked as the answer
It's a web panel and an item that has a menu.. that's literally it.
You can accomplish the same thing by using SQL for your items/mobs and FluxCP (or just phpmyadmin or similar will do) to change the values of an item. The GM item they use in-game will be an item that calls a function, the function provides a message and then a menu, when you select to reload the item db the script will run 'atcommand @reloaditemdb;'.
Very easy to setup if you look at script_commands.txt in the Github repo.
-
Akkarin's post in Array based Quest with Blacklist was marked as the answer
That is a complete waste of system resources.
No. Use the script command 'compare'.
*compare("<string>","<substring>") This command returns 1 or 0 when the substring is in the main string (1) or not (0). This command is not case sensitive. Examples: //dothis; will be executed ('Bloody Murderer' contains 'Blood'). if (compare("Bloody Murderer","Blood")) dothis; //dothat; will not be executed ('Blood butterfly' does not contain 'Bloody'). if (compare("Blood Butterfly","Bloody")) dothat; So for your script you would do something like:
if(compare(.Mob_BlackList, .Mob_List)){ debugmes "Mob is in blacklist."; } else { debugmes "Mob is NOT blacklist."; } Iterate through your array elements however you wish. See Disguise NPC in our repo for further usage example https://github.com/rathena/rathena/blob/master/npc/custom/events/disguise.txt#L208
-
Akkarin's post in Error when adding to db/import/item_db.yml End of Map Not Found was marked as the answer
Did you read the error? It says you have an issue with line 493, column 2, which means you've got spaces there that shouldn't be.
You also need to uncomment the Body: on line 89.
-
Akkarin's post in Need Mobdb and mobspawn db for Episode 5 and newer was marked as the answer
We'd literally be looking in the same place as you. Referencing old kRO update posts and announcements is pretty much the only way to do this semi-accurately.
You could also find old Aegis files (if they still exist for those early episodes) to see if they help. There are files as early as Ep 9 at a quick glance; if you look around properly you may well find earlier data: https://mega.nz/folder/p94FTaRJ#86qjwAyztcQ565Xe4emzxQ
-
Akkarin's post in Adding additional script on item through import file not working was marked as the answer
Not quite..
Use db/import/item_db.yml instead.
-
Akkarin's post in Anyone can help me please setup my fluxcp? was marked as the answer
The code is obviously not correct:
'UseMD5' => `false, Remove that erroneous `
The error literally told you where to look.
-
Akkarin's post in Lates Clean Hexed was marked as the answer
The latest client date that rAthena supports is always listed as the default in https://github.com/rathena/rathena/blob/master/src/config/packets.hpp#L16
You can find that client floating around the Client Release forum.
Also, please change your topic title to something more informative before I start handing out Warning Points. "lates clean hexed" could mean any client a few years down the road.
-
Akkarin's post in I have a problem BrowEdit r586 was marked as the answer
.... click "objects" in that dropdown list.
-
Akkarin's post in Client Crash at Character Options was marked as the answer
Your version of rAthena is likely not compiled to accept the packet structure of your 2010 client. There are many guides on how to change your servers packet version to accept a proper connection from your chosen client version.
-
Akkarin's post in fluxcp rss news was marked as the answer
Your if-statement is checking for type 2, and then doing an else-if check for type 2 for no reason.
if($newstype == '2'){ } elseif($newstype == '2'){ } You need to sort out your if-statements before you can display information correctly.
-
Akkarin's post in R>Dialog Appears upon login was marked as the answer
This message is enabled by default when you have the VIP system enabled.
Message config line: https://github.com/rathena/rathena/blob/master/conf/battle/player.conf#L231
VIP config line: https://github.com/rathena/rathena/blob/master/src/config/core.hpp#L50
-
Akkarin's post in How to create this block? was marked as the answer
In ACP:
Then on the content tab:
{{if !empty( $items ) }} <h3 class='ipsWidget_title ipsType_reset'>{$title}</h3> <div class='ipsPad_half ipsWidget_inner'> <ul class='ipsDataList ipsDataList_reducedSpacing'> {{foreach $items as $item}} <li class='ipsDataItem'> <div class='ipsDataItem_main'> <div class='ipsType_break ipsContained'><a href="{$item['link']}" target="_blank" rel="noopener noreferrer" class='ipsDataItem_title ipsTruncate'>{$item['title']}</a></div> <span class='ipsType_light ipsType_small'>{datetime="$item['date']"}</span> </div> </li> {{endforeach}} </ul> </div> {{endif}}
-
Akkarin's post in Thor Patcher with Multiple Client was marked as the answer
Yes, but also no.
You can run another program while the patcher is open, which will give you the two clients capabilities, but the patcher will stay open until you close it.. which you've already tried.
-
Akkarin's post in Behavior of CHANGELOOK was marked as the answer
I think there's an old @command somewhere that does the same thing - so in your equip & unequip scripts you would have something similar to:
{},{ headvar=getlook(LOOK_HEAD_BOTTOM); changelook LOOK_HEAD_BOTTOM, 2231; },{ changelook LOOK_HEAD_BOTTOM, headvar; }
-
Akkarin's post in mvplog not logging was marked as the answer
// Log MVP Monster Drops (Note 1) // Outdated. Use Pick_Log instead. But this log could be useful to keep track slayed MVPs log_mvpdrop: no I assume you set this to "yes"?
-
Akkarin's post in Clientinfo.xml was marked as the answer
You can view in-depth information regarding the clientinfo.xml file on our wiki: https://github.com/rathena/rathena/wiki/Clientinfo.xml
-
Akkarin's post in KRO : Illusion of Under Water was marked as the answer
Content and features are slightly different. Feature-wise we're around the 16.1 mark, content-wise we're still gathering data to update our databases for 15.2 (devs please correct me if i'm wrong). There's an awful lot of data flying around that we could use to half-update some of our databases, but then they wouldn't coincide with other areas where we have data to publish for 16.2 or even the newer 17.1 data. The item and mob db can be updated to match kRO on the fly, but making sure that other systems and features work cohesively is what keeps us behind, because we can't simply push out updates for things that the emu isn't ready to handle.
-
Akkarin's post in Old code needs convert to YML format was marked as the answer
@Grava is active on the forums, perhaps he'd like to update his file.