• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

[Quest system] GESIOR AAC [Some Problems]

ugurdrahs

New Member
Joined
May 6, 2010
Messages
555
Reaction score
2
Location
Netherland
Hello,

my qeust system on gesior aac works well the green icon and red icon works OK,
But actually I want this, for finished quest and unfinished. But how do I make it like this (check picture)





repp+
 
Last edited:
Search in characters.php for this:
if($quest == false) {
$main_content .= '<TD><img src="images/false.png"/></TD></TR>';
}
else
{
$main_content .= '<TD><img src="images/true.png"/></TD></TR>';

and change like this:

if($quest == false) {
$main_content .= '<TD><font color="red">unfinished</font></TD></TR>';
}
else
{
$main_content .= '<TD><b><font color="green">finished</font></b></TD></TR>';
 
Back
Top