Jump to content

Boom

Members
  • Posts

    182
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Boom

  1. The question you should ask yourself is: does this even make sense?

    ...

    You should log commands to see if a player was kicked unjustifiably and remove the GM from your team if it happens too often :)

     

    Yeah, just check the command logs or just disable the command on their group id. Different GM groups should have different restrictions depending on how you trust them. Trial Game Masters shouldn't have @recall and @kick commands, since those commands are for Enforcements GMs/Managers.

     

    He asked though. I hope my suggestion helps in any way. /ok

  2. You can use bindatcmd script command to every command you want to be disabled (e.g. @warp, @recall) and have these two script command checks within it:

    • agitcheck(), checks if the server is on WoE mode.
    • getgroupid(), checks the group id of the GM that will not be able to use the command (example. getgroupid() <= 60)

    If those two will conditions are met, the binded command will return false or will not initiate.

    • First, delete the cached morroc map on the re\mapcache.dat using WeeMapCache.exe.

    • Save the new mapcache (deleted morocc).

    Run the mapcache.exe (on the main folder of rAthena)

    • Make sure that the grf-files.txt on rAthena\conf\ have the right patch directory to where the grf in which the new morocc map files is inside.

    Include the grf you used in caching the new morroc map on DATA.INI (on top of the grf which has the old morocc map you might be overriding) inside your RO Client Folder.

    Yey! /no1 

  3. Is there any built in script source that can tell the current HP of a player although it's not invoked by the player through an NPC?

     

    For example, Player 1 talks to an NPC and can check the HP of any Player 2 that is online. He/she can also check whether the status of the player if he/she is alive or dead.

  4. just make it as a npc sprite ... 

     

    Thank you! It worked. Added the added the necessary duplication and addition to on the jobname.lua, npcidentity.lua, and sprite/npc/ folder... must duplicate the necessary spr and act too. (Tested Poring because it already is on my current grf. I'll add Bomb Poring later)

     

    Sorry... I think I posted on the wrong section because I taught it's somehow source related..

     

    screenr_Athena037.jpg

    • Upvote 1
  5. Hi. I'm using the same client... but how can I change the large font to be more smaller... some clients have the small font but I have the large one.

     

    Untitled.png



    You can diff you exe using the patch

    Use Arial on All Langtype

    or

    Use Custom Font

     

    Unchecking the "Use Arial on all Langtype" worked.

  6. Hi... I know it sounds crazy that I'm using an old revision of rAthena... I think it's 16924.

     

    Well the server is experiencing a map server crash when a player uses an area skill of a Homonculus S.. One is the Volcanic Ash skill of Dieter, another is the Lava Slide... I'm trying to locate the revision where it fixes the crash in Trac, unfortunately I can't seem to find it.

     

    Maybe someone can remember where it is or on what file should I be looking for comparison with the latest revision related to Homonculus Skills. Really appreciate the help. Thank you!.



    Solved already. Thank you.

  7. How can we be able to see the Map crash debug information?

     

    I tried changing the compile method on Visual Studio 2010 to Debug, but when the Map Server Crashes, The only thing that appears is the [Error] message that the Server received crash signal...

     

    It'll be really helpful in debugging errors. I searched and googled but nothing came up informational. Please help. Thank you.

     

    Something like this:

    http://rathena.org/board/tracker/issue-6561-unknown-map-server-crash/

  8. Try to download your server files and test whether your really have the same settings on your offline ones. That way, you'll see whether your client will work on the downloaded sources/npc scripts.

     

    But usually, the client error is related maybe on the GRFs and data files.

  9. Hi Euphy! Thanks, I sure will continue on sharing scripts that I'll make. The comment you gave made the script more short. I don't usually dig in more to arrays because I usually mess it up. XD

     

    Also, not sure why you have @HGLists as a character array when everything else is scope.

     

    I didn't quite get this? Hmm.. Did i made a wrong type of array?

     

     

  10. Hi! Just want to share something for the community! I've been helped a lot by others and by know, I am able to make my own scripts.

     

    This is an Upgrading Challenge script, which is based on the Philippine ROs official event.

     

    Basically, you need to upgrade a specific headgear and you can exchange it for a reward depending on the rate of refinement.

    I've added an optional headgear reward in arrayed form which can be disabled if commented out.

     

    Default headgear needed to be upgraded is the Ph.D Hat.

     

    Changelogs

    //= 1.0    Initial Script [boom]
    //= 1.1 Used functions instead of labels
    //= 1.2 Item rewarding and deletion of catalyst have been grouped (Player abuse)
    //= 2.0 Used arrays for better item ID passing.
    //= 2.1 Update NPC Name
    //= 2.2 Deleted the Labels, used arrays instead [Euphy]

     

     

    Please comment if there are bugs of any kind and if there are other suggestions, so I can update the script. Don't forget to say thanks! XD /ok

    event_uchallenge.txt

    • Upvote 1
  11. Hi! Just want to ask for some help why this warnings shows up.

     

    I'm currently updating my rAthena SVN to enable Kagerou and Oborou, as well as the skills (I'm coming from a non-updated SVN of rAthena). My problem is, the skills can be used but the skill itself isn't working. It can be casted but nothing happens afterwards and this warnings shows up on the map exe cmd.

     

    Capture.jpg

  12. Might wanna try this?

     

     

        set .allowgmlvl, 40; //REQUIRED GM
        .....
        .....
        getmapxy (.@map$, .@x, .@y, 0); 
        if(.@map$ == "turbo_n_1")
        {
          if(getgmlevel() < .allowgmlvl) goto STORAGEFAILED;
          else {
          //OPEN STORAGE
          }
          .....
          .....
     
          STORAGEFAILED:
     
       }


    Might wanna try this?

     

     

        set .allowgmlvl, 40; //REQUIRED GM
        .....
        .....
        getmapxy (.@map$, .@x, .@y, 0); 
        if(.@map$ == "turbo_n_1")
        {
          if(getgmlevel() < .allowgmlvl) goto STORAGEFAILED;
          else {
          //OPEN STORAGE
          }
          .....
          .....
     
          STORAGEFAILED:
     
       }

     

    Here's the script... I think it's working

     

    -    script    no_command    -1,{
    OnInit:
            bindatcmd "storage",strnpcinfo(3)+"::OnStore";
        end;
     
    OnStore:
       set .allowgmlvl, 40; //REQUIRED GM
       getmapxy (.@map$, .@x, .@y, 0); 
        if(.@map$ == "turbo_n_1")
        {
          if(getgmlevel() < .allowgmlvl) dispbottom "You can't use @storage in this map.";
          else openstorage;
        }
        else if (.@map$ != "turbo_n_1") openstorage;
     
    }
    
  13. Googling the topics and questions you are looking for will solve your problems. All of the things you said have been answered already and can be searched either in rAthena or eAthena's forums.

     

    Now, once you find those topics... ask the specific part that isn't working. Because asking a whole lot in this thread will really blow our heads up dizzy.

     

     

    im using mysql-essential-5.0.88-win32 and mysql-gui-tools-5.0-r17-win32 works perfectly with eAthena..

    but wont work with rAthena..

     

    They work with rAthena, I'm using them. Using the MySQL Workbench might be pretty easy once you have gone through those two sql programs.   Just like Adobe Photoshop upgrading to new CS versions, When you are new into this thing... you might find it a bit complicated. 

     

    i mean, how can i get my sprite and act file to GRF? can you teach me step by step? thx..

     

    Check this one: http://www.progamercity.net/ragnarok-online/6823-guide-grf-editing-basics.html

     

    i mean, how can i get my sprite and act file to GRF? can you teach me step by step? thx..

     

    Might wanna lookout for a tutorial on YouTube.  /no1  /no1

     

    its no use.. i follow everything in each guides but still not working.. sorry..

     

    Some guides might be too complex to understand, or might not work... Try and try until you find the right one.

  14. I want to send an item with zero weight for the storage of all registered accounts at once that the id is 32002

    paopao, that example you posted is an npc or command to execute in phpAdmin?

     

    Yes, the script I posted is the query which you can directly input on phpMyAdmin. That script can be modified with little changes (just for syntax) if it's going to be placed on an NPC script with the query_sql(); function.

     

    For the zero weight of the item, it should be edited on the item_db.txt/item_db2.txt files.  /no1

     

    ID,DBName,ScreenName,Type,Price,Sell,Weight,ATK,DEF,Range,Slot,Job,Upper,Gender,Loc,wLV,eLV,

    Refineable,View,{Script},{OnEquip_Script},{OnUnequip_Script}

  15. @paopao: Actually it depends on how you diff your client, because you are free to choose between using LUA/LUB. You can try to rediff your client using LUB, then rename your LUA files into LUB extension, it works well on my client :)  

     

    Thank you nana! I managed to get some files that have been translated already for the NPCs as well as those in the Mini-Map Icons.

     

    screenr_Athena000.jpg

     

    I would just like to ask if this quests have been translated yet or still not? The menus have been translated mostly... but the quest infos aren't. Did someone translated these already?

     

    screenr_Athena002.jpg

    How about this? alt + v> booking> help/tip

    attachicon.gifscreenEternity014.jpg

    hi, i found it,

    is in lua files/seekparty, but i don't know why the client don't read it

     

    i think these files are the reason why the party booking sistem dont work :/

     

    maybe something was lost...

     

    I have those gibberish text on Party Booking... Does the party booking system work? Because I typed in and tried to make a party book and it won't budge.. I'm using 2012-04-10

  16. i dont have any experience in updating svn, so if you dont need to download anything like downloading the latest svn and replacing it ?

     

    so im just gonna do this? Since im my server is hosted at asurahosting:

    Linux: 

    - stop your servers

    cd into your rathena folder

    svn update

    - recompile

    - restart servers

     

    The conf files might be affected too, I mean the ports, dbs and such.  /no1

     

    Might wanna read this: http://rathena.org/board/tracker/issue-2656-guild-emblems-not-showing-up/

×
×
  • Create New...