Compare commits
No commits in common. "Script1.1" and "main" have entirely different histories.
|
|
@ -148,6 +148,46 @@ function L_drawMainCustomUI_All() {
|
||||||
|
|
||||||
// L_sq_GoDungeon(1504);
|
// L_sq_GoDungeon(1504);
|
||||||
|
|
||||||
|
// CargoType <- 0;
|
||||||
|
// Sq_GetExeStr_Map[21910] <- function(Index) {
|
||||||
|
// CargoType = 0;
|
||||||
|
// return 21910;
|
||||||
|
// }
|
||||||
|
// Sq_GetExeStr_Map[21911] <- function(Index) {
|
||||||
|
// CargoType = 1;
|
||||||
|
// return 21911;
|
||||||
|
// }
|
||||||
|
// Rindro_Haker.LoadHook(0xE67800, ["int", "int"],
|
||||||
|
// function(args) {
|
||||||
|
// //点击了仓库转移物品
|
||||||
|
// if (args[0] == 0x2B) {
|
||||||
|
// if (CargoType == 0) {
|
||||||
|
// printf("点击个人仓库转移物品");
|
||||||
|
// local T = {
|
||||||
|
// op = 21091001,
|
||||||
|
// type = 0,
|
||||||
|
// }
|
||||||
|
// Rindro_BaseToolClass.SendPackEx(T);
|
||||||
|
// return [0];
|
||||||
|
// }
|
||||||
|
// if (CargoType == 1) {
|
||||||
|
// printf("点击账号仓库转移物品");
|
||||||
|
// local T = {
|
||||||
|
// op = 21091001,
|
||||||
|
// type = 1,
|
||||||
|
// }
|
||||||
|
// Rindro_BaseToolClass.SendPackEx(T);
|
||||||
|
// return [0];
|
||||||
|
// }
|
||||||
|
// }
|
||||||
|
// return null;
|
||||||
|
// },
|
||||||
|
// function(args) {
|
||||||
|
// // print(666);
|
||||||
|
// // print(format("%02x", args.pop()));
|
||||||
|
// // TTTAni <- args.pop();
|
||||||
|
// return null;
|
||||||
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -697,43 +697,3 @@ class TH_CombatRankC_Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
CargoType <- 0;
|
|
||||||
Sq_GetExeStr_Map[21910] <- function(Index) {
|
|
||||||
CargoType = 0;
|
|
||||||
return 21910;
|
|
||||||
}
|
|
||||||
Sq_GetExeStr_Map[21911] <- function(Index) {
|
|
||||||
CargoType = 1;
|
|
||||||
return 21911;
|
|
||||||
}
|
|
||||||
|
|
||||||
Rindro_Haker.LoadHook(0xE67800, ["int", "int"],
|
|
||||||
function(args) {
|
|
||||||
//点击了仓库转移物品
|
|
||||||
if (args[0] == 0x2B) {
|
|
||||||
if (CargoType == 0) {
|
|
||||||
// printf("点击个人仓库转移物品");
|
|
||||||
local T = {
|
|
||||||
op = 21091001,
|
|
||||||
type = 0,
|
|
||||||
}
|
|
||||||
Rindro_BaseToolClass.SendPackEx(T);
|
|
||||||
return [0];
|
|
||||||
}
|
|
||||||
if (CargoType == 1) {
|
|
||||||
// printf("点击账号仓库转移物品");
|
|
||||||
local T = {
|
|
||||||
op = 21091001,
|
|
||||||
type = 1,
|
|
||||||
}
|
|
||||||
Rindro_BaseToolClass.SendPackEx(T);
|
|
||||||
return [0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
},
|
|
||||||
function(args) {
|
|
||||||
return null;
|
|
||||||
});
|
|
||||||
Loading…
Reference in New Issue