Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Due to recent spam attacks that heavily used compormised accounts we did reset all user passwords, AGAIN, if it happens and your account got compromised again due to re-used passwords your account will be perma-banned.
Hi, I want to know where I can find the commit for adding of getvariableofpc() script command. I am running old version of Herc (2016) and want to add this to my source.
Now I have a second question for anybody who may know.
How come # variable is on the excluded list? Would there be issues if I removed it from here?
Code:
switch (*name)
{
case '#':
case '$':
case '.':
case '\'':
ShowError("script:getvariableofpc: illegal scope (not pc variable)\n");
script->reportdata(data);
script_pushnil(st);
st->state = END;
return false;
}
Now I have a second question for anybody who may know.
How come # variable is on the excluded list? Would there be issues if I removed it from here?
switch (*name)
{
case '#':
case '$':
case '.':
case '\'':
ShowError("script:getvariableofpc: illegal scope (not pc variable)\n");
script->reportdata(data);
script_pushnil(st);
st->state = END;
return false;
}