Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

EP9 Same as Bubu Shared

Experienced Elementalist
Joined
Jul 27, 2014
Messages
227
Reaction score
20
fix free pk and bug click at windows


Did you fix this email? When you login attendance and get reward from email
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jul 23, 2019
Messages
18
Reaction score
1
1688373926664 - EP9 Same as Bubu Shared - RaGEZONE Forums

I'll open SchoolWars with CaptureTheFlag. i am a beginner
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Jul 31, 2021
Messages
34
Reaction score
2
Focus in Lib_Client and libclient ui
Sorry to disturb your time I have edited FreePK according to this folder. I found some errors. Do I have to go and edit other Lib_ files too?
 
Joined
Feb 6, 2019
Messages
581
Reaction score
170
for those who are looking for the fix in clicking window and character is moving

GLCharacter.cpp

look for
C++:
    BOOL bCharMoveBlock = ( NSGUI::IsCharMoveAllBlock() || NSGUI::IsCharMoveBlock() );
    if ( bCharMoveBlock )
    {
        //DxCursor::GetInstance().SetCursorType(EMCS_NORMAL);
        CCursor::GetInstance().SetCursorType(CURSOR_NORMAL);
        DxViewPort::GetInstance().SetHandling ( false );
       // return S_FALSE;
    }

change to:

C++:
    BOOL bCharMoveBlock = ( NSGUI::IsCharMoveAllBlock() || NSGUI::IsCharMoveBlock() );
    if ( bCharMoveBlock )
    {
        //DxCursor::GetInstance().SetCursorType(EMCS_NORMAL);
        CCursor::GetInstance().SetCursorType(CURSOR_NORMAL);
        DxViewPort::GetInstance().SetHandling ( false );
        return S_FALSE;
    }
 
Banned
Banned
Joined
May 7, 2019
Messages
132
Reaction score
44
Hello can anyone help me to fix this? thank you

Untitled - EP9 Same as Bubu Shared - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Oct 1, 2019
Messages
91
Reaction score
54
Can I see your x axis and y axis for gui email and pk rank window
uiinnercfg01.xml
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="632" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>
change to :
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="407" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>
 
Experienced Elementalist
Joined
Jul 27, 2014
Messages
227
Reaction score
20
uiinnercfg01.xml
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="632" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>
change to :
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="407" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>
Thanks for this
 
Newbie Spellweaver
Joined
Jul 31, 2021
Messages
34
Reaction score
2
error3 - EP9 Same as Bubu Shared - RaGEZONE Forums


Has anyone ever had something like this, how do I fix it?
 

Attachments

You must be registered for see attachments list
Experienced Elementalist
Joined
Jul 27, 2014
Messages
227
Reaction score
20
Ma
View attachment 238113

Has anyone ever had something like this, how do I fix it?
Maybe you didn't merge exact code and all and you forget add exist cpp also

uiinnercfg01.xml
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="632" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>
change to :
Code:
<CONTROL Local="Common" Id="GLOBAL_RANKING_BUTTON">
    <WINDOW_POS X="407" Y="538" W="35" H="35" />
    <TEXTURE SizeX="512" SizeY="512">charinven03.png</TEXTURE>
    <TEXTURE_POS X="105" Y="319" W="35" H="35" />
</CONTROL>



Thank you fix already now I go for auto function skill
 
Last edited:
Back
Top