Code:
#include <amxmodx>
new CoolVariable;
public plugin_init()
{
register_clcmd("Dab", "DabMaster");
register_clcmd("Dab", "DabMaster2");
}
public DabMaster()
{
CoolVariable = 3;
}
public DabMaster2()
{
CoolVariable = 5;
client_print(0, print_chat, "%i", CoolVariable);
}
In this example code, will there ever be a print of 3 instead of 5? Can 2 publics be called simultaneously?