Jump to content
ahmad

hxd game exe

Recommended Posts

Helo pko!
i'm trying to put this in my game.exe
 

cbxRClickMod

i tried to add it like this
 using HxD
image.png.ac8efa3a8eef1be0108c0d0a4418f8a7.png

image.png.1aba2bce9ea3bd4f62a2f7c001d65f97.png

i want put it here in system setting
image.png.fd55085c2bd2d9d9f18c2cc29a3f82f3.png

image.png.c7b4e46c80d6378c76d05e684bd7ab12.png


but every time trying to open my game have this error

image.png.5d9832405804b4645c01f357e4c9be27.png

can some help or tell me what wrong i did?
thank

Share this post


Link to post
Share on other sites

1) You drag all Jumpers and VA-RVA links at 16 bytes

2) This dont possible with this way.

 

What you want to do?

Edited by Knight

Share this post


Link to post
Share on other sites
11 hours ago, Knight said:

1) You drag all Jumpers and VA-RVA links at 16 bytes

2) This dont possible with this way.

 

What you want to do?

i want allow use  item with right click
like this
 

labGame = UI_CreateCompent( frmGame, LABELEX_TYPE, "labGame", 30, 10, 12, 146 )
UI_SetCaption( labGame, "R-Click Item" )
UI_SetTextColor( labGame, COLOR_BLACK )
UI_SetLabelExFont( labGame, DEFAULT_FONT, TRUE, COLOR_WHITE )
UI_SetHint(labGame,"Use an item with right click")

-- checkbox
chkHelpmodel1 = UI_CreateCompent( frmGame, CHECK_TYPE, "chkHelpmodel1", 10, 10, 102, 146 )
UI_LoadImage( chkHelpmodel1, "texture/ui/QQ2.tga", UNCHECKED, 10, 10, 40, 231 )
UI_LoadImage( chkHelpmodel1, "texture/ui/QQ2.tga", CHECKED, 10, 10, 52, 231 )

-- Hide
labGame = UI_CreateCompent( frmGame, LABELEX_TYPE, "labGame", 30, 10, 115, 146 )
UI_SetCaption( labGame, "Off" )
UI_SetTextColor( labGame, COLOR_BLACK )
UI_SetLabelExFont( labGame, DEFAULT_FONT, TRUE, COLOR_WHITE )

-- checkbox
chkHelpmodel2 = UI_CreateCompent( frmGame, CHECK_TYPE, "chkHelpmodel2", 10, 10, 147, 146 )
UI_LoadImage( chkHelpmodel2, "texture/ui/QQ2.tga", UNCHECKED, 10, 10, 40, 231 )
UI_LoadImage( chkHelpmodel2, "texture/ui/QQ2.tga", CHECKED, 10, 10, 52, 231 )

-- Display
labGame = UI_CreateCompent( frmGame, LABELEX_TYPE, "labGame", 30, 10, 162, 146 )
UI_SetCaption( labGame, "On" )
UI_SetTextColor( labGame, COLOR_BLACK )
UI_SetLabelExFont( labGame, DEFAULT_FONT, TRUE, COLOR_WHITE )

-- checkbox group
cbxRClickMode = UI_CreateCompent( frmGame, CHECK_GROUP_TYPE, "cbxRClickMode", 0, 0, 0, 0 )
UI_AddGroupBox( cbxRClickMod, chkHelpmodel1 )
UI_AddGroupBox( cbxRClickMod, chkHelpmodel2 )

cbxRClickMode

then how i should do it?

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...