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

[GESIOR ACC] Report-BUG System (Advanced)

Was this script usefull?

  • Yes

    Votes: 24 88.9%
  • No

    Votes: 3 11.1%

  • Total voters
    27
Hey i got problem with this script. if the player makes 2 and more report i can show on my website only first report. In my database i can show all. If i deleted one report from the same player in database - on website the other is jumping like this:
35994
35995

Edit:
PHP:
foreach($SQL->query('SELECT id, name, posx, posy, posz, report_description, date FROM player_reports GROUP BY name ORDER BY id DESC limit 20;') as $report)

change to:
PHP:
foreach($SQL->query('SELECT id, name, posx, posy, posz, report_description, date FROM player_reports GROUP BY id ORDER BY id DESC limit 20;') as $report)
 
Last edited:
Back
Top