This commit is contained in:
lenheart
2024-10-11 23:56:27 +08:00
parent 91ff5af4f1
commit e82c5ceee3
24 changed files with 2033 additions and 36 deletions

View File

@@ -599,4 +599,9 @@ function User::SendItemMail(UID, CID, ItemList, title, content) {
SUser.Send(Pack);
Pack.Delete();
}
}
//道具是否被锁
function User::CheckItemLock(Type, Slot) {
return Sq_CallFunc(S_Ptr("0x8646942"), "int", ["pointer", "int", "int"], this.C_Object, Type, Slot);
}