This commit is contained in:
lenheart
2025-04-21 13:36:35 +08:00
parent eeb773e723
commit 2ef9cfef42
87 changed files with 2134 additions and 765 deletions

View File

@@ -0,0 +1,11 @@
{
"ProjectName": "修复卡NPC商店道具",
"ProjectDescribe": "修复了客户端通过BUG卡NPC商店道具的问题",
"ProjectAuthor": "倾泪寒",
"ProjectVersion": 1.0,
"ProjectConfig": "",
"ProjectFiles": [
"修复卡NPC商店道具.nut"
],
"ProjectRunFunc": "_Dps_RepairCardNpcStoreProps_Main_"
}

View File

@@ -0,0 +1,12 @@
function _Dps_RepairCardNpcStoreProps_Main_()
{
Cb_BuyItem_Get_Data_Leave_Func["_DPS_RepairCardNpcStoreProps_"] <- function (args)
{
if(NativePointer(args[3]).add(156).readInt() < 0){
return 10;
}
}
}