Hiya,
I am running the new 3.3 server and while it seems to run fine, I do get the following message when it is in the loading process, any ideas?
| ERROR: JS script failure: Message (SyntaxError: missing ) after condition)
| ERROR: Filename: ./js/magic/level1targ.js
Line Number: 315
| ERROR: Erroneous Line: {
Token Ptr: {
| ERROR: Compiling ./js/magic/level1targ.js caused a construction failure (Detai
ls: Compilation failed)
[FIXED] 3.3 error question
-
Grimson
- Developer
- Posts: 802
- Joined: Sat Jun 04, 2005 1:52 am
- Location: Germany
- Has thanked: 0
- Been thanked: 0
There is an error in the js file, open it with notepad and look for this:Hitman wrote:Hiya,
I am running the new 3.3 server and while it seems to run fine, I do get the following message when it is in the loading process, any ideas?
| ERROR: JS script failure: Message (SyntaxError: missing ) after condition)
| ERROR: Filename: ./js/magic/level1targ.js
Line Number: 315
| ERROR: Erroneous Line: {
Token Ptr: {
| ERROR: Compiling ./js/magic/level1targ.js caused a construction failure (Detai
ls: Compilation failed)
Code: Select all
if( !mChar.CanSee( ourTarg )
{
return;
}
Code: Select all
if( !mChar.CanSee( ourTarg ) )
{
return;
}