OsirisAndExtra icon indicating copy to clipboard operation
OsirisAndExtra copied to clipboard

New watermark

Open gr1ndy opened this issue 2 years ago β€’ 16 comments

ss: image

gr1ndy avatar Feb 22 '23 11:02 gr1ndy

color is currently hardcoded, you can just make a color picker in menu and add it in config files if u want to make it have a specific color

gr1ndy avatar Feb 22 '23 11:02 gr1ndy

now all pasters can paste this into their epic p2c

JannesBonk avatar Feb 22 '23 13:02 JannesBonk

now all pasters can paste this into their epic p2c

image

this u?

gr1ndy avatar Feb 22 '23 13:02 gr1ndy

now all pasters can paste this into their epic p2c

image

this u?

i dont own a p2c 😎 neither will i use this

JannesBonk avatar Feb 22 '23 16:02 JannesBonk

now all pasters can paste this into their epic p2c

image this u?

i dont own a p2c 😎 neither will i use this

image πŸ’€

gr1ndy avatar Feb 22 '23 17:02 gr1ndy

now all pasters can paste this into their epic p2c

image this u?

i dont own a p2c 😎 neither will i use this

image πŸ’€

still,nobody paid for it

JannesBonk avatar Feb 22 '23 17:02 JannesBonk

now all pasters can paste this into their epic p2c

image this u?

i dont own a p2c 😎 neither will i use this

image πŸ’€

still,nobody paid for it

cuz nobody in the right mind would pay 500 e for an osiris paste 🀣

gr1ndy avatar Feb 22 '23 20:02 gr1ndy

now all pasters can paste this into their epic p2c

image this u?

i dont own a p2c 😎 neither will i use this

image πŸ’€

still,nobody paid for it

cuz nobody in the right mind would pay 500 e for an osiris paste 🀣

but its still free

JannesBonk avatar Feb 23 '23 05:02 JannesBonk

Like this :} :thumbsup:

VegifZyx1336 avatar Feb 24 '23 15:02 VegifZyx1336

Like this :} πŸ‘

youre welcome meth addict vegif

gr1ndy avatar Feb 24 '23 17:02 gr1ndy

cool but it kinda looks like some shitty russian antiaim lua for neverlose lol

Smellon69 avatar Feb 28 '23 22:02 Smellon69

@gr1ndy This way we can display localtime. (based on clock clantag) The problem is it won't render properly. You see watermark for like 0,5 sec and disappears for an other 0,5 sec. Would be insane if u can figure it out. I tried while loop but game freezed.

std::string cheatname, username, build, zsazsa;

char* user = getenv("username");
cheatname = "Osiris ";
username = user;

static auto lastTime = 0.0f;

    if (memory->globalVars->realtime - lastTime < 1.0f)
        return;

    const auto time = std::time(nullptr);
    const auto localTime = std::localtime(&time);
    char s[11];
    s[0] = '\0';
    snprintf(s, sizeof(s), "%02d:%02d:%02d", localTime->tm_hour, localTime->tm_min, localTime->tm_sec);
    lastTime = memory->globalVars->realtime;
    zsazsa = s, s;
    

#if DEBUG build = "[beta]"; #endif build = "[release]";

// watermark text
auto text = std::string(cheatname + build + " | " + username + " | " + zsazsa).c_str();

wirekuro avatar Mar 16 '23 20:03 wirekuro

I tried while loop but game freezed. πŸ’€ but whatever. Imma give you a live time tip. Use debugger.

Xsintashi avatar Mar 16 '23 22:03 Xsintashi

I tried while loop but game freezed. πŸ’€ but whatever. Imma give you a live time tip. Use debugger.

I have actually no idea what am I doing here☠️ I started learning programming half year ago and im writing useless programs in java ☠️☠️

wirekuro avatar Mar 17 '23 04:03 wirekuro

@gr1ndy This way we can display localtime. (based on clock clantag) The problem is it won't render properly. You see watermark for like 0,5 sec and disappears for an other 0,5 sec. Would be insane if u can figure it out. I tried while loop but game freezed.

std::string cheatname, username, build, zsazsa;

char* user = getenv("username");
cheatname = "Osiris ";
username = user;

static auto lastTime = 0.0f;

    if (memory->globalVars->realtime - lastTime < 1.0f)
        return;

    const auto time = std::time(nullptr);
    const auto localTime = std::localtime(&time);
    char s[11];
    s[0] = '\0';
    snprintf(s, sizeof(s), "%02d:%02d:%02d", localTime->tm_hour, localTime->tm_min, localTime->tm_sec);
    lastTime = memory->globalVars->realtime;
    zsazsa = s, s;

#if DEBUG build = "[beta]"; #endif build = "[release]";

// watermark text
auto text = std::string(cheatname + build + " | " + username + " | " + zsazsa).c_str();

i've thought of that when i made it but realised it wont work anyways so i gave up lmao

gr1ndy avatar Mar 18 '23 13:03 gr1ndy

    if (memory->globalVars->realtime - lastTime < 1.0f)
        return;

Think about what this does

notgoodusename avatar Mar 18 '23 13:03 notgoodusename