Jump to content

Search the Community

Showing results for tags 'Others'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Bulletin Centre
    • Community News
    • Repository News
    • Ragnarok News
  • Hercules Development Centre
    • Development Discussion
    • Suggestions
    • Development Centre Archives
  • Support & Releases
    • General Server Support
    • Database
    • Scripting
    • Source
    • Plugin
    • Client-Side
    • Graphic Enhancements
    • Other Support & Releases
  • Hercules Community
    • General Discussion
    • Projects
    • Employment
    • Server Advertisement
    • Arts & Writings
    • Off Topic
  • 3CeAM Centre
    • News and Development
    • Community
  • International Communities
    • Filipino Community
    • Portuguese Community
    • Spanish Community
    • Other Communities

Categories

  • Client Resources
  • Graphic Resources
    • Sprites & Palettes
    • Maps & Textures
    • Other Graphics
  • Server Resources
    • Server Managers / Editors Releases
    • Script Releases
    • Source Modifications
    • Plugins
    • Pre-Compiled Server
  • Web Resources

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Discord


Skype


IRC Nickname


Website URL


Location:


Interests


Github

Found 5 results

  1. IT IS BROKEN AND NOT COMPATIBLE WITH LATEST HERCULES AS OF (29/05/2016) ANY DEV IS FREE TO POST THE UPDATED CODE By Ryuuzaki NOTE, do backups of your src folder AND your login mysql database. 1. Download the file I attached. 2. Place mac_check.patch into your hercules folder and apply the patch via GIT (or add it manually if you got problem with GIT). 3. Recompile the server, do NOT start the server yet! 4. Open your mysql tool (or phpMyAdmin) and select your ragnarok (server) database. 5. Copy the below text into the query window ALTER TABLE `login` ADD COLUMN `last_mac` VARCHAR(18) NOT NULL DEFAULT '' AFTER `pincode_change` ; 6. Click run / apply to add the new last_mac to your login database. You are set serverwise!! What do you need to send the mac? 1. Your client must have the "Use SSO login packet" diff enabled. 2. You need to use a launcher to run your client, like ROCred. 3. That's all. 4. Enjoy! last_mac.patch [mirrorĀ¹] [mirrorĀ²]
  2. Hercules Harmony Patch - 30 MAI Made Possible Thanks to Ind Xgear Haruna This is a Diff Patch for the Latest Hercules Version ( Cloned for arround 30 Mins) , All Harmony Functions are working , and no server crashe etc. I Only Provide a Diff file for the Harmon Version 3.3.12 . This Diff only Contains the Harmony SRC Part . you will have to add your own .BIN files from your harmony Package. I WILL NOT PROVIDE ANY .BIN OR CLIENTSIDE FILES !!!!!!!! Harmony_Full_3.3.12_V5.patch the diff got tested on Linux / Mac and WIN7/WIN8 with VS 2010 , no patch error or compiling error.
  3. Good night! I apologize if you're posting in the wrong session, and if the translation is not good. I am Brazilian. I share with you my modification in source. In my hercules emulator upgraded in its latest version, GMs can drop items regardless of the option in can_trade groups.conf. solution: src/map/battle.c Find { "client_accept_chatdori", &battle_config.client_accept_chatdori, 0, 0, INT_MAX, }, Paste before //MODIFICATIONS { "gm_cant_drop_min", &battle_config.gm_cant_drop_min, 10, 0, 99, }, { "gm_cant_drop_max", &battle_config.gm_cant_drop_max, 98, 0, 99, }, src/map/battle.h Find int gm_ignore_warpable_area; int client_accept_chatdori; // [Ai4rei/Mirei] Paste before //MODIFICATIONS int gm_cant_drop_min; int gm_cant_drop_max; src/map/pc.c Find if( !pc->can_give_items(sd) ) //check if this GM level can drop items return 0; Paste before //MODIFICATIONS if ( battle_config.gm_cant_drop_min != 0 && battle_config.gm_cant_drop_max != 0) { if ( pc_get_group_level(sd) >= battle_config.gm_cant_drop_min && pc_get_group_level(sd) <= battle_config.gm_cant_drop_max ){ // your group you want to disable clif->message(sd->fd, msg_txt(246)); return 0; }} insert into Battle_conf.txt gm_cant_drop_min: 10 //This level until the low, GMs cant drop items. gm_cant_drop_max: 98
  4. File Name: item drop delay patch File Submitter: bgamez23 File Submitted: 20 Apr 2013 File Category: Source Modifications item drop delay for hercules Click here to download this file
×
×
  • Create New...

Important Information

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