Jump to content

Shakalu

Members
  • Content Count

    1
  • Joined

  • Last visited

  1. Hello, I am also very interested to have a Revo-Classic offline server for my guild. I have built an offline Renewal server (Hercules) with Pre-Renewal mob DB. It seems to be pretty much coherent for now... Mobs stats, char stats, real damage, MATK formula, stuff like Snake Head are Ok. The main issue is the ASPD formula, anyone has a solution for that pls ? Do you know where can i find the Classic mob location DB too ? The only idea i have is to create a "@aspd" GM command to define manually ASPD value (from this http://wikiro.net/calc/). Thanks for your help. EDIT: I have trouble to fix ASPD from my first plugin wich create a new GM command : @aspd. It's possible ? //===== Hercules Plugin ====================================== //= @aspd //===== By: ================================================== //= Shakalu //===== Current Version: ===================================== //= 1.0 //===== Description: ========================================= //= Define ASPD //===== Changelog: =========================================== //= v1.0 - Initial version //===== Additional Comments: ================================= #include "common/hercules.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include "common/HPMi.h" #include "common/memmgr.h" #include "common/mmo.h" #include "common/socket.h" #include "common/strlib.h" #include "common/timer.h" #include "common/mapindex.h" #include "common/utils.h" #include "map/battle.h" #include "map/channel.h" #include "map/clif.h" #include "map/map.h" #include "map/npc.h" #include "map/pc.h" #include "map/script.h" #include "map/skill.h" #include "map/status.h" #include "plugins/HPMHooking.h" #include "common/HPMDataCheck.h" HPExport struct hplugin_info pinfo = { "@aspd", SERVER_TYPE_MAP, "1.0", HPM_VERSION, }; ACMD(aspd) { sd->base_status.aspd_rate = 500; return true; } HPExport void plugin_init(void) { addAtcommand("aspd", aspd); } HPExport void server_online(void) { ShowInfo("'%s' Plugin by Payon. Version '%s'\n", pinfo.name, pinfo.version); } No error, but nothing is happening. Need help pls, thanks in advance. Regards,
×
×
  • Create New...

Important Information

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