Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/24/13 in all areas

  1. Xantara's FluxCP Everyone knows of FluxCP. However, with the creation of rAthena, there became a need to support renewal changes and other features such as the new group system. This is where my Control Panel comes in. Xantara's FluxCP is a free and open source control panel to work with rAthena. Forked from FluxCP by Paradox924X and Byteflux at r1121. I will continually merge updates from the original FluxCP. Demo: http://web.artistic-coder.com/fluxcp-rA Note: this site is used to test new functionality and custom addons so it may not always be functioning properly Features The original/base FluxCP already comes with a lot of features. Here I will only highlight those that came after the fork. For a full list, click here. Updated Ragnarok Data Full Birthdate Functionality Working GM Group System Mob Skills SQLized Zeny Log Page Specific Item Drop Rates Toggle for Pre-Renewal or Renewal SQL Data Alchemist Ranking Blacksmith Ranking Paginated Item Shop Character/job images (static) WIP Account management system (link one or more in-game accounts to one CP account) Queued Accepted Suggestions (have suggestions? post them here!) Search in logs page Pin code functionality Character sprites with palettes (would replace static images) Requirements Apache webserver with PHP 5.2 or greater PDO extension with MySQL support (http://www.php.net/pdo) PHP GD2 for security images (Optional) Enabled Zip extension for exporting guild emblems (Optional) Apache/mod_rewrite for using the "Clean URLs" feature Download There are three ways to get a copy of this Control Panel. For detailed installation instructions, click here (TBD). 1. GIT Clone git clone https://github.com/missxantara/fluxcp-ra.git * For Windows, you can take a look at using TortoiseGit with its friendly user interface. 2. SVN Checkout svn checkout https://github.com/missxantara/fluxcp-ra/trunk/ * For Windows, you can take a look at using TortoiseSVN with its friendly user interface. 3. ZIP Download https://github.com/missxantara/fluxcp-ra/archive/master.zip Extra Downloads Extract to the root folder of your FluxCP system Job Image Files: http://missxantara.github.io/fluxcp-ra/downloads/FluxCP_Jobs_Images_2012-04-28.zip Updated details: April 28, 2013 Credits: Xantara Monster Image Files: http://missxantara.github.io/fluxcp-ra/downloads/FluxCP_Monsters_Eclage_14.2.zip Updated details: Mob ID #2380 of Eclage (Episode 14.2) Credits: Brynner Item Icon Files: http://missxantara.github.io/fluxcp-ra/downloads/FluxCP_Item_Icons_2012-04-08.zip Updated details: April 8, 2013 Credits: Latheesan's Extractor Item Image Files: http://missxantara.github.io/fluxcp-ra/downloads/FluxCP_Item_Images_2012-04-08.zip Updated details: April 8, 2013 Credits: Latheesan's Extractor Quick Links Wiki: https://github.com/missxantara/fluxcp-ra/wiki Bug/Suggestion Reports: https://github.com/missxantara/fluxcp-rA/issues GitPage: http://missxantara.github.io/fluxcp-ra Misc. Feel free to post any suggestions here. If suitable, they may be polled by general users before being decided to be implemented or not. If you have a feature already coded that you would like to share, please do send a GIT pull request or send me an SVN diff of the work - I'd love to take a look at it! Please note that working on this open-source project will furthermore serve as a learning opportunity for me. If you find that I've implemented something that could be improved, I urge you to let me know - your knowledge on this subject would be greatly appreciated! Like my work? Rep up the topic first post
    4 points
  2. File Name: @autopots File Submitter: goddameit File Submitted: 18 Feb 2013 File Category: Source Modifications Content Author: Goddameit Preview : http://bit.ly/XzIQJj When HP/SP lower than you set, it will auto use that item. Command : PS : Test and create on rA 17132 Click here to download this file
    1 point
  3. File Name: Scribbling Kid 3 File Submitter: Kurca File Submitted: 12 Feb 2013 File Category: Skins Content Author: Kurca Hello everyone! I'm glad to introduce you to Scribbling Kid 3 [or Scribbling Kid Renewal if you want]! When I was start playing Ragnarok Online, this skin was thing I used pretty much everytime [it's been about 7 years since I started]. And from time renewal is out, skin structure is always changing. This is basically reedited my pre-renewal version. Hope you'll like it Click here to download this file
    1 point
  4. If any part of the copied map falls in the void (empty space) of the new map it's being paste on, you'll get an immediate crash EVERY time. To avoid this, you need to make sure that the new map your pasting the map on is large enough where nothing falls in this outside purple area. If you can't find a map large enough to sustain this, simply divide your map into separate quadrants and copy/paste one quadrant at a time. If you've tried this and still have issues, contact me via PM and I can try and fix the issue for you personally (transfer the map to me).
    1 point
  5. 1 point
  6. What's your passion, your drive? What do you see yourself doing for the rest of your life? Based on whatever this is, follow it and stay on track with it. Money is one thing, but having to do the same thing for the rest of your life being miserable with your line of work just isn't worth it. Also, location is pretty important. Depending on where you live, it'll limit your choices of what universities you can attend (unless you don't mind being on residence).
    1 point
  7. Script: 14.1 Bifrost Ver: ¿¿?? Idioma: Castellano (Spanish "Spain") Scripter: Ziu NOTA: Este script lo cree jugando al servidor sakray en el año 2010 (los textos estan traducidos a partir de los textos oficiales coreanos) (en esa epoca aun no controlaba bien las traducciones pero están bastante bastante bien...). Puede contener diferencias con respecto al bifrost de iRO en posiciones o algunos textos. No se incluye el encantamiento de los equipos debido a que desconocia el % de exito y el metodo al 100% de como se realizaba y no me gusta hacer las cosas a lo custom total...por lo demas se completa perfectamente con el script de la instance Download
    1 point
  8. I'm not saying you did...I'm saying that's how much I might pay for it, lol.
    1 point
  9. ¡¡Para eso estamos!!... ya podrían ascenderme de user a community contributors pero bueno.....
    1 point
  10. With this modification you will be able to stop the HP and SP bonus at the level you want. It is a simple and quick edit. For the HP bonus open src/map/status.c and find this: static unsigned int status_base_pc_maxhp(struct map_session_data* sd, struct status_data* status) { unsigned int val = pc_class2idx(sd->status.class_); val = 35 + sd->status.base_level*hp_coefficient2[val]/100 + hp_sigma_val[val][sd->status.base_level]; And now change this code to: static unsigned int status_base_pc_maxhp(struct map_session_data* sd, struct status_data* status) { unsigned int val = pc_class2idx(sd->status.class_); if (sd->status.base_level<99){ val = 35 + sd->status.base_level*hp_coefficient2[val]/100 + hp_sigma_val[val][sd->status.base_level]; }else{ val = 35 + 99*hp_coefficient2[val]/100 + hp_sigma_val[val][99]; } In this example I stopped the bonus at level 99, so if you want to change it to the level you want just change the 99 values for the level you want. For the SP bonus you must find this in the same file: static unsigned int status_base_pc_maxsp(struct map_session_data* sd, struct status_data *status) { unsigned int val; val = 10 + sd->status.base_level*sp_coefficient[pc_class2idx(sd->status.class_)]/100; val += val * status->int_/100; And now change this code to: static unsigned int status_base_pc_maxsp(struct map_session_data* sd, struct status_data *status) { unsigned int val; if (sd->status.base_level<99){ val = 10 + sd->status.base_level*sp_coefficient[pc_class2idx(sd->status.class_)]/100; }else{ val = 10 + 99*sp_coefficient[pc_class2idx(sd->status.class_)]/100; } val += val * status->int_/100; I used level 99 as an example, so if you want to change the level just change the 99 values to whatever you want.
    1 point
×
×
  • Create New...