Bumped. Someone needs to fix the server.cs.
datablock AudioProfile(Win95start){ filename = “Win95start.wav”};datablock AudioProfile(Win95end){ filename = “Win95end.wav"};
So like this?Code: [Select]datablock AudioProfile(Win95start){ filename = “Win95start.wav”};datablock AudioProfile(Win95end){ filename = “Win95end.wav"};
So like this?Code: [Select]datablock AudioProfile(Win95start){ filename = “Win95start.wav”};datablock AudioProfile(Win95end){ filename = “Win95end.wav"};That's a start. Now do the other 3...
Well, my god Mac only allows me for the Unicode forward and back and not the normal quote.
datablock AudioProfile(Win95start){ filename = "Win95start.wav"};datablock AudioProfile(Win95end){ filename = "Win95end.wav"};Was it too hard to copy paste the normal quote to replace the unicode quotes? Anyways, this should work just fine.
Loading Add-On: Sound_Win95 (CRC:963253973)Add-Ons/Sound_Win95/server.cs Line: 4 - Syntax error.>>> Some error context, with ## on sides of error halt:atablock AudioProfile(Win95start) (atablock...should be datablock){ filename = "Win95start.wav"}##;## datablock AudioProfile(Win95end){ filename = "Win95end.wav"};>>> Error report complete.ADD-ON "Sound_Win95" CONTAINS SYNTAX ERRORSThings in bold were not actually in the console.log
Maybe that's what's breaking the script.
datablock AudioProfile(Win95start){ filename = “./win95start.wav”;};datablock AudioProfile(Win95end){ filename = “./Win95end.wav";};
I tried this and...[Posted from console.log]Loading Add-On: Sound_Win95 (CRC:963253973)Add-Ons/Sound_Win95/server.cs Line: 4 - Syntax error.>>> Some error context, with ## on sides of error halt:atablock AudioProfile(Win95start){ filename = "Win95start.wav"}##;## <------------------- This Seems to be the problem.datablock AudioProfile(Win95end){ filename = "Win95end.wav"};>>> Error report complete.ADD-ON "Sound_Win95" CONTAINS SYNTAX ERRORSThings in bold were not actually in the console.log
Code: [Select]datablock AudioProfile(Win95start){ filename = “./win95start.wav”;};datablock AudioProfile(Win95end){ filename = “./Win95end.wav";};In the server.cs, the d is there.