About lower/upper cases.

Helena

New member
Messages
238
Points
0
Emulator
rAthena
Is someone else experiencing this?

Sometimes the map server gives an error message that I put a case or a wrong place or that a case shouldn't be used in that situation. When I fix it and reload the scripts, it either says the exact opposite (that a case should be used), or it brings up another script with misplaced cases that was not mentioned earlier.

Is there a way to ignore forced upper or lower cases? Whether or not I add/remove a case, the scripts generally continue working just fine, but I'd like getting rid of unnecessary map server errors.
default_tongue.png


Thank you!

 
Highly unrecommended to  remove those warnings.

As in future, those case-sentitive checks may not be optional, and completely break your script.

src/map/script.h

#define ENABLE_CASE_CHECK
 
you can comment it.

 
Highly unrecommended to  remove those warnings.

As in future, those case-sentitive checks may not be optional, and completely break your script.

src/map/script.h

#define ENABLE_CASE_CHECK
 
you can comment it.
Ah okay, thanks for clarifying Dastgir!

 
Back
Top