Jump to content

onkela

Members
  • Posts

    22
  • Joined

  • Last visited

    Never
  • Donations

    0.00 GBP 

Posts posted by onkela

  1. hey :)

    I was wondering if any of you guys know why mangchat screws up characters creation, well i think its the "char = name[16]" in src/game/DBCStructure.h causing this error, but as i said im not sure. and i recall this error from some of the old updates before Xeross toke over the project.

    struct ChrClassesEntry
    {
       uint32  ClassID;                                        // 0
                                                               // 1, unused
       uint32  powerType;                                      // 2
                                                               // 3-4, unused
       char*       name[16];                                   // 5-20 unused
                                                               // 21 string flag, unused
       //char*       nameFemale[16];                           // 21-36 unused, if different from base (male) case
                                                               // 37 string flag, unused
       //char*       nameNeutralGender[16];                    // 38-53 unused, if different from base (male) case
                                                               // 54 string flag, unused
                                                               // 55, unused
       uint32  spellfamily;                                    // 56
                                                               // 57, unused
       uint32  CinematicSequence;                              // 58 id from CinematicSequences.dbc
       uint32  expansion;                                      // 59 (0 - original race, 1 - tbc addon, ...)
    };
    

    Anyway thx. :)

    OnkelA

  2. Hey :)

    Greate job on the bot system.

    can any of you tell me what is missed her?

    ../../../src/game/Creature.cpp:755: error: prototype for ‘void Creature::PrepareGossipMenu(Player*, uint32)’ does not match any in class ‘Creature’              
    ../../../src/game/Creature.h:509: error: candidate is: bool Creature::PrepareGossipMenu(Player*, uint32)                                                         
    ../../../src/game/Creature.cpp:882: error: no ‘void Creature::sendPreparedGossip(Player*)’ member function declared in class ‘Creature’                          
    ../../../src/game/Creature.cpp:899: error: no ‘void Creature::OnGossipSelect(Player*, uint32)’ member function declared in class ‘Creature’                      
    ../../../src/game/Creature.cpp:1029: error: no ‘void Creature::OnPoiSelect(Player*, const GossipOption*)’ member function declared in class ‘Creature’           
    ../../../src/game/Creature.cpp:1057: error: no ‘uint32 Creature::GetGossipTextId(uint32, uint32)’ member function declared in class ‘Creature’                   
    ../../../src/game/Creature.cpp:1072: error: no ‘uint32 Creature::GetNpcTextId()’ member function declared in class ‘Creature’                                    
    ../../../src/game/Creature.cpp:1083: error: no ‘const GossipOption* Creature::GetGossipOption(uint32) const’ member function declared in class ‘Creature’        
    ../../../src/game/Creature.cpp: In member function ‘virtual void Creature::SaveToDB(uint32, uint8, uint32)’:                                                     
    ../../../src/game/Creature.cpp:1260: warning: format not a string literal and no format arguments  

    ty.

  3. darky an shot explanation of Mangchat is an integrated IRC client for MaNGOS, irclient inside mangos to be able to have simple chat between wow and irc and connecting the channels of multiple mangos and irc servers in one network having "cross-server chat" and also the possibility to execute simple gm commands

    @xeross155 or anyone maintaining mangchat branch

    with [8789] Rename several singleton macros to use more consistent names

    IRCCmd.cpp and IRCCmde.cpp need to be updated: objmgr -> sObjectMgr

    To make compile in to the latest you also need to change

    IRCCmd.cpp and IRCCmde.cpp needs: accmgr -> sAccountMgr

  4. You shouldn't do git pull, Try git clone.

    And if you're adding it to an already existing repository do

    git remote add xeross git://github.com/xeross/mangos.git
    git pull xeross
    git checkout -b mangchat xeross/mangchat
    

    still the same. i running my own git-server and has read alot on github and the net and as fare as i know its a problem on the server whit some permissons. and your repos is not the first one on github having theese problems.

    git pull xeross

    fatal: The remote end hung up unexpectedly

  5. is this project still going? :)

    well until the repo gets updated you guys can use my repo: git://repos.middleearth.dk/mangos/mangos.git mangchat

    ive tested the source and seems fine for now. and merges and compiles should also be fixed i did manage to pull it into mangos master whitout any problems.

    thers just this one thing not working line 866 in IRCCmde.cpp Seems like the class info thingy isnt working yet. but i will be working on this to. :)

    Best regards OnkelA :)

  6. hey guys :)

    is there anyway to get all the gmlvls to work in the irc-channel so all gm´s are announced correct when joining ingame channel?

    EDIT:

    found my way.. just wanted to share it whit you guys..

    just make src/shared/Common.h looks like this and staff is announce correct..

    enum AccountTypes

    {

    SEC_PLAYER = 0,

    SEC_VIP = 1,

    SEC_MODERATOR = 2,

    SEC_GAMEMASTER = 3,

    SEC_ADMINISTRATOR = 4,

    SEC_SYSOP = 5,

    SEC_CONSOLE = 6 // must be always last in list, accounts must have less security level always also

    };

    ooh and for magchat to look for conf file in sysconfdir make src/game/mangchat/IRCConf.h

    do this.

    #if PLATFORM == PLATFORM_WINDOWS

    #define _MangChat_CONFIG SYSCONFDIR"mangchat.conf"

    #else

    #define _MangChat_CONFIG SYSCONFDIR"mangchat.conf"

    #endif

    #endif

  7. Hey Guys :)

    im trying to compile it in to the dev source aka. 310 on Ubuntu-jaunty 9,04 64bit

    it was working for some days but now it comes up whit this error?

    hoping that one of you maybe can help med? :)

    ./../../src/game/mangchat/IRCCmd.cpp: In member function ‘void IRCClient::AHFunc(uint64, std::string, std::string)’:

    ../../../src/game/mangchat/IRCCmd.cpp:798: advarsel: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘uint64’

    ../../../src/game/mangchat/IRCCmde.cpp: In member function ‘void IRCCmd::Account_Player(_CDATA*)’:

    ../../../src/game/mangchat/IRCCmde.cpp:137: advarsel: format ‘%u’ expects type ‘unsigned int’, but argument 3 has type ‘uint64’

    ../../../src/game/mangchat/IRCCmde.cpp: In member function ‘void IRCCmd::Jail_Player(_CDATA*)’:

    ../../../src/game/mangchat/IRCCmde.cpp:633: fejl: expected `)' before ‘I64FMTD’

    ../../../src/game/mangchat/IRCCmde.cpp: In member function ‘void IRCCmd::Money_Player(_CDATA*)’:

    ../../../src/game/mangchat/IRCCmde.cpp:1359: advarsel: format ‘%u’ expects type ‘unsigned int’, but argument 4 has type ‘uint64’

    ../../../src/game/mangchat/IRCCmde.cpp:1370: advarsel: format ‘%u’ expects type ‘unsigned int’, but argument 4 has type ‘uint64’

    ../../../src/game/mangchat/IRCCmde.cpp:1382: advarsel: format ‘%u’ expects type ‘unsigned int’, but argument 4 has type ‘uint64’

    ../../../src/game/mangchat/IRCCmde.cpp: In member function ‘void IRCCmd::Mute_Player(_CDATA*)’:

    ../../../src/game/mangchat/IRCCmde.cpp:1421: fejl: expected `)' before ‘I64FMTD’

    make[3]: *** [iRCCmde.o] Fejl 1

    make[3]: *** Venter på uafsluttede job....

    mv -f .deps/IRCCmd.Tpo .deps/IRCCmd.Po

    make[3]: Forlader katalog '/home/bs/mangos/objdir/src/game'

    make[2]: *** [all-recursive] Fejl 1

    make[2]: Forlader katalog '/home/bs/mangos/objdir/src'

    make[1]: *** [all-recursive] Fejl 1

    make[1]: Forlader katalog '/home/bs/mangos/objdir'

    make: *** [all] Fejl 2

    EDIT:

    well manage to get it working again :P

    Change I64FMTD in line 633 to UI64FMTD

    and line 1421 and same thing

  8. I am still using brunogcar's PULL attached to 7720 clone and i havent found any real reason why an upgrade is need except i have HEARD (not witnessed keep forgetting to check it myself) from my GMs that when " .sysmsg a " is used it displays an error. otherwise everything works perfectly fine...
    how did you do that erezar?

    git clone git://github.com/mangos.git

    and resets it to 7720

    and git pull git://github.com/brunogcar/mangos.git master? or ?

    thx :)

    Edit: ups sorry found a way to get it to work whit, lol not less that 72 patches + fixes :P if any wanner try it out you´ll find it on git://github.com/gimli/mangos.git and check out patch.list for full list of patches & fixes

  9. For the ones having problems with conflicts between mangchat and ahbot u can use my fork. But just as fair warning i have sd2 rev900,impconfig,ahbot, and mangchat all in one.

    git://github.com/Furt/mangos.git

    use branch All-In-One

    It cannot compile on linux :S

    when running "make" i keep get this error

    Making all in mangosd

    make[3]: Entering directory `/home/mangos/mangos/objdir/src/mangosd'

    Makefile:568: *** missing separator. Stop

  10. hey guys..

    its working in linux

    but remember to edit src/game/mangchat/IRCConf.h to change the conf-dir

    @sysconfdir@/mangchat to mangchat.conf

    then put your mangchat.conf in your bin dir and volla! its working under ubuntu Intrepid 8,10

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. Privacy Policy Terms of Use