Hi,
about Plugin state it is possible that some functions has multiple states?
Code:
public FunctionOne() <>
{
code 1
}
public FunctionOne() <cstrike>
{
code 2
}
public FunctionOne() <czero>
{
code 2
}
public FunctionOne() <tfc>
{
code 3
}
Here I want that both states use the same code (2):
What I have to do? Like <cstrike|czero> or somethink like that?
Code:
public FunctionTwo() <>
{
code 1
}
public FunctionTwo() <cstrike>
{
code 2
}
public FunctionTwo() <czero>
{
code 3
}
public FunctionTwo() <tfc>
{
code 4
}
Here is a other sample but any function use his own unique code. (1, 2, 3, 4)
Not that you think I only need it at one point.
__________________