11 lines
377 B
TypeScript
11 lines
377 B
TypeScript
export default function wanteds(globalData: IGlobalData) {
|
|
var browser = mp.browsers.new("package://assets/html/wanteds/index.html");
|
|
|
|
mp.events.add("SERVER:SetWanteds", (count: number) => {
|
|
browser.execute(`setWanteds(${count});`);
|
|
});
|
|
|
|
mp.events.add("SERVER:SetWantedFlash", (flash) => {
|
|
browser.execute(`setFlashing(${flash});`);
|
|
});
|
|
} |