Urban Gaming Client/Database/Source Code Only

Page 46 of 57 FirstFirst ... 36383940414243444546474849505152535456 ... LastLast
Results 676 to 690 of 846
  1. #676
    Chinese Developer baby011528 is offline
    [VIP] MemberRank
    Apr 2019 Join Date
    MalaysiaLocation
    307Posts

    Re: Urban Gaming Client/Database/Source Code Only

    support urban gaming for newbie use~~

  2. #677
    Member iElyrb is offline
    MemberRank
    Jan 2018 Join Date
    99Posts

    Re: Urban Gaming Client/Database/Source Code Only

    What Visual Studio Version do you guys use to compile this?

  3. #678
    Member iElyrb is offline
    MemberRank
    Jan 2018 Join Date
    99Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Can someone share the tool for editing the param.ini of this client? thanksI would also like to know on how to compile the source, I am using Visual Studio 2003 and 2008, none of then worked, I am new to Ran development.

  4. #679
    Proficient Member masterband1427 is offline
    MemberRank
    Mar 2011 Join Date
    Los Angeles, CaLocation
    152Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by iElyrb View Post
    Can someone share the tool for editing the param.ini of this client? thanksI would also like to know on how to compile the source, I am using Visual Studio 2003 and 2008, none of then worked, I am new to Ran development.

    HERE IS THE LINK FOR YOU CAUSE U DON'T KNOW HOW TO USE SEARCH BAR. CLICK ME

  5. #680
    Member iElyrb is offline
    MemberRank
    Jan 2018 Join Date
    99Posts

    Re: Urban Gaming Client/Database/Source Code Only

    it's alright, the problem was I needed to install net framework 1.1 which was not included on the tutorials from the forums, but thanks for your sarcasm :)

  6. #681
    Apprentice situsreza09 is offline
    MemberRank
    Sep 2019 Join Date
    16Posts

    Re: Urban Gaming Client/Database/Source Code Only

    enyone help me use tool leveledit

    i alwasy bugtap

    i done decrypt all file .*RCC

    error.png

  7. #682
    Account Upgraded | Title Enabled! budhabils is offline
    MemberRank
    Jul 2008 Join Date
    Ho Chi Minh VNLocation
    245Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by baby011528 View Post
    use administrator run it or remove hs from source
    same problem

    crc scan iprotect

    help T_Tuntitled.jpg

  8. #683
    Member ataniso21 is offline
    MemberRank
    Dec 2015 Join Date
    ANY WHERELocation
    51Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Is The Premium points working on this client?

  9. #684
    Account Upgraded | Title Enabled! budhabils is offline
    MemberRank
    Jul 2008 Join Date
    Ho Chi Minh VNLocation
    245Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by budhabils View Post
    same problem

    crc scan iprotect

    help t_tuntitled.jpg
    solve ^_^

  10. #685
    Account Upgraded | Title Enabled! budhabils is offline
    MemberRank
    Jul 2008 Join Date
    Ho Chi Minh VNLocation
    245Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by caspian0 View Post
    thanks man .. you really help.. cheers


    TOP TEN BUTTON NOT SHOWING RANK
    ANY ONE KNOWS HOW TO ENABLE IT?
    WHAT CPP OR h TO BE EDIT IN SOURCE CODE?
    OR GUI PROBLEM?

    - - - Updated - - -

    Quote Originally Posted by Mustafa5 View Post
    @grandran, top 10 is already included the source, you just need to uncomment those lines
    WHERE OR WHAT CPP OR h TO EDIT THIS?
    TIA ^_^

  11. #686
    Ì lövê ¥öµ! Fusion7 is offline
    MemberRank
    Jun 2009 Join Date
    MalaysiaLocation
    1,923Posts

    Re: Urban Gaming Client/Database/Source Code Only

    any one encounter skill cant activate?

  12. #687
    Ì lövê ¥öµ! Fusion7 is offline
    MemberRank
    Jun 2009 Join Date
    MalaysiaLocation
    1,923Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by edwinc3020 View Post
    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 - - -



    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.
    any tips for " dwCharID is missing in structure "STWP_RANK" ??

  13. #688
    Enthusiast Adriane2014 is offline
    MemberRank
    Mar 2019 Join Date
    43Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Anyone here fixed the contribution points rolls back to the same value after u bought items from contribution shop when you relogin?

  14. #689
    Account Upgraded | Title Enabled! budhabils is offline
    MemberRank
    Jul 2008 Join Date
    Ho Chi Minh VNLocation
    245Posts

    Re: Urban Gaming Client/Database/Source Code Only

    Quote Originally Posted by Adriane2014 View Post
    Anyone here fixed the contribution points rolls back to the same value after u bought items from contribution shop when you relogin?
    Check your DataBase ^_^

  15. #690
    Account Upgraded | Title Enabled! aizen00 is offline
    MemberRank
    Feb 2019 Join Date
    512Posts

    Re: Urban Gaming Client/Database/Source Code Only

    netserverlib . s_odbcGameSave and anything related to character you find it there .
    Quote Originally Posted by Adriane2014 View Post
    Anyone here fixed the contribution points rolls back to the same value after u bought items from contribution shop when you relogin?



Advertisement