Hi there,
Recently (like 6 hours ago) I've made the switch from Oxide to Fougerite and for now I seem to have 2 plugins which don't work properly.
My server is hosted at Gameservers.com so I had to go through Ticket Support to get Fougerite installed.
The following plugins seem to have issues:
Voter (http://gomagma.org/community/index.php?resources/voter.61/) and FPSBoost (http://fougerite.com/resources/fpsboost.18/)
When I try to use /vote it comes up with "Config does not exist"
And when I try to use /fps it does work but the username is changed to "Config does not exist" as well.
Here is my folder structure in the server: http://puu.sh/biadc.png and http://puu.sh/biaf2.png
As you can see both plugins are already using the exact same name as the plugin is called.
Here are some snippets of the code in the plugins, I think the following call is what is actually failing:
"Data.GetConfigValue"
I would like to hear your thoughts and on what I can do to have these plugins working.
I am also open to any suggestions or any good alternatives to the plugins I am using. I'm trying to have a good user experience for my server
With kind regards,
Jeffro
Edit:
It also seems the plugin Rank++ is creating a lot of errors in my console:
Any idea if its the plugin or if there's a problem with the way the server is configured?
Recently (like 6 hours ago) I've made the switch from Oxide to Fougerite and for now I seem to have 2 plugins which don't work properly.
My server is hosted at Gameservers.com so I had to go through Ticket Support to get Fougerite installed.
The following plugins seem to have issues:
Voter (http://gomagma.org/community/index.php?resources/voter.61/) and FPSBoost (http://fougerite.com/resources/fpsboost.18/)
When I try to use /vote it comes up with "Config does not exist"
And when I try to use /fps it does work but the username is changed to "Config does not exist" as well.
Here is my folder structure in the server: http://puu.sh/biadc.png and http://puu.sh/biaf2.png
As you can see both plugins are already using the exact same name as the plugin is called.
Here are some snippets of the code in the plugins, I think the following call is what is actually failing:
"Data.GetConfigValue"
JavaScript:
var config = "Voter";
function checkReward(set) {
var rewardsArray = [];
var x = 0;
while(true) { //Iterate through the config.
var rewards = Data.GetConfigValue(config, "RewardSet"+set, "reward"+x); //Read the reward at that particular line.
if(rewards != null) { //Check to see if you have reached the end of the config for rewards.
rewardsArray.push(rewards);
x = x+1;
} else {
break;
}
}
return rewardsArray;
}
JavaScript:
var name = Data.GetConfigValue("FPSBoost", "Settings", "name");
var cooldown = Data.GetConfigValue("FPSBoost", "Settings", "cd");
var time = Data.GetTableValue("FPSBoost", Player.SteamID);
I am also open to any suggestions or any good alternatives to the plugins I am using. I'm trying to have a good user experience for my server
With kind regards,
Jeffro
Edit:
It also seems the plugin Rank++ is creating a lot of errors in my console:
Code:
MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
[MagmaPlugin] Error invoking function On_PlayerGathering in Rank++ plugin.
SerializationException: Type UnityEngine.Vector3 is not marked as Serializable.
Last edited: