18.05.2014, 21:55
Make sure you get the plugins correctly installed.
If you read the code this happens because:
It doesn't find any row when running this query
Which means that the database might not be correctly configured.
Code:
[SERVER CRITICAL ERROR]: Didn't find any configuration database.
pawn Code:
forward OnConfigurationLoaded();
public OnConfigurationLoaded()
{
new rows, fields;
cache_get_data(rows, fields);
if(!rows)
{
...
pawn Code:
mysql_tquery(dbHandle, "SELECT * FROM mainconfig", "OnConfigurationLoaded", "");