I've been having issues on a UC server lately. I'm wondering if anyone knows what's up with it because I've been the ONLY one on the server with this issue, and all of my other games work fine, and I seemingly have no issues on other servers.
Generally upon login, though not limited to it, my player freezes in place whenever I enter the GMAP from an inside level. I can still type and do everything except actually move for about 10 seconds. If it helps, I noticed that sometimes the levels on the GMAP around the one I'm entering will be black for a split second, as if there is a slow loading time.
The only thing I can imagine is this script may be causing issues, but like I said, I'm currently the only one experiencing anything. It wouldn't also explain why some images aren't loading here and there.
function onPlayerLogin() {
for (temp.pl : allplayers) {
temp.pl.addweapon(this.name);
}
}
function onCreated() {
for (temp.pl : allplayers) {
temp.pl.addweapon(this.name);
}
}
//#CLIENTSIDE
function onCreated() {
setTimer(0.05);
}
function onTimeOut() {
if (player.level.starts("dv_ow")) {
addtiledef("DV_Tileset.png", "", 0);
}else{
addTileDef("DV_Tileset-inside.png", NULL, 0);
}
setTimer(0.05);
}
Sidenote: I reinstalled. Like three times.