[Guide] Teleporter NPC menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 20
  1. #1
    Aldaus's Avatar Member
    Reputation
    28
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Guide] Teleporter NPC

    This is a guide for making your own World Teleporter NPC.
    Dont Worry I will tell you have to compile it to

    What is this?

    A Teleporter NPC is a creature that brings up a list of places you can teleport to using the NPC on gossip.


    Now For the Guide.

    REQUIRMENTS
    Code:
    Microsoft Visual Studio 2003 http://www.microsoft.com/downloads/details.aspx?familyid=69d2219f-ce82-46a5-8aec-072bd4bb955e&displaylang=en
    
    TortoiseSVN
    http://tortoisesvn.net/downloads

    First Step Download
    Code:
    http://filebeam.com/7aa8c299bd23e4c8f8570929f7fafb93
    If you already have a Ascent compiled then you can skip this part
    2: If not make a new folder named Ascent,and right click and and do SVN Checkout.
    3:Now Type in this
    http://projects.emupedia.com/svn/ascent/trunk/
    username: anonymous
    password: leave blank

    4:Once its done go in the Ascent folder and open WIN
    5: Double click on AscentVC71.
    6: Right click AscentVC71 on the right side of the screen and click build solution, Let that build and make sure theres no errors.
    7: Once its done go to Ascent/src/scripts and compile scripts2003 same way with AscentVC71, make sure theres no errors.
    8: Now you have ascent compiled, go to ascent/src/scripts/src make a new folder named CustomScripts. Now edit makefile.am in the src/scripts/src folder and make it say
    Code:
    SUBDIRS = CustomScripts GossipScripts InstanceScripts ServerStatusPlugin SpellHandlers
    9: Now open up the CustomScripts folder and make a new makefile.am in notepad and write
    Code:
    INCLUDES += -I$(srcdir) -I$(srcdir)/../../../../dep/include -I$(srcdir)/../../../shared
    INCLUDES += -I$(srcdir)/../../../script -I$(srcdir)/../../../../src -I$(srcdir)/../../../game
    INCLUDES += -I$(srcdir)/../../../logonserver -I$(srcdir)/../../../../dep/src/gm
    AM_CXXFLAGS = -DSCRIPTLIB
    lib_LTLIBRARIES = libGossipScripts.la
    libGossipScripts_la_SOURCES = Custom_Teleporters.cpp Setup.cpp
    10: Open up the .rar file u downloaded first and open src/CustomScripts and take those 3 files to src/scripts/src/customscripts and put them in there.
    Now go to the ascent root folder and edit configure.ac and go to the bottom and right under Spellhandlers put
    Code:
    src/scripts/src/CustomScripts/Makefile
    11: Now go back to the customscripts folder and edit custom_teleporters.cpp
    12: At the bottom find
    Code:
    void SetupCustom_Teleporters(ScriptMgr * mgr)
    {
        /* Teleporter List */
        mgr->register_gossip_script(133701, &TeleportNPC::Create);          // Osciron
    }
    Replace the 133701 with the ID that the mob is gonna be.
    13: Go back to the RAR and go into the projects folder.
    and take both CustomScripts2003 and 2005 to src/scripts/project and put it in there. Edit CustomScripts2003 with notepad and replace all the antrix.lib with ascent.lib(only if ur using ascent). Now save that and open it up with VS and do build solution. Once that is finished, close it and make your own NPC for it and under creature_proto make sure to set NPC flags to 1.
    I would like to remind you that you do not need to get a whole new core but it is recommended. I'm not sure how to transfer this to a different core though.
    Thanks for reading the guide and if you have any problems go ahead and post it
    Last edited by Aldaus; 11-19-2007 at 01:55 PM. Reason: Fixing it Up.

    [Guide] Teleporter NPC
  2. #2
    Aldaus's Avatar Member
    Reputation
    28
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Guide] Teleporter NPC

    Are you using Linux?

  3. #3
    freezer1012's Avatar Member
    Reputation
    34
    Join Date
    Apr 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Guide] Teleporter NPC

    same thing happened to me


  4. #4
    Herleybob's Avatar Contributor
    Reputation
    178
    Join Date
    Jul 2007
    Posts
    663
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [Guide] Teleporter NPC

    Did you add this to your project and compile it with the repack?

    Nom Nom Nom :P

  5. #5
    sadgonewild's Avatar Member
    Reputation
    10
    Join Date
    Jun 2007
    Posts
    127
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jonny53219 View Post
    Are you using Linux?
    This has got nothing got to do with linux

  6. #6
    kanqaz's Avatar Banned
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    410
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It says:

    ----- Build started: Project: shared, Configuration: Debug Win32 ------
    Compiling...
    Database.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    dbcfile.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\database\dbcfile.h(107) : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\src\shared\Database\dbcfile.cpp(30) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\src\shared\Database\dbcfile.cpp(87) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    DBC.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\database\../Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    DBCStores.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Config.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    BigNumber.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    crc32.cpp
    MD5.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Sha1.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    WowCrypt.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Socket.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    SocketMgrWin32.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Soc****psWin32.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    SocketWin32.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Mutex.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    ThreadPool.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\threading\../Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    ascent_getopt.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    CallBack.cpp
    CrashHandler.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    MemoryLeaks.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Generating Code...
    Compiling...
    MersenneTwister.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    StackWalker.cpp
    ..\..\src\shared\StackWalker.cpp(26) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
    Util.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Log.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Generating Code...
    Build log was saved at "file://c:\Documents and Settings\Admun\Skrivebord\Ascent\win\VC71\shared___Win32_Debug\BuildLog.htm"
    shared - 21 error(s), 3 warning(s)
    ------ Build started: Project: lua, Configuration: Debug Win32 ------
    Compiling...
    lapi.c
    lauxlib.c
    ..\..\dep\src\lua\lauxlib.c(544) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lauxlib.c(564) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lauxlib.c(575) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    lbaselib.c
    lcode.c
    ldblib.c
    ldebug.c
    ldo.c
    ldump.c
    lfunc.c
    lgc.c
    linit.c
    liolib.c
    ..\..\dep\src\lua\liolib.c(39) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(41) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(49) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(153) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(169) : warning C4996: 'tmpfile' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(321) : see declaration of 'tmpfile'
    Message: 'This function or variable may be unsafe. Consider using tmpfile_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(189) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(241) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(259) : warning C4996: 'fscanf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(249) : see declaration of 'fscanf'
    Message: 'This function or variable may be unsafe. Consider using fscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\liolib.c(379) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    llex.c
    lmathlib.c
    lmem.c
    loadlib.c
    ..\..\dep\src\lua\loadlib.c(92) : fatal error C1083: Cannot open include file: 'windows.h': No such file or directory
    lobject.c
    ..\..\dep\src\lua\lobject.c(145) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(184) : warning C4996: 'strncpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
    Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(193) : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(196) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(19 : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(204) : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(206) : warning C4996: 'strncat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(143) : see declaration of 'strncat'
    Message: 'This function or variable may be unsafe. Consider using strncat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(207) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(210) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lobject.c(211) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    lopcodes.c
    loslib.c
    ..\..\dep\src\lua\loslib.c(31) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\loslib.c(60) : warning C4996: 'tmpnam' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(327) : see declaration of 'tmpnam'
    Message: 'This function or variable may be unsafe. Consider using tmpnam_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\loslib.c(69) : warning C4996: 'getenv' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdlib.h(483) : see declaration of 'getenv'
    Message: 'This function or variable may be unsafe. Consider using _dupenv_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\loslib.c(129) : warning C4996: 'gmtime' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\time.inl(101) : see declaration of 'gmtime'
    Message: 'This function or variable may be unsafe. Consider using gmtime_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\loslib.c(133) : warning C4996: 'localtime' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\time.inl(114) : see declaration of 'localtime'
    Message: 'This function or variable may be unsafe. Consider using localtime_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    lparser.c
    Generating Code...
    Compiling...
    lstate.c
    lstring.c
    lstrlib.c
    ..\..\dep\src\lua\lstrlib.c(739) : warning C4996: 'strncpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(156) : see declaration of 'strncpy'
    Message: 'This function or variable may be unsafe. Consider using strncpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(749) : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(774) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(779) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(784) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(789) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\lua\lstrlib.c(807) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ltable.c
    ltablib.c
    ltm.c
    lundump.c
    lvm.c
    ..\..\dep\src\lua\lvm.c(53) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    lzio.c
    print.c
    Generating Code...
    Build log was saved at "file://c:\Documents and Settings\Admun\Skrivebord\Ascent\win\VC71\lua___Win32_Debug\BuildLog.htm"
    lua - 1 error(s), 35 warning(s)
    ------ Build started: Project: zlib, Configuration: Debug Win32 ------
    Compiling...
    adler32.c
    compress.c
    crc32.c
    deflate.c
    gzio.c
    ..\..\dep\src\zlib\gzio.c(131) : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(181) : warning C4996: 'fopen' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(234) : see declaration of 'fopen'
    Message: 'This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(226) : warning C4996: 'sprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(345) : see declaration of 'sprintf'
    Message: 'This function or variable may be unsafe. Consider using sprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(627) : warning C4996: '_vsnprintf' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\stdio.h(339) : see declaration of '_vsnprintf'
    Message: 'This function or variable may be unsafe. Consider using _vsnprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(1001) : warning C4996: 'strerror' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(125) : see declaration of 'strerror'
    Message: 'This function or variable may be unsafe. Consider using strerror_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(100 : warning C4996: 'strcpy' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(73) : see declaration of 'strcpy'
    Message: 'This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(1009) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    ..\..\dep\src\zlib\gzio.c(1010) : warning C4996: 'strcat' was declared deprecated
    C:\Programmer\Microsoft Visual Studio 8\VC\include\string.h(7 : see declaration of 'strcat'
    Message: 'This function or variable may be unsafe. Consider using strcat_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online help for details.'
    infback.c
    inffast.c
    inflate.c
    inftrees.c
    trees.c
    ..\..\dep\src\zlib\trees.c(773) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(777) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(780) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(780) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(783) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(783) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(786) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(786) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(84 : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(849) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(850) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(853) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(873) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(895) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(896) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(907) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(90 : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(98 : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(994) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1087) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1092) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1096) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1102) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1106) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    ..\..\dep\src\zlib\trees.c(1116) : warning C4267: '=' : conversion from 'size_t' to 'ush', possible loss of data
    uncompr.c
    zutil.c
    Generating Code...
    Creating library...
    Build log was saved at "file://c:\Documents and Settings\Admun\Skrivebord\Ascent\win\VC71\zlib___Win32_Debug\BuildLog.htm"
    zlib - 0 error(s), 33 warning(s)
    ------ Build started: Project: main, Configuration: Debug Win32 ------
    Compiling...
    StdAfx.cpp
    c:\documents and settings\admun\skrivebord\ascent\src\game\../shared/Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Build log was saved at "file://c:\Documents and Settings\Admun\Skrivebord\Ascent\win\VC71\game___Win32_Debug\BuildLog.htm"
    main - 1 error(s), 0 warning(s)
    ------ Build started: Project: ascent, Configuration: Debug Win32 ------
    Compiling...
    CConsole.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Main.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Master.cpp
    c:\Documents and Settings\Admun\Skrivebord\Ascent\src\shared\Common.h(230) : fatal error C1083: Cannot open include file: 'winsock2.h': No such file or directory
    Generating Code...
    Build log was saved at "file://c:\Documents and Settings\Admun\Skrivebord\Ascent\win\VC71\Debug\BuildLog.htm"
    ascent - 3 error(s), 0 warning(s)
    ========== Build: 1 succeeded, 4 failed, 0 up-to-date, 0 skipped ==========

  7. #7
    Aldaus's Avatar Member
    Reputation
    28
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ehhh.... Thats when compiling Ascent.
    I don't get that error, what version of Microsoft Visual Studio are you using?

  8. #8
    wowcomputer's Avatar Member
    Reputation
    28
    Join Date
    Aug 2007
    Posts
    53
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Yeah I have a problem with that, you see I tried to install

    Microsoft Visual Studio 2003 Download details: Visual Studio .NET 2003 SP1

    And it said I had the wrong Windows service installer patch or something like that, my Windows Update Service Installer must be screwed up

  9. #9
    Aldaus's Avatar Member
    Reputation
    28
    Join Date
    Sep 2007
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I might be supplying the wrong Visual Studio 2003, Not sure...

  10. #10
    Chrisspitz's Avatar Member
    Reputation
    2
    Join Date
    Mar 2007
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks tons!

  11. #11
    kanqaz's Avatar Banned
    Reputation
    235
    Join Date
    Oct 2007
    Posts
    410
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    where can i find antrix.lib and ascent.lib ??

  12. #12
    ddinek's Avatar Member
    Reputation
    27
    Join Date
    May 2007
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    cool nice , i will try soon

  13. #13
    Herleybob's Avatar Contributor
    Reputation
    178
    Join Date
    Jul 2007
    Posts
    663
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Full compile Plus Npc Sql
    Link:
    Filebeam - Free Fast File Hosting

    Nom Nom Nom :P

  14. #14
    Aes's Avatar Former Staff CoreCoins Purchaser
    Reputation
    705
    Join Date
    Dec 2007
    Posts
    1,793
    Thanks G/R
    7/8
    Trade Feedback
    60 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can someone compile it all and have it all ready to execute to navicat please because i got lost trying to do all that =C

    +rep for any help and especially for the all rady to execute file for it

  15. #15
    Herleybob's Avatar Contributor
    Reputation
    178
    Join Date
    Jul 2007
    Posts
    663
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just look above...

    Nom Nom Nom :P

Page 1 of 2 12 LastLast

Similar Threads

  1. [GUIDE] Teleporter NPC for MaNGOS (using C++)
    By grayfm in forum WoW EMU Guides & Tutorials
    Replies: 33
    Last Post: 03-17-2010, 12:41 PM
  2. [Lua Guide] Teleport NPC
    By DarkFever in forum WoW EMU Guides & Tutorials
    Replies: 2
    Last Post: 09-04-2009, 11:42 AM
  3. [Guide] LUA teleporter NPC template and guide!!
    By Jackie Moon in forum WoW EMU Guides & Tutorials
    Replies: 34
    Last Post: 04-07-2009, 03:36 PM
  4. [Guide] Teleporter/Warp Npc
    By Cursed in forum World of Warcraft Emulator Servers
    Replies: 16
    Last Post: 03-15-2008, 03:18 PM
  5. [Guide] Creating and Compiling a Teleporter NPC
    By Gastricpenguin in forum WoW EMU Guides & Tutorials
    Replies: 59
    Last Post: 10-29-2007, 03:06 PM
All times are GMT -5. The time now is 02:57 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search