Maybe it will be useful for smb...
How to use:
in On_PluginInit() add this:
and now you can
Var№1 - name of table where plugin will keep data
Var№2 - title when there is smb in list
Var№3 - title when there is nobody in list
Var№4 - how many players in one string
Var№5 - command (player writes "/Var№5" and list will be shown)
Example:
http://fougerite.com/resources/adminsonline.35/
How to use:
in On_PluginInit() add this:
JavaScript:
var listinfo = {
TableName: "Var№1",
Info: "Var№2",
EmptyInfo: "Var№3",
InOneString: Var№4
}
Data.AddTableValue("commands", "Var№5", listinfo);
- add smb you want to list: Data.AddTableValue("Var№1", Player.Name, Player);
- delete smb you want from list: DataStore.Remove("Var№1", Player.Name);
Var№1 - name of table where plugin will keep data
Var№2 - title when there is smb in list
Var№3 - title when there is nobody in list
Var№4 - how many players in one string
Var№5 - command (player writes "/Var№5" and list will be shown)
Example:
http://fougerite.com/resources/adminsonline.35/