Boss_Thaddius Unexpected end-of-file menu

Shout-Out

User Tag List

Results 1 to 6 of 6
  1. #1
    Bedazzle's Avatar Private
    Reputation
    6
    Join Date
    Aug 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Boss_Thaddius Unexpected end-of-file

    Here's the script. I had changed the ending, as it was giving me an error when I had put ;} at the end. But now I am getting this. Please help!

    Code:
    #include "precompiled.h"
    #include "naxxramas.h"
    
    enum
    {
        // Stalagg
        SAY_STAL_AGGRO                = -1533023,
        SAY_STAL_SLAY                 = -1533024,
        SAY_STAL_DEATH                = -1533025,
    
        SPELL_POWERSURGE              = 28134,
    
        //Feugen
        SAY_FEUG_AGGRO                = -1533026,
        SAY_FEUG_SLAY                 = -1533027,
        SAY_FEUG_DEATH                = -1533028,
    
        SPELL_MANABURN                = 28135,
    
        //both
        SPELL_WARSTOMP                = 28125,
    
        //Thaddus
        SAY_GREET                     = -1533029,
        SAY_AGGRO1                    = -1533030,
        SAY_AGGRO2                    = -1533031,
        SAY_AGGRO3                    = -1533032,
        SAY_SLAY                      = -1533033,
        SAY_ELECT                     = -1533034,
        SAY_DEATH                     = -1533035,
        SAY_SCREAM1                   = -1533036,
        SAY_SCREAM2                   = -1533037,
        SAY_SCREAM3                   = -1533038,
        SAY_SCREAM4                   = -1533039,
    
        SPELL_BALL_LIGHTNING          = 28299,
    
        SPELL_CHARGE_POSITIVE_DMGBUFF = 29659,
        SPELL_CHARGE_POSITIVE_NEARDMG = 28059,
    
        SPELL_CHARGE_NEGATIVE_DMGBUFF = 29660,
        SPELL_CHARGE_NEGATIVE_NEARDMG = 28084,
    
        SPELL_CHAIN_LIGHTNING         = 28167,
        H_SPELL_CHAIN_LIGHTNING       = 54531,
    
        SPELL_BESERK                  = 26662,
    
        //generic
        C_TESLA_COIL                  = 16218                   //the coils (emotes "Tesla Coil overloads!")
    
    }

    Boss_Thaddius Unexpected end-of-file
  2. #2
    marcelo_20xx's Avatar Active Member
    Reputation
    25
    Join Date
    Sep 2008
    Posts
    165
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Try this:

    Code:
    #include "precompiled.h"
    #include "naxxramas.h"
    
    enum
    {
        // Stalagg
        SAY_STAL_AGGRO                = -1533023,
        SAY_STAL_SLAY                 = -1533024,
        SAY_STAL_DEATH                = -1533025,
    
        SPELL_POWERSURGE              = 28134,
    
        //Feugen
        SAY_FEUG_AGGRO                = -1533026,
        SAY_FEUG_SLAY                 = -1533027,
        SAY_FEUG_DEATH                = -1533028,
    
        SPELL_MANABURN                = 28135,
    
        //both
        SPELL_WARSTOMP                = 28125,
    
        //Thaddus
        SAY_GREET                     = -1533029,
        SAY_AGGRO1                    = -1533030,
        SAY_AGGRO2                    = -1533031,
        SAY_AGGRO3                    = -1533032,
        SAY_SLAY                      = -1533033,
        SAY_ELECT                     = -1533034,
        SAY_DEATH                     = -1533035,
        SAY_SCREAM1                   = -1533036,
        SAY_SCREAM2                   = -1533037,
        SAY_SCREAM3                   = -1533038,
        SAY_SCREAM4                   = -1533039,
    
        SPELL_BALL_LIGHTNING          = 28299,
    
        SPELL_CHARGE_POSITIVE_DMGBUFF = 29659,
        SPELL_CHARGE_POSITIVE_NEARDMG = 28059,
    
        SPELL_CHARGE_NEGATIVE_DMGBUFF = 29660,
        SPELL_CHARGE_NEGATIVE_NEARDMG = 28084,
    
        SPELL_CHAIN_LIGHTNING         = 28167,
        H_SPELL_CHAIN_LIGHTNING       = 54531,
    
        SPELL_BESERK                  = 26662,
    
        //generic
        C_TESLA_COIL                  = 16218                   //the coils (emotes "Tesla Coil overloads!")
    
    };

  3. #3
    Bedazzle's Avatar Private
    Reputation
    6
    Join Date
    Aug 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nah that ain't working! I'm getting this error now!

    Code:
    Error	204	error LNK2019: unresolved external symbol "void __cdecl AddSC_boss_thaddius(void)" (?AddSC_boss_thaddius@@YAXXZ) referenced in function "void __cdecl AddScripts(void)" (?AddScripts@@YAXXZ)	C:\Users\Harley\Videos\CORE\Core\src\bindings\scriptdev2\VC100\ScriptLoader.obj	ScriptDev2

  4. #4
    marcelo_20xx's Avatar Active Member
    Reputation
    25
    Join Date
    Sep 2008
    Posts
    165
    Thanks G/R
    2/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thats because you only showed me a part of the script. You have one undeclared function in naxxramas.h

  5. #5
    Bedazzle's Avatar Private
    Reputation
    6
    Join Date
    Aug 2010
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is the answer then?

  6. #6
    Kiev's Avatar Contributor
    Reputation
    288
    Join Date
    Nov 2007
    Posts
    1,819
    Thanks G/R
    0/4
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What is the answer? How about posting the rest of your script and we'll help you? We cannot see through the World Wide Web into your computer, look at your script (We only have one part of it) and tell you the answer magically.




Similar Threads

  1. Guide to extra gold at the end of the day
    By Matt in forum World of Warcraft Guides
    Replies: 1
    Last Post: 11-08-2006, 10:28 PM
  2. Change WoW Music Files?
    By Shadowman2418 in forum World of Warcraft General
    Replies: 3
    Last Post: 07-22-2006, 12:06 PM
  3. Allow members to upload files to the forums?
    By Matt in forum Suggestions
    Replies: 5
    Last Post: 07-07-2006, 08:07 AM
  4. The Wow-dupe File!!
    By Cyboi in forum World of Warcraft Exploits
    Replies: 9
    Last Post: 06-14-2006, 10:14 PM
  5. End Game Priest Guide
    By Bossman4 in forum World of Warcraft Guides
    Replies: 2
    Last Post: 06-07-2006, 06:27 AM
All times are GMT -5. The time now is 09:22 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search