Jump to content

buchachi11

Members
  • Content Count

    5
  • Joined

  • Last visited

Posts posted by buchachi11


  1. is there anyway you can help me with this error

     

    image.thumb.png.e8b7705acf759419e762132524110a15.png

    i already followed all the instruction including changing the s1/p1 and ip's.

     

     

    NVM i fixed it easily just by restarting it.

     

    the next issue is that. When i login it freezes my client.

    is it because im using this files than the files above which is this git clone https://github.com/HerculesWS/Hercules.git  ~/Hercules ?? and also what client should i use for this git clone.?

     


  2. On 11/29/2020 at 8:09 AM, Huitzilopotchli said:

    Finaly find it, it come from this:
    In status.c, status_calc_regen, minimum value is 1, means all job whatever if they have skill or sitting regen bonus, will display this "1" heal regen

    if (regen->skill != NULL) { regen->skill->hp = cap_value(regen->skill->hp, 1, INT16_MAX); regen->skill->sp = cap_value(regen->skill->sp, 1, INT16_MAX); } if (regen->sitting != NULL) { regen->sitting->hp = cap_value(regen->sitting->hp, 1, INT16_MAX); regen->sitting->sp = cap_value(regen->sitting->sp, 1, INT16_MAX); }

    
    	if (regen->skill != NULL) {
    		regen->skill->hp = cap_value(regen->skill->hp, 1, INT16_MAX);
    		regen->skill->sp = cap_value(regen->skill->sp, 1, INT16_MAX);
    	}
    
    	if (regen->sitting != NULL) {
    		regen->sitting->hp = cap_value(regen->sitting->hp, 1, INT16_MAX);
    		regen->sitting->sp = cap_value(regen->sitting->sp, 1, INT16_MAX);
    	}

    We've change for this and it's work fine

    if (regen->skill != NULL) { regen->skill->hp = cap_value(regen->skill->hp, 0, INT16_MAX); regen->skill->sp = cap_value(regen->skill->sp, 0, INT16_MAX); } if (regen->sitting != NULL) { regen->sitting->hp = cap_value(regen->sitting->hp, 0, INT16_MAX); regen->sitting->sp = cap_value(regen->sitting->sp, 0, INT16_MAX); }

    
    	if (regen->skill != NULL) {
    		regen->skill->hp = cap_value(regen->skill->hp, 0, INT16_MAX);
    		regen->skill->sp = cap_value(regen->skill->sp, 0, INT16_MAX);
    	}
    
    	if (regen->sitting != NULL) {
    		regen->sitting->hp = cap_value(regen->sitting->hp, 0, INT16_MAX);
    		regen->sitting->sp = cap_value(regen->sitting->sp, 0, INT16_MAX);
    	}

     

    Hello can you tell me which folder this is? like the pathway so i can edit it. Because i am having the same effect. Im just testing out the server I made using Hercules tutorial :) i love it. Its just me though. Don't have plans yet in making it online.

×
×
  • Create New...

Important Information

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