Jump to content

michaelsoftman

Members
  • Posts

    410
  • Joined

  • Last visited

Posts posted by michaelsoftman

  1. So I'm attempting to patch the 2018-06-20eRagexeRE client with the latest version of Nemo.  After patching, the client won't open on startup.  I've read other topics around the forums, and it seems like it's required to have the patch SelectKoreaClientInfo().  However, this patch doesn't work in Nemo at all. Selecting it will always return a Failed in step 2c - found wrong offset for iteration no.0 error.

    Is there a way to get this working?  I see other forum topics where members have applied this patch somehow.  Or is it not actually needed, and my issue is actually something else?

  2. So with a fresh installation of rAthena, and following the guide here - https://github.com/rathena/rathena/wiki/Install-MySQL

    I get this error.  Error Code: 1064. You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`clan_id` int(11) unsigned NOT NULL AUTO_INCREMENT,   `name` varchar(24) NOT NUL' at line 1

    I'm using mySQL version 5.5.59, along with mySQL Workbench version 5.2.47.  I'm attempting to run the main.sql file and I get this error.  No changes have been made to the source code and it's a brand new install of mySQL.  Any ideas?  Should I try a different mySQL version?

  3. As for spaces in guilds or other stuff as long as the space is an allowed character in names then it should work. If you can put the space in character names then guild names should work. However, that might not be the problem, I had the exact problem you described above not that long ago and it wasn't an issue with the client hexing. My packet_db was incorrect for my client. As soon as I got the correct packet version the problem magically when away! Peopleperson49

     

    So, with the current packet_db, I should set it to version 30 instead of default?  That's what the db says for the client date I'm using.

     

    I'll try it and see if it works, thank you!

  4. I'm having an odd problem.

     

    Sometimes, the #main channel just decides to 'go away' and no one can use it.  But I can recreate it with the @main create #main and it works just fine again.

     

    None of the other channels do this.  I enabled logs on my server to see why, but so far there seems to be no cause which is odd.


    Anyone have any ideas?

  5. I'm using a 2012-4-10a client.

     

    I can't make a guild name with a space in it, using /guild "Test guild" for example.  I found a topic in which to change a hex string from 6A 20 53 FF D6 83 C4 08 to 6A 21 53 FF D6 83 C4 08 but the problem is still there.

     

    Also, when trying to name a guild something even if it's one word, I get a "guild already exists" message even if it doesn't.

     

    Using latest Revision.

  6. Hey guys, I solved this.

     

    Here's what you have to do.  In Flux, open /data/paypal/button.php

    You will see this line.

     

    <input type="hidden" name="notify_url" value="<?php echo $this->url('donate', 'notify', array('_host' => true)) ?>" />
    

    Replace it with the actual URL of your site like so

    <input type="hidden" name="notify_url" value="http://www.YOURSITE.com/?module=donate&action=notify" />
    

     

  7. I am using the most up to date revision of rAthena.

     

    When I use @ii in game, it states that every single item is not dropped by mobs, even ones that are.

     

    Example - Use @mi chonchon, you can see it drops a fly wing.  Use @ii fly wing, and the server states nothing drops it.  But @whodrops also works.

  8. If you're using tortoiseSVN for eathena, first create a patch file that contains all of your custom changes.

     

    Then, download rathena.  Open the patch and you have to manually reapply all of the changes.  There is no eathena -> rathena conversion that I know of.  It has to be done manually.

  9. I found this code for a simple server status window online, but I can't get it to work.  I'm not very familiar with PHP, could someone take a look at it?

     

    It doesn't display correctly, even after putting in my server IP.  It starts displaying all the code after "Group->Server->attributes()->loginServer ? "ONLINE" :" as text.

     

     <?php $status= simplexml_load_string(file_get_contents("http://SERVERIPHERE/?module=server&action=status-xml"));
    echo "Login Server: " . ($status->Group->Server->attributes()->loginServer ? "ONLINE" : "Offline"); echo "<br>";
    echo "Char Server: " . ($status->Group->Server->attributes()->charServer ? "ONLINE" : "Offline"); echo "<br>";
    echo "Map Server: " . ($status->Group->Server->attributes()->mapServer ? "ONLINE" : "Offline"); echo "<br>";
    echo "Players Online: " . $status->Group->Server->attributes()->playersOnline;
    ?>
    

     

  10. So, quick question.


    Say I have an instance map, with 5 mobs, all with the same OnMobDead: label.

     

    I want to have a variable that keeps count of the dead mobs, something like this:

     

    OnMobDead:

    set mobdead,mobdead+1;

    if (mobdead > 4) {

    etc etc...

     

    But I was just wondering what the proper type of variable is to use for this, since it's an instance?  Would it just be an NPC variable, like .@mobdead?

  11. Why not make the item just have a 'callfunc' in the script, and in the actual function, do it this way.

     

    Have a player variable like @endow.  Have a Case for it in the script, and then do like this.

    switch(@endow) {
    Case 1:
    specialeffect2 583;
    sc_start SC_FIREWEAPON,300000,1;
    set @endow, @endow+1;
    end;
    Case 2:
    specialeffect2 257; 
    sc_start SC_WINDWEAPON,300000,1;
    set @endow, @endow+1;
    end;
    
×
×
  • Create New...