Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: Kid_Buu on May 31, 2018, 02:53 PM

Title: Need help in the reportlist and banlist
Post by: Kid_Buu on May 31, 2018, 02:53 PM
Hi, I have the commands /reportlist and /banlist but they have an error.
What happens is only shows a single report or a ban, could someone help me?
Title: Re: Need help in the reportlist and banlist
Post by: Mahmoud Tornado on May 31, 2018, 03:19 PM
Quote from: Kid_Buu on May 31, 2018, 02:53 PMHi, I have the commands /reportlist and /banlist but they have an error.
What happens is only shows a single report or a ban, could someone help me?

May you forget this.
local q = QuerySQL( Ban, "SELECT * FROM BannedPlayers" ), i = 0;  // Change it to your ban database
 while( GetSQLColumnData( q, 0 ) )
 {
  local
   Name = GetSQLColumnData( q, 0 ),
   Reason = GetSQLColumnData( q, 2 );   //Delete it if you don't have reason.
   MessagePlayer("[#00de00]Banned: [#fbf3f3]"+Name+", Reason: "+Reason+".",player);
  GetSQLNextRow( q );
  i++;
 }