Jump to content
  • 0

Perfect Flee does not Update


timo0o

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  29
  • Reputation:   1
  • Joined:  07/19/13
  • Last Seen:  

Hello everyone,

 

i would like to change the perfect flee status on my Testserver.

 

I've editied the status.c and changed

status->flee2 += status->luk + 10; //(every 10 luk = +1 perfect flee)

 

 

to
 
status->flee2 += status->luk + 50; //(every 10 luk = +1 perfect flee)

 

 

After recompiling with Visual C++ Express 2010 I stil get 1 Perfect Flee every 10 Luk instead of 1 Perfect Flee every 50 Luk???

The recompiling finished without any Errors!!

 

Whats wrong here? Or did i forget something???

 

rAthena Verion is R17324

 

 

 

Thank you :-)

 

 

Timo0o



Fixed it:

 

Edited this instead the 50 in status.c

         //return cap_value(flee2,10,SHRT_MAX);
        return cap_value(flee2,10,650);  //Perfect Flee Maximum is 65
 
//return (short)cap_value(flee2,10,SHRT_MAX);
 return (short)cap_value(flee2,10,650); //Perfect Flee Maximum is 65
Edited by timo0o
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...