Is there a way to change a varable in another plugin from with in a plugin?
Example Frist plugin has public string trychange = "Changethis";
how can i change this in another plugin with out adding this to the first plugin?
void testthis(string newtxt)
{
trychange = newtxt;
}
Is there a way to avoid the adding of a call like that?
Example Frist plugin has public string trychange = "Changethis";
how can i change this in another plugin with out adding this to the first plugin?
void testthis(string newtxt)
{
trychange = newtxt;
}
Is there a way to avoid the adding of a call like that?