Hey znote can you help us with this? To be dynamic and not manual?You change raceid here:
![]()
ZnoteAAC/login.php at 91816bbe2bcf890f48762caf851abd973075f7c7 · Znote/ZnoteAAC
Developement repository for the Znote AAC project. A website portal to represent and manage your Open Tibia server. - Znote/ZnoteAACgithub.com
Does your server store raceid somewhere in the database? I can probably help out with the code change to make this dynamic.
did you ever find this out!? same issue no fix iv found :/!View attachment 58827
Yes, is stored in boosted_creature table
case 'boostedcreature':
sendMessage(array(
//'boostedcreature' => false,
'raceid' => 219
));
break;
case 'boostedcreature':
$boost = mysql_select_single("SELECT `raceid` FROM `boosted_creature` LIMIT 1;");
if ($boost !== false) {
sendMessage(array(
'boostedcreature' => true,
'raceid' => (int)$boost['raceid']
));
}
sendMessage(array(
'boostedcreature' => false,
'raceid' => 0
));
break;
$boost = mysql_select_single("SELECT `raceid` FROM `boosted_creature` ORDER BY `id` DESC LIMIT 1;");
boosted_creature and the problem is on the server side, not AAC.