![]() |
|
03-07-2017
|
1 |
|
Banned
Join Date: Feb 2017
Posts: 18
|
PC Graal issues
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. |
|
03-08-2017
|
2 |
|
Banned
Join Date: Apr 2014
Posts: 1,561
|
Graal PC? Error? In the same sentence? No! You don't say! But yeah I have no idea so I'll get out... |
|
03-10-2017
|
3 |
|
Banned
Join Date: Nov 2012
Posts: 351
|
The only thing i can think of is that you have a weapon npc added to your client, that others dont, that's causing the problem.. is it only on this server specifically? What i said could be the problem, or someone messed with you, specifying your account in a weapon that causes this issue.
|
|
03-10-2017
|
4 |
|
Banned
Join Date: Sep 2011
Location: New Hampshire, United States
Posts: 3,135
|
Maybe you should do your tiledefs correctly. The syntax is addtiledef("tileset","level prefix",type); addtiledef2("tileset part","level prefix",x,y); There are two kinds of tilesets: type 0 are the default pics1-style tilesets; type 1 are the NewWorld-style tilesets that Era and Graal Kingdoms use. The two tileset types are different sizes. PHP Code:
If you knew what any of these commands did you wouldn't be having issues. Stop copying and pasting other peoples' codes and start learning what they actually do.
Last edited by Skyzer; 03-10-2017 at 06:21 PM.
|
|
03-15-2017
|
5 | |
|
Banned
Join Date: Feb 2017
Posts: 18
|
Also, just to close out this thread: the issue was being caused by a poorly scripted weather NPC. I had a hunch that was it, but I was the only person being affected by it for some reason. |
|
|
03-16-2017
|
6 |
|
Banned
Join Date: Sep 2011
Location: New Hampshire, United States
Posts: 3,135
|
I did say in the post that I didn't think it was the reason for the freezing, I just wanted to make sure you knew that code was wrong.
|