This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const autoPlay = () => { | |
setInterval(() => MD.dig(200, 200)); | |
setInterval(() => { | |
MD.combineGems(); | |
for (let index = 0; index < 6; index++) { | |
MD.clickMage(index); | |
} | |
}, 200); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Newtonsoft.Json; | |
using Newtonsoft.Json.Serialization; | |
using System.Data.SqlClient; | |
using System.Net.Http; | |
using System.Threading.Tasks; | |
using Dapper; | |
using DigitalCoders.Domain; | |
using DigitalCoders.CustomRepository; | |
using DigitalCoders.WhatsAppProviderAPI.Domain; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setInterval(() =>game.tick(), 0.1); | |
alloyCrafting = setInterval(() => { | |
gamePage.craftAll('alloy'); | |
}, 1 * 1000); | |
autoHunt = setInterval(() => { | |
const catpower = gamePage.resPool.get('manpower'); | |
if (catpower.value / catpower.maxValue > 0.95) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createAction, props } from '@ngrx/store'; | |
export const login = createAction('[Auth] Login'); | |
export const logout = createAction('[Auth] Logout'); | |
export const logoutSuccess = createAction('[Auth] Logout success'); | |
export const logoutError = createAction('[Auth] Logout error', props<{ error: any }>()); |