function On_PluginInit(){If I haveThe plugin will not load, If I remove it it loads fine.JavaScript:if(isVip(Player) == true || Player.Admin == true){
Yeah nothing shows up when I reload the serverfunction On_PluginInit(){
Player.Message("asd: "+ Util.GetRootFolder());
}
You dont have a player there. You can only do Server.Broadcast on plugin init.
Well, if we cannot find a solution we might able to add a method inside fougerite i guess.
"You dont have a player there. You can only do Server.Broadcast on plugin init."Yeah nothing shows up when I reload the server
function On_PlayerConnected(Player){
if(Player.Admin){
Player.Message("asd " + Util.GetRootFolder());
}
}
Nothing happened, Even removed if(Player.Admin){"You dont have a player there. You can only do Server.Broadcast on plugin init."
JavaScript:function On_PlayerConnected(Player){ if(Player.Admin){ Player.Message("asd " + Util.GetRootFolder()); } }
Nothing happened, Even removed if(Player.Admin){
function On_PlayerConnected(Player){
try {
Player.Message("Folder : "+ Util.GetRootFolder());
}
catch (ex) {
Server.Broadcast(ex.message);
}
}
Function expected.JavaScript:function On_PlayerConnected(Player){ try { Player.Message("Folder : "+ Util.GetRootFolder()); } catch (ex) { Server.Broadcast(ex.message); } }
I tried to use this plug with fougeri and contains errors,original version http://gomagma.org/community/index.php?resources/vip.107/ I do not read from folder
Use: http://fougerite.com/threads/donatorrank.159/I tried to use this plug with fougeri and contains errors,
every time someone writes as adm or as VIP.
Displays an error facade.