Jump to content

Conflicts

Members
  • Posts

    317
  • Joined

  • Last visited

  • Days Won

    8

Community Answers

  1. Conflicts's post in PC bonus Error was marked as the answer   
    I think that should be;
    bonus bAllStats,5;
  2. Conflicts's post in Conflicts is a scammer! becareful was marked as the answer   
    Hello Orange00, pretty detailed post I must say. However, I'm not sure why you didn't communicate with me first before all this drama.
     
    I have sold you a Harmony account with 2 IP slots, this account I was using since around 2010. Which, unsurprisingly, was tied to my main (non-RO related) e-mail.
    The deal went well, I gave you access to the account, and you were able to build your client (with Harmony) off of it. However, our complications start when you needed
    access to my personal e-mail. Having known how Sirius has abandoned Harmony, I didn't have much hope of getting the e-mail changed to your e-mail, so yes, I did give you access
    to my personal e-mail. I had trusted you to just read and download e-mails related to Harmony, but no, you did way more than that, I usually find read e-mails that I didn't remember opening.
     
    Everything fell off when you tried to change the email account's password. I have talked to you about it, and you said it'll be fine, and that you'll share the password with me anyway. So I let it pass.
    Then you were asking me about my security questions, after you have changed the mobile number to recover the account. Right then I knew I was going to lose my e-mail if I let that continue.
    While all of that was ongoing, I tried to e-mail Sirius a couple of times for an e-mail change, and of course, as expected there wasn't any response at all.
     
    I have kept all your server's IPs on the Harmony IP management page, and offered you that I'll just manually forward Harmony package e-mails from then on, I haven't heard from you since.
    PS: No, I don't remember blocking you on Facebook. And I even think you also have my old Skype ID. I'm really sad to be a part of such an issue though, but I hope I've explained my side.
  3. Conflicts's post in [Info]: clif_parse: Disconnecting session #8 with unknown packet version (p:0x7f57,l:19). was marked as the answer   
    It's most likely related to this; Packet Obfuscation Support
  4. Conflicts's post in FluxCP links was marked as the answer   
    Actually, these are on /config/application.php
     
    You should see it as something like;
    As for renaming the "Labels", it's on /lang/en_us.php
    I also think this post is better suited at Web Support, so I'll move it accordingly.
  5. Conflicts's post in Op_2num was marked as the answer   
    You can modify this part and increase the divisor (which is currently set at 100)
    getbattleflag("base_exp_rate")/100,getbattleflag("job_exp_rate")/100,60; So it can be like this;
    getbattleflag("base_exp_rate")/100000,getbattleflag("job_exp_rate")/100000,60; Or until it doesn't overflow anymore.
  6. Conflicts's post in Card Trader Redeemer was marked as the answer   
    This part isn't possible;
    if(.Points$ < .@PAmount) { You're comparing a string to an int. Besides, shouldn't .@PAmount be .PAmount? You can try;
    if (#Card_Points < .PAmount) {
  7. Conflicts's post in Having any class use a bow? (Without invisible weapon) was marked as the answer   
    Short answer: No, it's not.
     
    Long answer: It's not normally possible. However if you want to dedicate some insane amount of time for it, it "might" work.
    First off, you can't change how a job's animation is, so you can then opt to change your bow to be used as a Sword. Would look funny.
    You would then have to edit the .act file which comes with your bow, to fit it to the job you wanted to use / wield it (e.g. a Swordsman).
     
    But really, this requires so much time and effort.
    PS: Moved this to Client-side support.
  8. Conflicts's post in Cash Item After Latest Svn was marked as the answer   
    That definitely is caused by this, https://rathena.org/board/topic/99743-item-guid/
    Items can be merged, or the whole thing can be disabled, just read the post.
  9. Conflicts's post in Buffs Information was marked as the answer   
    Please at least test your solution before offering it to those who are in need.
    @Mihael, you should check your data/luafiles514/lua files/stateicon/stateiconinfo.lub
     
    That file contains all the client-side buff descriptions. Edit accordingly, but make sure you follow the formatting.
  10. Conflicts's post in [Ask] How to make normal player can't whisper GM? was marked as the answer   
    I don't think there is such functionality. And to be honest, I don't see the need to have one as well.
    Can't you just create a GM with gibberish name or better yet the infamous IlIlIlIIl -> mix of capital i and small letter L?
    If all else fails, you can always use /exall to block any and all whispers. @request would still go through regardless.
  11. Conflicts's post in Can someone change this broadcast? im using rAmod. was marked as the answer   
    It should be on /db/region_db.txt
  12. Conflicts's post in help libconfig 1.4.9 was marked as the answer   
    Have you installed the dependencies as root user? I'm guessing that's what is causing this issue.
    Some guides mention creating a super user (sudoer), but you should install rAthena dependencies while logged in as root.
  13. Conflicts's post in Just a little request on sl effect for hunters was marked as the answer   
    On /src/map/skill.c
    Find:
    || (tsc && tsc->data[SC_SPIRIT] && tsc->data[SC_SPIRIT]->val2 == SL_ROGUE) //Rogue's spirit defends againt dispel. Change to:
     
    || (tsc && tsc->data[SC_SPIRIT] && (tsc->data[SC_SPIRIT]->val2 == SL_ROGUE || tsc->data[SC_SPIRIT]->val2 == SL_HUNTER) ) //Rogue's spirit defends against dispel.
  14. Conflicts's post in Download jRO and kRO cliente... was marked as the answer   
    You can use the link from here: RO Client Library. Courtesy of Akkarin.
  15. Conflicts's post in Avast Last Updade accuses 2013-08-07_client.exe like a virus was marked as the answer   
    Avast is notorious for false positives. However, have you tried rebuilding your client (exact same date and patches), to see if Avast still flags it?
  16. Conflicts's post in SC_SPECIALEFFECT or SPECIALEFFECT2 ? was marked as the answer   
    This is actually more of a Scripting Support.
    @Tales, I think you must use freeloop(1) to prevent loop errors / crashes.
     
    PS: Our Scripting Leaders should be able to provide you with a more precise answer.
  17. Conflicts's post in Can anyone help me with 20130807 Client to remove screen shaking? was marked as the answer   
    You can use NEMO. Make sure you patch with DisableQuakeSkillEffect included.
    Avoid posting duplicate topics. Take this as a warning.
  18. Conflicts's post in FluxCP Error was marked as the answer   
    Try changing this line"
    $dt = new DateTime("@$vipexpiretime"); To this:
    $dt = new DateTime("$vipexpiretime"); Let us know if it worked.
  19. Conflicts's post in Whats the diference btw NEMO and xDiffGen/Team? was marked as the answer   
    It's a bit tricky, but you can use both. Especially for older clients.
    The way I do it is (for 2012-04-10):
    Diff the client using WeeDiffGen / xDiffGen first, add ALL the diff options I want Load the client up on NEMO, and select only the diff options I want, but isn't available on WeeDiff / xDiff. Submit the Client to Harmony, and download the client / install the server files, etc. (Optional) I included the Harmony step because that's the only reason I see, to possibly prevent you to update to newer, better clients (2013-08-07).
  20. Conflicts's post in Help! Legacy TXT eAthena user looking to run a new server was marked as the answer   
    Hey there. I've used eAthena TXT based when I started. The best place I can point you to would be the Wiki.
    For those who are starting up, the guides there would be great. And as soon as you get the hang of things, feel free to ask questions here on the forums.
  21. Conflicts's post in Can't start server was marked as the answer   
    It's nothing related to the scripts. Your OS is silently killing your ./map-server process. Most likely reason is lack of usable RAM.
  22. Conflicts's post in How to WIPE a specify item on database? was marked as the answer   
    You can, though you'd have to write 4x more queries for it, it's still do-able. Here's an example for cart_inventory;
    UPDATE `cart_inventory` SET `card0` = '0' WHERE `cart_inventory`.`card0` = 'XXXX'; UPDATE `cart_inventory` SET `card1` = '0' WHERE `cart_inventory`.`card1` = 'XXXX'; UPDATE `cart_inventory` SET `card2` = '0' WHERE `cart_inventory`.`card2` = 'XXXX'; UPDATE `cart_inventory` SET `card3` = '0' WHERE `cart_inventory`.`card3` = 'XXXX'; Replace XXXX with the Item ID of the MVP Card you wanted to delete. Setting it to 0 is better than deleting it, for me at least.
  23. Conflicts's post in SQL DB Error was marked as the answer   
    I don't know how you ended up with a corrupted ragsrvinfo table, but try running this query;
    DROP TABLE IF EXISTS `ragsrvinfo`; CREATE TABLE `ragsrvinfo` (   `index` int(11) NOT NULL default '0',   `name` varchar(255) NOT NULL default '',   `exp` int(11) unsigned NOT NULL default '0',   `jexp` int(11) unsigned NOT NULL default '0',   `drop` int(11) unsigned NOT NULL default '0' ) ENGINE=MyISAM; This will, drop your old ragsrvinfo table and re-create a new one.
  24. Conflicts's post in Player attached to NPC can't use comands was marked as the answer   
    Hello iraciz, you can add the permission;
    *command_enable Enable to use atcommand while talking with NPC.
×
×
  • Create New...