Urban Gaming Client/Database/Source Code Only

Page 34 of 57 FirstFirst ... 24262728293031323334353637383940414244 ... LastLast
Results 496 to 510 of 846
  1. #496
    Member edwinc3020 is offline
    MemberRank
    Dec 2007 Join Date
    76Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by Mustafa5 View Post
    @edwinc3020it is safe to remove the schoolwars function? not the towerwars , do they have relate?
    School War, Tower War, School Tower War, Capture the field
    Haha, quite a mess in the source.

    according to my memory, some of the "Tower war" sub function sharing "School War" net msg.
    core function the "Tower war" got its own defines, but still little bit mess on variable naming, for example "GLTowerWars *pSW".

    it is totally safe, to remove the "School War", but u have to be very very careful to done this.
    and don't remove the sharing net msg / function, if u found any.

    - - - Updated - - -

    Quote Originally Posted by caspian0 View Post
    mind sharing sir ? and have you also fix the Points rewards also?
    Yes, actually, i already share the key.

    goto GLGaeaClient.cpp
    check below message, u will find this vector "m_vecCtfRankInfoAll" is empty. and lead to no point will send to players when tyranny end.
    **********************
    Code:
    if ( m_vecCtfRankInfoAll.size() != 0 )                {                    for(int i = 0; i < m_vecCtfRankInfoAll.size(); ++i )                    {                        STWP_RANK_INFO sPlayer = m_vecCtfRankInfoAll[i];                        if ( m_Character.GetCharID() == sPlayer.dwCharID )                        {                            GLMSG::SNETPC_REQ_TYRANNY_GETREWARD NetMsg;                            NetMsg.lnValue = 50;                            NETSEND(&NetMsg);                            break;                        }                    }                }

    u might just change the vector as below, for testing purpose only. (as i mentioned before, is not safe done it like this. )

    **********************
    Code:
    if ( m_vecCtfRankAll.size() != 0 )                {                    for(int i = 0; i < m_vecCtfRankAll.size(); ++i )                    {                        STWP_RANK sPlayer = m_vecCtfRankAll[i];                        if ( m_Character.GetCharID() == sPlayer.dwCharID )                        {                            GLMSG::SNETPC_REQ_TYRANNY_GETREWARD NetMsg;                            NetMsg.lnValue = 50;                            NETSEND(&NetMsg);                            break;                        }                    }                }
    dwCharID is missing in structure "STWP_RANK", make sure u have added it & assign value to it, then above test function will work.

  2. #497
    Back at old school Mustafa5 is offline
    MemberRank
    Mar 2018 Join Date
    329Posts

    Re: Urban Gaming Client/Database/Source Code Only



    Do anyone know, why this thing is happening? @edwinc3020

    When multiple character entered the game. agent server behave like that high memory usage.

  3. #498
    Account Upgraded | Title Enabled! zet is offline
    MemberRank
    Aug 2010 Join Date
    249Posts

    Re: Urban Gaming Client/Database/Source Code Only

    solve
    Last edited by zet; 12-08-19 at 10:34 AM.

  4. #499
    Proficient Member sexual123 is offline
    MemberRank
    Aug 2011 Join Date
    178Posts

    Re: Urban Gaming Client/Database/Source Code Only

    For those who struggling in glogicserver try this

    https://www.sendspace.com/file/h2cd1a




    PS. if you have knowledge don't hesitate to help.

  5. #500
    Chinese Developer baby011528 is offline
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by Mustafa5 View Post


    Do anyone know, why this thing is happening? @edwinc3020

    When multiple character entered the game. agent server behave like that high memory usage.
    try config it on cfg

    use_event_thread 1

  6. #501
    Valued Member bryle is offline
    MemberRank
    Mar 2017 Join Date
    OthersideLocation
    106Posts

    Re: Urban Gaming Client/Database/Source Code Only

    The Option Randomizer is not working for me
    Anyone how to fix?

  7. #502
    Account Upgraded | Title Enabled! caspian0 is offline
    MemberRank
    Jul 2012 Join Date
    1,321Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by bryle View Post
    The Option Randomizer is not working for me
    Anyone how to fix?
    the randomizer is working as long as you have glogicserver.. and you've set the genitem in item.isf.

  8. #503
    Enthusiast grandran is offline
    MemberRank
    Jun 2013 Join Date
    Баколод,Location
    39Posts

    Re: Urban Gaming Client/Database/Source Code Only

    who need compatible sky weap and faultless set for urban source pm me is the key :) https://www.facebook.com/ddoonnsss

  9. #504
    Account Upgraded | Title Enabled! jedmustdie is offline
    MemberRank
    Feb 2010 Join Date
    304Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by baby011528 View Post
    try config it on cfg

    use_event_thread 1
    do you have any facebook acc or whatsapp? can you pm it to me? thanks

  10. #505
    Chinese Developer baby011528 is offline
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by jedmustdie View Post
    do you have any facebook acc or whatsapp? can you pm it to me? thanks
    you can email me by baby011528@hotmail.com

  11. #506
    Account Upgraded | Title Enabled! Frozenn is offline
    MemberRank
    Aug 2016 Join Date
    PerfLogsLocation
    272Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Anyone share chinese/thai decrypted gui language??
    PM me or upload here. Thank you.

  12. #507
    Valued Member bryle is offline
    MemberRank
    Mar 2017 Join Date
    OthersideLocation
    106Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by caspian0 View Post
    the randomizer is working as long as you have glogicserver.. and you've set the genitem in item.isf.
    Where to set the genitem of option randomizer in item editor?

    Also i found bug campus1f cant enter
    Last edited by bryle; 30-08-19 at 02:08 PM.

  13. #508
    Apprentice Tomioka is offline
    MemberRank
    Aug 2019 Join Date
    12Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by bryle View Post
    Where to set the genitem of option randomizer in item editor?

    Also i found bug campus1f cant enter
    i think in glogic.rcc or glogicserver correct me if im wrong

  14. #509
    Apprentice Bruz is offline
    MemberRank
    Aug 2019 Join Date
    7Posts

    Re: Urban Gaming Client/Database/Source Code Only

    how to use level editor?? it didnt work on me thanks !!!

  15. #510
    Apprentice Tomioka is offline
    MemberRank
    Aug 2019 Join Date
    12Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by Bruz View Post
    how to use level editor?? it didnt work on me thanks !!!

    its hard to get a working lev edit for urban



Advertisement