Jump to content
  • 0

Help Codigo Shop Offline .asm


Naelson

Question

;   This file is part of ADL2.

;   ADL2 is free software: you can redistribute it and/or modify
;   it under the terms of the GNU General Public License as published by
;   the Free Software Foundation, either version 3 of the License, or
;   (at your option) any later version.

;   ADL2 is distributed in the hope that it will be useful,
;   but WITHOUT ANY WARRANTY; without even the implied warranty of
;   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;   GNU General Public License for more details.

;   You should have received a copy of the GNU General Public License
;   along with ADL2.  If not, see <http://www.gnu.org/licenses/>.

;	You May Not Make Commercial Use of any of our content, and any kind
;	of newer implementations will be need to be shared and commited.
include windows.inc

extrn ?CanSellItem@COfflineShop@@SA_NPEAVCItem@@@Z:proc

extrn									CanSellItem:proc
.code

.data

ManagePrivateStoreFilterHook proc
     mov rax, [rcx+30h]
     cmp dword [rax+70h],39h
     jnz @F
     ret
   @@:
     push rax
     push rcx
     sub rsp, 20h
     call CanSellItem
     add rsp, 20h
     cmp rax, 0
     pop rcx
     pop rax
     ret
ManagePrivateStoreFilterHook endp
end

Someone there has conhecimendo where I am failing

I am new to programming

I can not find the syntax error

HanBO87.png

Edited by Jamba
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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...