Major Release!(2.1.0)
-Droped _sourcebans suffix
-Added automatic Sourceban checker(dropped sm_loyal_sourcebans)
-Added flatfile support
-Added fully automatic admin method detection(flatfile, sql, sourcebans)
-Added admin group use for all methods(untested for MySQL admins)
-Added bonus points column
-Added command to modify user's points
-Cleaned up minor coding issues
/!\ Important! /!\ Upgrade instructions for 2.0.x to 2.1.x
With 2.1.x the _sourcebans has been dropped from the file, so when you add the new loyal.smx to your plugins file, you
need to remove the old loyal_sourcebans.smx or else run into interferance
You
*must* run the following query on your loyal table:
Code:
ALTER TABLE loyal
ADD bonus INT(8) NOT NULL
Also, the config file has been renamed to loyal.cfg, just to keep everything named the same.
New list of cvars(Automatically created in cfg/sourcemod/loyal.cfg)
Code:
// Assists required per loyalty point(Warning: Changes in this are retroactive)
// -
// Default: "10"
sm_loyal_assists "10"
// Loyalty point cost per week of reserved slot
// -
// Default: "300"
sm_loyal_cost "300"
// Kills required per loyalty point(Warning: Changes in this are retroactive)
// -
// Default: "10"
sm_loyal_kills "10"
// What Sourcebans Server Group to add loyalty members too(if applicable)
// -
// Default: "All Servers"
sm_loyal_server_group "All Servers"
// Minutes of play required per loyalty point(Warning: Changes in this are retroactive)
// -
// Default: "10"
sm_loyal_time "10"
// User group to add loyalty members too (Sourcebans only)
// -
// Default: "Loyal Members"
sm_loyal_user_group "Loyal Members"
// Version of Loyalty Plugin installed, do not touch
// -
// Default: "2.1.0"
sm_loyal_version "2.1.0"
__________________