Jump to content

Virtue

Members
  • Content Count

    259
  • Joined

  • Last visited

  • Days Won

    1

Reputation Activity

  1. Like
    Virtue got a reaction from charlieccn in [Showcase]Yuno Episode centered Worldmap UI - Classic   
    Showcasing my little project. The Worldmap UI inside the client is a nice feature which is not really used much. I tried looking around for something to let me use it, but unfortunately, there's little to no information about it. After tinkering and figuring out how it works, I've managed something.
     
    Here's a little sneak peak:
     
    Video Preview:

    Screenshots:
     
    The one shared above is centered in Episode 5: Yuno, but I've already got it lined up for the other episodes where the default one is not really matching / usable.
    The average level when show mob is selected is also not included in the preview. This works alongside the navigation feature.
    Some of the colors in the UI were also changed due to my preference, but it's also customizable.
     
    Special thanks to @Vy Low for letting me use his worldmap.jpeg.
  2. Upvote
    Virtue reacted to Ragno in Exp boost on certain maps   
    Maybe using "bexp" and "jexp" mapflags may boost exp rates in certain maps as you want to do.
  3. Like
    Virtue reacted to Functor in OPENKORE BOT Server config   
    You choose the wrong forum to ask it.
  4. Upvote
    Virtue reacted to AnnieRuru in Item Options   
    // Build the Menu. setarray .@costume, EQI_COSTUME_HEAD_TOP, EQI_COSTUME_HEAD_MID, EQI_COSTUME_HEAD_LOW, EQI_COSTUME_GARMENT; .@menu$ = ""; for (.@i = 0; .@i < getarraysize(.@costume); ++.@i) .@menu$ += ((getequipisequiped(.@costume[.@i])) ? getequipname(.@costume[.@i]) : "" + .@costume[.@i] + "-[Not equipped]") + ":"; // Select the part. .@equip_index = .@costume[ select(.@menu$) -1 ];  
  5. Upvote
    Virtue reacted to AnnieRuru in who has AnnieRuru's PVP Ladder with announcement files and SQL queries?   
    found a bug on this script
    [Debug]: script debug : 2000000 110000960 : AnnieRuru is sit-killing EnnyRuru for 6 times [Debug]: script debug : 2000000 110000960 : AnnieRuru is sit-killing EnnyRuru for 7 times [SQL]: DB error - Out of range value for column 'streaks' at row 1 [Debug]: at d:\ragnarok\rathena\src\map\script.cpp:16590 - replace into pvpladder values ( 150000, 'AnnieRuru', -3, 0, 0, from_unixtime(1547405452) ) [Debug]: Source (NPC): DOTAPVP (invisible/not on a map) [SQL]: DB error - Out of range value for column 'streaks' at row 1 [Debug]: at d:\ragnarok\rathena\src\map\script.cpp:16590 - replace into pvpladder values ( 150000, 'AnnieRuru', -2, 1, 0, from_unixtime(1547405460) ) [Debug]: Source (NPC): DOTAPVP (invisible/not on a map) [SQL]: DB error - Out of range value for column 'streaks' at row 1 [Debug]: at d:\ragnarok\rathena\src\map\script.cpp:16590 - replace into pvpladder values ( 150000, 'AnnieRuru', -1, 2, 0, from_unixtime(1547405464) ) [Debug]: Source (NPC): DOTAPVP (invisible/not on a map) should have used signed int for that field
    yeah and this script didn't index the kill or death field either
    maybe should release version 3 someday
  6. Upvote
    Virtue reacted to AnnieRuru in Lotti Girl   
    There are MANY variations of Lotti Girl script, even me too, have made several of them
    so today I try to gather them all, and make a release with ALL features from all the topics gathered
    Download:
    script
     
    Feature no.1 -> show the percentage chance

    chinese government has a rule that all lottery system must show the percentage chance to the public
    hence the script should show the lottery chance in percent
    Feature no.2 -> Roll Repeatedly
    imagine if you have 500 tickets, and you want to spend them all,
    all other scripts available on rathena board will force the player to spend them 1 by 1
    this script can roll up to 100 times on the fly, effectively save player's time
    Feature no.3 -> Lotti shop
    even if you spend a lot of tickets and still getting all the trash items, you still collecting points, and able buy them in Lotti Shop
    Feature no.4 -> Lotti ladder
    compete with other players and see who has the highest Lotti Rank !
     
    oh and ... HULD compatible == rAthena members can't use this
     
  7. Upvote
    Virtue got a reaction from meko in Random Box/Egg Function Script   
    Why not use this: 
    I think this might be easier. have time to check on it
  8. Upvote
    Virtue reacted to bWolfie in Question:Alchemist Creation   
    Yes. The file is db/produce_db.txt. Just search 'AM_PHARMACY' and you will find the area you need.
    However, it is not enough to give ranking points. That would require source editing.
    To make your custom item give ranking points, first open src/map/itemdb.h and add a constant for your custom Item ID.

    enum item_itemid {     ITEMID_MYCUSTOMITEM            = 29001, }
    Then open src/map/skill.c and need to include your constant to not 'continue'.
    Find:
    if (rnd()%10000 < make_per || qty == 1) { //Success tmp_item.amount++; if(nameid < ITEMID_RED_SLIM_POTION || nameid > ITEMID_WHITE_SLIM_POTION) continue; Below it, change so it like this:
    if (rnd()%10000 < make_per || qty == 1) { //Success tmp_item.amount++; if((nameid < ITEMID_RED_SLIM_POTION || nameid > ITEMID_WHITE_SLIM_POTION) && nameid != ITEMID_MYCUSTOMITEM) continue;  
  9. Upvote
    Virtue reacted to Asheraf in kRO unpacked clients releases   
    Discontinued. 
    Clients without themida protection can be downloaded at http://nemo.herc.ws/downloads/
  10. Upvote
    Virtue reacted to Nihad in Account Creation date   
    Doesn't have to be anything complicated. 
    You could use the birthday field is you aren't already using it and just instead of giving players the option to put in their own birthrate, just auto write in today's date. Here is a little guide from rathena.
    https://rathena.org/board/topic/58932-flux-cp-birthdate-field-in-register-page/
    If you are already using it, then you can simply add another row, or create a new table entirely just for storing registration dates.
  11. Upvote
    Virtue reacted to Ridley in [Collection] Official Full Clients + latest kRO   
    Changelog:
    - Updated all Clients
    - Updated twRO BGMS (3 new ones)
    NOTE: to disable the Snow effect in Prontera, open your grf and navigate to data/etcinfo.txt
    Then add (or edit) the following:
    weather# //prontera.rsw# //snow# Collection of official Full Clients. Those are vanilla, not modified in any way or whatever. They are patched up to date. Let me know if I've missed something.
    Server Name
    With BGM
    Without BGM
    BGM only
    South Korea (kRO)
    21. Dec. 2018
    2,70 GB
    Mega
    OneDrive
    2,42 GB
    Mega
    OneDrive
    294 MB
    Mega
    OneDrive
    South Korea (Ragnarok Zero)
    21. Dec. 2018
    2,22 GB
    Mega
    OneDrive
        Taiwan and Hongkong (twRO)
    21. Dec. 2018
    2,24 GB
    Mega
    OneDrive
    1,95 GB
    Mega
    OneDrive
    310 MB
    Mega
    OneDrive
    Japan (jRO)
    21. Dec. 2018
    2,23 GB
    Mega
    OneDrive
    1,93 GB
    Mega
    OneDrive
    311 MB
    Mega
    OneDrive
    Thailland (tRO)
    21. Dec. 2018
    1,67 GB
    Mega
    OneDrive
    1,41 GB
    Mega
    OneDrive
    272 MB
    Mega
    OneDrive
    International (iRO)
    21. Dec. 2018
    2,42 GB
    Mega
    OneDrive
    2,14 GB
    Mega
    OneDrive
    294 MB
    Mega
    OneDrive
    Philippines (pRO)
    21. Dec. 2018
    1,5 GB
    Mega
    OneDrive
    1,25 GB
    Mega
    OneDrive
    272 MB
    Mega
    OneDrive
    Indonesia (idRO)
    21. Dec. 2018
    1,88 GB
    Mega
    OneDrive
    1,61 GB
    Mega
    OneDrive
    282 MB
    Mega
    OneDrive
    Brazil (bRO)
    21. Dec. 2018
    1,95 GB
    Mega
    OneDrive
    1,69 GB
    Mega
    OneDrive
    273 MB
    Mega
    OneDrive
    France, Europe (fRO, euRO) 21. Dec. 2018
    1,85 GB
    Mega
    OneDrive
    1,59 GB
    Mega
    OneDrive
    273 MB
    Mega
    OneDrive
  12. Upvote
    Virtue reacted to Alayne in Alayne's Scripts Collection   
    < Alayne's Script Collection >
    After several asks, here's a link to my github
    Feel free to comment or add anything that might be usefull and that I won't think of
    I've decided to release my scripts here, it'll be easier to me so I can duplicate it on hercules and rathena rather than uploading twice. So sorry for multiple upload between there and download section
    Don't mind the name Nyliar in the git, that's me too ^^
     
    < Instances >
     
    < Quests >
     
    < Event >
     
    < PvP Content >
     
    < Utilities >
     
    < Full Systems >
     
    < Dungeons >
     
    < Raid >
     
    < Battleground >
  13. Upvote
    Virtue reacted to Functor in [SOLVED] ITEMLINK Help on 2015-09-16aRagexe.exe client   
    For 2015-09-16aRagexe you have to use:
    <ITEM> and </ITEM> instead of:
    <ITEMLINK> and </ITEMLINK>  
  14. Upvote
    Virtue reacted to IndieRO in Disable Doram   
    try with disable case job_summoner on src/char/char.c
    switch (starting_class) { //case JOB_SUMMONER: << Give comment case JOB_NOVICE: break; default: return -2; // Char Creation Denied } never test it
  15. Upvote
    Virtue reacted to Mystery in Channel delay   
    I believe this is what you're looking for:
     
    http://herc.ws/board/topic/316-introducing-hercules-channel-system/?p=36309
     
    Adding it to your channel:
    @channel setopt <channelname> MessageDelay <seconds 1 -10>  
    Increasing 10 seconds to maybe 255 seconds. Go to your atcommand.c file:
    https://github.com/HerculesWS/Hercules/blob/master/src/map/atcommand.c#L9125 Change 10 to your desired number.
  16. Upvote
    Virtue reacted to Sephus in Hercules Battlegrounds   
    Hercules Battlegrounds
    A full conversion and enhancement of eAmod's Battlegrounds system into a easy-to-install Hercules plugin library.
    Version: 1.0a (alpha)
     

     
    Repository @ https://github.com/Smokexyz/HerculesBG

    Installation
    1) Place plugin files in plugin directory. (If you wish to re-compile the code, please do so the standard way.)
    2) Place all script files in the default directory provided in the repository (or your own).
    3) Place all database and config parts in their respective files.
    4) in conf/plugins.conf add "hBG".
     
    Instructions on installing Plugins - http://herc.ws/wiki/HPM#Building_a_plugin
     
    Battleground Modes
    Capture the Flag Eye of Storm Triple Inferno Team DeathMatch Bossnia Conquest Stone Control Domination Rush Free For All Why use it?
    1) Prevents conflicts when updating Hercules.
    2) Easy to install.
    3) Can be easily modified for more functions/features in the future.

    For contributors
    If you wish to add a free BG script to the list of available battleground modes, please contact me.
     
    Bug Reporting
    Please feel free to open an issue on the repository and I'll get to it as soon as I can.

    Donate to support the project and motivate updates.


  17. Upvote
    Virtue got a reaction from Angela in [Release] The (data) GRF Project   
    NP. just downloaded then reuploaded them no modifications done i'll update it if ever there's an update
  18. Upvote
    Virtue got a reaction from Wolfeh in Naruto Headbands   
    Great!
  19. Upvote
    Virtue reacted to Wolfeh in Naruto Headbands   
    File Name: Naruto Headbands
    File Submitter: Wolfeh
    File Submitted: 17 Aug 2016
    File Category: Sprites & Palettes
     
    Warning: Without recolors this will add 72 items to your server with recolors is a total of 180 (original release included in number). I have added files to make it less painful to add them but if you would like to modify, just be aware of this.
     
    Headbands inspired by the anime Naruto. There is black and blue recolors as well as nukenin (missing-nin, plate is striked through) and shippudden (with the long band ties instead of short, after Naruto's long headband in Shippuden) versions, for the ultimate customization for any Naruto fan.
     
    I included a text file with all of the stuff to implement these into your server too (such as item_db, idnum2itemresnametable, idnum2itemdisplaynametable, idnum2itemdesctable, accessoryid.lua, accname.lua, and the SQL server stuff/script), so you won't have to kill your fingers.
     
    Enjoy!
    ~Wolfeh
     
    Click here to download this file
  20. Upvote
    Virtue got a reaction from Ridley in [Release] The (data) GRF Project   
    here you go
     
    Option 1 data : https://mega.nz/#!NBAG1CwZ!jdElqRQ8cDSHuyRxnZ0PFRVDMSiPqdTMYT8qUXaukOk
    Option 2 data : https://mega.nz/#!AIxnxahT!Za5zcCam16KH0lgkdTp5oCY5vYxIVwj8LrhN8DxnuqM
  21. Upvote
    Virtue reacted to Ridley in [Release] The (data) GRF Project   
    Offering 2 versions of the grf now. Scroll down for more info. Both data.grf do NOT require rdata.grf.
     
    Option 1: (clean standard kRO GRF)
    Download OneDrive
     The grf is up-to-date 2018-12-22. Its cleaned up, and optimized. A Lot of invalid content is removed or merged. The size is 1,40gb (1.503.844.793 bytes) compared to the original 2.13gb (2.291.252.926)
    Works perfect with all current pre-renewal and/or renewal content (rdata.grf is not needed). You still need the content of the Translation Project in order to use this.
    All cutins in this grf are reduced by 35%
    Note: This is pure kro data.grf and does not contain any jro/iro/whatever files
     

      
    Option 2: GRF with the content of all official servers
    Download Mediafire
    Download OneDrive
    Download Mega
     
    This GRF contains all official files. Its cleaned up, and optimized. A Lot of invalid content is removed or merged. The size is 1,43gb (1.536.478.834 bytes)
    The grf is up-to-date 2016-08-04.
    Please throw a PM on me if this GRF is missing something! I want this to be the most complete one of all
    Small summarize
    more than 200 additional maps more than 700 additional items more than 60 additional NPC's more than 130 additionalmobs more than 900 additional cutins
     
    Instructions:
    1. Download the data.7z
    2. Extract it
    3. Put both (grf + dll) into your RO folder
     
    Changelog: Fixed Rock Ridge Illustrations use wrong Magenta (200, 238, 120 instead of 200, 240, 120) Removed chunk  
    Option 3: Episode 13.2 Pre-Renewal GRF
    This one is 775 MB (812.914.794 Bytes) and great for all kind of pre-re servers.
    Download OneDrive

    All rights and credits belong to Gravity
     
    Note: you can still encrypt your grf with SecureGRF or Tokei's GRF Editor - just use another name than cps.dll for it.
    updated thread 2019-01-13
  22. Upvote
    Virtue reacted to kenik in [Pre-Release] Payment Wall - FluxCP addon   
    This addon allows you to get donations through Payment Wall (https://paymentwall.com/) system.
     
    !!!Attention!!!
    This addon was tested only on Test projects. Contact me, when you will test it with approved projects for better testing and bugfixing (if needed)

    Installation
    Register account at Payment Wall (https://www.paymentwall.com/) Create new project Set project up. Important notes: API => Virtual Currency Pingback Type => Url When you type pingback url - make sure to place '/' at the end of url Pingback signature version => 1 Add 2 custom pingback parameters: module and action. [screenshot](http://i.imgur.com/T4FHoyo.png) Upload 'pwall' folder into your addons folder. Edit 'pwall/config/addon.php' with your settings. Place your Public key Place your Secret key Input width and height for widget Edit donation rate and currency Add link to page your.site.com/?module=pwall wherever you want. Test it!
    Note
    While your project in Test status - you can test it only while you logged in at Payment Wall (https://www.paymentwall.com/).

    Page example



    Bug reports
    Report bugs on GitHub, so they can be fixed ASAP. Or contact me here: kenik
     
    Download
    GitHub: https://github.com/kenik/flux_paymentwall
    GitHub: https://github.com/kenik/FluxCP-Addons/tree/master/pwall
  23. Upvote
    Virtue reacted to vBrenth in Aeva Control Panel   
    Past dead project: LuminaCP  
    Reason: School and relationship! XP
     

    Just another control panel that we've been working on.
     
    Phase 1 - Features:
    Account management system Ranking system Voting system Donation system (paypal/remittance) Content management system Server/woe/player status Ticketing system and more......
     
    Phase 1.1 - Features:
    Admin Panel View/Manage characters Items/Mob db view/search Vending/Buying store view/search Character Creation RSS System  
    Phase 2 - Features:
    Most likely we will adapt some of our features on LuminaCP
    Login as Facebook (auto-register as master account) Status updates Groups (like Facebook) Profile picture Market tabs Messages/connections and mini-games.  
    Demo Link: http://aeva.vbrenth.net/
    Admin user: [email protected] Mod user: [email protected] Player user: [email protected] All passwords are: password  
    Do you think i missed something? If you have any suggestion, pm me.
     
    Oh btw, like Flux we also have /themes so we can apply any design from the default theme.
    Example: http://panel.aeva-ro.com/
  24. Upvote
    Virtue reacted to Takari in CORA™ CMS   
    @@OverLord Thank you, I really appreciate it! However, there's no need since I already have a server. It should be live sometime next week. I'll keep you guys updated
  25. Upvote
    Virtue reacted to Takari in CORA™ CMS   
    I'm very sorry for the inconvenience, I've been really busy irl   
     
    Okay, if this is the case then I'll restart development during the holidays .. And while development is going on I'll put the website and full tutorials back online so you guys can use the old version for the meantime. 
     
    EDIT: I'll post the link to the new website probably next week.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.