[WIP] Get SRO Source Code - by re-writing it

11/12/2020 15:57 Devsome#256
Quote:
Originally Posted by paul_0 View Post
same here
Quote:
Originally Posted by florian0 View Post
Check CIFMainPopup::OnClick_BtnQuest
[Only registered and activated users can see links. Click Here To Register...].
11/20/2020 08:01 hoangphan7#257
Hi @[Only registered and activated users can see links. Click Here To Register...]!

Why i can't add new variable into ICPlayer.h
How can i add newone.
Thank's you!

[Only registered and activated users can see links. Click Here To Register...]
11/20/2020 10:56 SubZero**#258
Quote:
Originally Posted by hoangphan7 View Post
Hi @[Only registered and activated users can see links. Click Here To Register...]!

Why i can't add new variable into ICPlayer.h
How can i add newone.
Thank's you!

[Only registered and activated users can see links. Click Here To Register...]
comment thoes
Code:
    //BEGIN_FIXTURE()
    //    ENSURE_SIZE(0x2118)

    //    ENSURE_OFFSET(m_charname, 0x084C)
    //    ENSURE_OFFSET(m_level, 0x0868)
    //    ENSURE_OFFSET(m_exp_current, 0x0870)
    //    ENSURE_OFFSET(m_skillpoint_progress, 0x0878)
    //    ENSURE_OFFSET(m_str_stat, 0x087C)
    //    ENSURE_OFFSET(m_int_stat, 0x087E)
    //    ENSURE_OFFSET(m_skillpoint, 0x0880)
    //    ENSURE_OFFSET(m_statpoint_available, 0x0884)

    //END_FIXTURE()

    //RUN_FIXTURE(CICPlayer)
11/20/2020 17:42 hoangphan7#259
Quote:
Originally Posted by Zoro.Sro View Post
comment thoes
Code:
    //BEGIN_FIXTURE()
    //    ENSURE_SIZE(0x2118)

    //    ENSURE_OFFSET(m_charname, 0x084C)
    //    ENSURE_OFFSET(m_level, 0x0868)
    //    ENSURE_OFFSET(m_exp_current, 0x0870)
    //    ENSURE_OFFSET(m_skillpoint_progress, 0x0878)
    //    ENSURE_OFFSET(m_str_stat, 0x087C)
    //    ENSURE_OFFSET(m_int_stat, 0x087E)
    //    ENSURE_OFFSET(m_skillpoint, 0x0880)
    //    ENSURE_OFFSET(m_statpoint_available, 0x0884)

    //END_FIXTURE()

    //RUN_FIXTURE(CICPlayer)
No no Bro. I need use ENSURE_OFFSET to define new variance. Like current hp mp, skill slotbar. etc...
----------
Solved. Thank's
11/24/2020 14:57 Laag#82#260
Quote:
Originally Posted by hoangphan7 View Post
Hi @[Only registered and activated users can see links. Click Here To Register...]!

Why i can't add new variable into ICPlayer.h
How can i add newone.
Thank's you!

[Only registered and activated users can see links. Click Here To Register...]
Hello,


Why do we add a variable in?
11/24/2020 17:46 hoangphan7#261
Quote:
Originally Posted by khaleed2010 View Post
Hello,


Why do we add a variable in?
We will define new offset. :D
We can reading skill ID in skill slotbar, search ItemID in inventory etc :D
11/25/2020 05:21 LegendarySouL#262
how build it with cmake ? explan ..thanks
11/25/2020 18:15 SubZero**#263
Quote:
Originally Posted by LegendarySouL View Post
how build it with cmake ? explan ..thanks
Did you even read the thread or just a spammer ?

[Only registered and activated users can see links. Click Here To Register...]
12/05/2020 10:03 hoangphan7#264
Hi!
How to move Dev_Kit src to new directory. I can't re-build it after move to new directory or rename directory contain src
12/05/2020 10:36 NorseGodTyr#265
Quote:
Originally Posted by hoangphan7 View Post
Hi!
How to move Dev_Kit src to new directory. I can't re-build it after move to new directory or rename directory contain src
copy paste the files
remove inside folder [helpers] all files [not the .bat files]
edit CMakeLists.txt and add your header & Source files into source\DevKit_DLL and in source\libs\ClientLib
go back to folder helpers and use make_project_vs2010.bat done
12/09/2020 01:01 Mc-Diesel#266
Im Trying to change title color by filter and im using this method it works for single char but others still see the original title any hint from where i can do that
here is the code

Quote:
void CICPlayer::OnRender()
{
std::map<std::wstring, int>TitleColors;
std::map<std::wstring, int>::iterator it;
TitleColors.insert(std:: pair<std::wstring, int>(g_pCICPlayer->m_charname.c_str(), 0xff004b));
CLASSLINK_LOOP_BEGIN(CICharactor)
it = TitleColors.find(obj->GetName().c_str());
if (it != TitleColors.end())
obj->UpdateTitleColor(it->second);
printf("Rendering CICPlayer with UniqueID (0x%04X), Name (%s), Pointer (0x%08X).\n", this->UniqueID, std::string(g_pCICPlayer->m_charname.begin(), g_pCICPlayer->m_charname.end()).c_str(), this);
12/09/2020 04:33 thaidu0ngpr0#267
Quote:
Originally Posted by Mc-Diesel View Post
Im Trying to change title color by filter and im using this method it works for single char but others still see the original title any hint from where i can do that
here is the code
you have to send this color to all char in server like global chat
12/09/2020 13:48 Mc-Diesel#268
Quote:
Originally Posted by thaidu0ngpr0 View Post
you have to send this color to all char in server like global chat
so everytime single player change color must send the packet to whole ppl ?
this won't affect performance ?
12/09/2020 19:44 thaidu0ngpr0#269
Quote:
Originally Posted by Mc-Diesel View Post
so everytime single player change color must send the packet to whole ppl ?
this won't affect performance ?
i don't know
12/14/2020 22:12 LegendarySouL#270
How to move Dev_Kit src to new directory. I can't re-build it after move to new directory or rename directory contain ...