• 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!

C++ wings and aura and shader

T

Tibia Demon

Guest
i added wings and aura and shader like this
but i get this warn
Code:
'shader': unreferenced formal parameter
'aura': unreferenced formal parameter
'wings': unreferenced formal parameter
should i remove the names?
C++:
void Game::playerToggleOutfitExtension(uint32_t playerId, int mount, int wings, int aura, int shader)
to
C++:
void Game::playerToggleOutfitExtension(uint32_t playerId, int mount, int, int, int)
from game.cpp and game.h too?
 
Last edited by a moderator:
Yes, do remove the names, if you're not using the names, for what declare them?, try that and see what happens.
thank you i will try remove them and see what happen. i find it declared like this in wings and aura and shader of otclientv8 idk why
 
Last edited by a moderator:
Back
Top