• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

OTClient HELP! Problem with 255+ effects in OTC

kingolaf

New Member
Joined
Oct 3, 2023
Messages
14
Reaction score
0
Hi guys!! I'm trying to remove the limit of magic effects, already enabled in server side (all unit8t to unit16), using OTCLIENT REDEMPTION, i can use 255+ effects, but in OTCV8 i cant, i tried enable in game features "g_game.enableFeature(GameMagicEffectU16)" but my all client bug, level and skills are negative like -1... so, what the problem with otcv8 side?
 
already enabled in server side (all unit8t to unit16)
What server? What protocol version?

Codes that handle GameMagicEffectU16 feature in OTCv8 and OTCR are the same.

1. Maybe you did not enable it in right place? modules/game_features/features.lua in OTCv8
2. Maybe you use login string in init.lua that overwrites features? ex .LocalTestServ = "127.0.0.1:7171:1098:110:30:93" which enables features 110, 30 and 93.
3. Maybe you installed on server side code, that overwrites features enabled in client, when it connects to OTS? ex. sendFeatures for OTCv8:
 
somewhere from server side you must be missing, make sure all func's that send magiceffect return uint16_t instead of uint8_t
 
What server? What protocol version?

Codes that handle GameMagicEffectU16 feature in OTCv8 and OTCR are the same.

1. Maybe you did not enable it in right place? modules/game_features/features.lua in OTCv8
2. Maybe you use login string in init.lua that overwrites features? ex .LocalTestServ = "127.0.0.1:7171:1098:110:30:93" which enables features 110, 30 and 93.
3. Maybe you installed on server side code, that overwrites features enabled in client, when it connects to OTS? ex. sendFeatures for OTCv8:

Canary last version, i think server side are 100% ok, because im using effects "500" with OTCR.

in features.lua
1747764928871.webp

my login just a local host..."127.0.0.1:7171:1100"
Post automatically merged:

somewhere from server side you must be missing, make sure all func's that send magiceffect return uint16_t instead of uint8_t
I reviewed server side because i have expanded max view distance yesterday, i really dont know why OTCV8 side doesn't work, OTCR works normal >_>
 
Last edited:
Back
Top