JS-скрипт Пишу простые скрипты за спасибо

Статус
В этой теме нельзя размещать новые ответы.
Забаненный
Статус
Оффлайн
Регистрация
12 Сен 2020
Сообщения
59
Реакции[?]
16
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
так как прошлую тему удалили - создал эту
если скрипты сложные - пишите в лс в вк

префикс такой потому что
Посмотреть вложение 110031
ку напиши мне скрипт который будет показывать велосити снизу, а также iq противника пикающего на ешке(е55 наверное)
 
Бульдозер
Эксперт
Статус
Оффлайн
Регистрация
18 Июл 2019
Сообщения
1,232
Реакции[?]
507
Поинты[?]
0
ку напиши мне скрипт который будет показывать велосити снизу, а также iq противника пикающего на ешке(е55 наверное)
у меня уже есть js на мувмент которая показывает график скорости
вот держи
если нужно - могу только график вырезать

JavaScript:
/**
*
* Title: Quick stop
* Author: april#0001
* Description: A custom quick stop system for Onetap.
*
*/

//region dependencies

/**
 * @title BetterUI
 * @version 1.0.0
 * @description A better UI system for Onetap
 */

var menu_elements_t = [];
var menu_c = [];
const menu_spacer = "                                                                                  ";

/**
 * Creates a new menu label
 *
 * @param label {string}
 */
menu_c.label = function(label)
{
    // Creates the label
    UI.AddLabel(label);
}

/**
 * Creates a new menu element
 *
 * @param func {function}
 * @param name {string}
 * @param label {string},
 * @param properties {array}
 */
menu_c.call = function(func, name, label, properties)
{
    // If the label isn't unique
    if (label in menu_elements_t)
        throw new Error("[Menu] The label must be unique!");

    // Get properties
    const final_name = name + menu_spacer + label;
    var final_props = [final_name];
    const element_info_t = {
        name: name,
        label: label,
        properties: properties
    };

    // If our properties aren't null, then pack them together.
    if (properties !== null)
    {
        for (var i = 0; i < properties.length; i++)
        {
            final_props.push(properties[i]);
        }
    }

    // Create our menu element and return properties
    func.apply(null, final_props);
    menu_elements_t[label] = element_info_t;
    return label;
}

/**
 * Gets the value of a menu element
 *
 * @param label {string}
 * @return {any}
 */
menu_c.get = function(label)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Returns the element's value
    return UI.GetValue("Misc", "JAVASCRIPT", "Script items", final_name);
}

/**
 * Gets the value of a menu element
 *
 * @param label {string}
 * @return {any}
 */
menu_c.get_hotkey = function(label)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Returns the element's value
    return UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", final_name);
}

/**
 * Sets the value of a menu element
 *
 * @param label {string}
 * @param value {any}
 */
menu_c.set = function(label, value)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Set the element's value
    UI.SetValue("Misc", "JAVASCRIPT", "Script items", final_name, value);
}

/**
 * Changes the visibility of a menu elements
 *
 * @param label {string}
 * @param visible {boolean}
 */
menu_c.visibility = function(label, visible)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Change the element's visibility
    UI.SetEnabled("Misc", "JAVASCRIPT", "Script items", final_name, visible);
}

/**
* @title Vector3D
* @version 1.0.0
* @description A simple 3D vector library
*/

var vec3 = {__index: "vec3"};

vec3.new = function(x, y, z)
{
    if (x instanceof Array)
        return {
            x: x[0],
            y: x[1],
            z: x[2]
        };

    return {
        x: x,
        y: y,
        z: z
    }
}

vec3.unpack = function(self)
{
    return [self.x, self.y, self.z];
}

vec3.add = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x + vec2,
            y: vec.y + vec2,
            z: vec.z + vec2
    }

    return {
        x: vec.x + vec2.x,
        y: vec.y + vec2.y,
        z: vec.z + vec2.z
    }
}

vec3.sub = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x - vec2,
            y: vec.y - vec2,
            z: vec.z - vec2
    }

    return {
        x: vec.x - vec2.x,
        y: vec.y - vec2.y,
        z: vec.z - vec2.z
    }
}

vec3.multiply = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x * vec2,
            y: vec.y * vec2,
            z: vec.z * vec2
    }

    return {
        x: vec.x * vec2.x,
        y: vec.y * vec2.y,
        z: vec.z * vec2.z
    }
}

vec3.divide = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x / vec2,
            y: vec.y / vec2,
            z: vec.z / vec2
    }

    return {
        x: vec.x / vec2.x,
        y: vec.y / vec2.y,
        z: vec.z / vec2.z
    }
}

vec3.length = function(self)
{
    return Math.sqrt((self.x * self.x) + (self.y * self.y) + (self.z * self.z));
}

vec3.distance = function(self, destination)
{
    return vec3.length(vec3.sub(destination, self));
}

const clamp = function(v, min, max)
{
    return Math.min(Math.max(v, min), max);
}

//endregion

//region main

// Create our main variables
// Regarding the tracing system
const max_radius = Math.PI * 2;
const step = max_radius / 24;

// Regarding functions status
var unduck = false;
var is_lj = false;

// Regarding the chart
var last_log = 0;
var last_delta = 0;
var last_color = null;
var velocity_data = [];

//endregion

//region menu

// Create our menu elements
const jb = menu_c.call(UI.AddHotkey, "Automatic jumpbug", "mv_jumpbug", null);
const cb = menu_c.call(UI.AddHotkey, "Automatic crouchbug", "mv_crouchbug", null);
const lj = menu_c.call(UI.AddHotkey, "Automatic longjump", "mv_longjump", null);
const info = menu_c.call(UI.AddCheckbox, "Draw movement info", "mv_showinfo", null);
const info_offset = menu_c.call(UI.AddSliderInt, "Info chart offset", "mv_showinfo_offset", [0, 500]);

//endregion

//region function


/**
 * Handles the jumpbug and crouchbug feature
 *
 * @param  {boolean} should_jump Specifies if we should crouchbug or jumpbug
 * @return {void}
 */
function do_jump_bug(should_jump)
{
    // Gets our local player
    const player = Entity.GetLocalPlayer();

    // If our player isn't valid or if we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // If we're not using any of the crouchbug related features, return
    if (!menu_c.get_hotkey(jb) && !menu_c.get_hotkey(cb))
    {
        // Check if we we're ine middle of a crouchbug when we stopped pressing the crouchbug/jumpbug hotkey
        // This will prevent you to duck infinitely and having to reset it manually
        if (unduck)
        {
            // Resets the duck state
            unduck = false;
            Cheat.ExecuteCommand("-duck");
        }

        return;
    }

    // If we performed a crouchbug/jumpbug and we need to disable the crouch...
    if (unduck)
    {
        // Then disable it!
        unduck = false;
        Cheat.ExecuteCommand("-duck");
    }

    // Get our properties
    const flags = Entity.GetProp(player, "CBasePlayer", "m_fFlags");
    const origin = vec3.new(Entity.GetProp(player, "CBaseEntity", "m_vecOrigin"));
    const vel = vec3.new(Entity.GetProp(player, "CBasePlayer", "m_vecVelocity[0]"));

    // Fix our origin vector
    vel = vec3.multiply(vel, vec3.new(Globals.TickInterval(), Globals.TickInterval(), 0));
    origin = vec3.add(origin, vel);

    // If we're on the ground...
    if (flags & 1)
    {
        // And we're pressing the jumpbug hotkey...
        if (should_jump)
        {
            // Then jump!
            UserCMD.ForceJump();
        }

        // Otherwise, just return, since our crouchbug was already performed.
        return;
    }

    // Cycles through a circle, creating 24 traces around you.
    for (var i = 0; i < max_radius; i+=step)
    {
        // Gets the vectors the trace will be based upon.
        const start = vec3.add(origin, vec3.new(Math.cos(i) * 17, Math.sin(i) * 17, 0));
        const end = vec3.add(origin, vec3.new(Math.cos(i) * 17, Math.sin(i) * 17, -9));

        // Do the tracing
        const trace_t = Trace.Line(player, vec3.unpack(start), vec3.unpack(end));

        // If we're in the middle of the air then...
        if (trace_t[1] !== 0 && trace_t[1] !== 1)
        {
            // Duck and update ducking status
            Cheat.ExecuteCommand("+duck");
            unduck = true;
            return;
        }
    }
}


/**
 * Handles the long jump feature
 *
 * @return {void}
 */
function do_long_jump()
{
    // Get our local player
    const player = Entity.GetLocalPlayer();

    // If our local player isn't valid or if we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // Get our flags
    const flags = Entity.GetProp(player, "CBasePlayer", "m_fFlags");

    // If we're not pressing the longjump hotkey...
    if (!menu_c.get_hotkey(lj))
    {
        // And we're in the middle of a longjump...
        if (is_lj)
        {
            // Reset the longjump status and disable features.
            is_lj = false;
            Cheat.ExecuteCommand("-jump");
            UI.SetValue("Misc", "Movement", "Auto strafe", 0);
        }

        // Return since we're not using the feature.
        return;
    }

    // If we're on the ground...
    if (flags & 1)
    {

        // And we were in the middle of a longjump...
        if (is_lj)
        {
            // Reset the longjump status and disable features.
            is_lj = false;
            Cheat.ExecuteCommand("-jump");
            UI.SetValue("Misc", "Movement", "Auto strafe", 0);
            return;
        }

        // Otherwise, if we're on the air...
    } else {

        // And we're not on the longjump status...
        if (!is_lj)
        {
            // Enable the longjump status and the features.
            is_lj = true;
            UI.SetValue("Misc", "Movement", "Auto strafe", 3);
            return;
        }

        // Keep IN_JUMP to ensure that the auto-strafer will work.
        Cheat.ExecuteCommand("+jump");
    }

}


/**
 * Gets the color of our velocity indicator based on the latest velocity delta
 *
 * @param {number} delta
 */
const get_delta_color = function(delta)
{
    // Rounds our delta to get more consistent results
    delta = Math.round(delta);

        // Who the f*ck made this code?!
        // If the delta is positive, then set the color to red (confusing, right? I thought that too).
        if (delta > 0)
        {
            delta = [255, 200, 205, 200];
    } else
        // If the delta is negative, then set the color to green.
        if (delta < 0)
        {
            delta = [220, 255, 200, 200];
    } else
        // If there's no delta, then set the color to yellow.
        if (delta > -1 && delta < 1)
        {
            delta = [255, 255, 200, 200];
        }

    // Return the final color
    return delta;
}


/**
 * Draws the velocity chart
 *
 * @return {void}
 */
function do_velocity_info()
{
    // Get the local player
    const player = Entity.GetLocalPlayer();

    // If our local player ins't valid or we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // If our velocity chart isn't enabled, return
    if (!menu_c.get(info))
        return;

    // Get drawing properties
    const x = Render.GetScreenSize()[0], y = Render.GetScreenSize()[1] + menu_c.get(info_offset);

    const vec = Entity.GetProp(player, "CBasePlayer", "m_vecVelocity[0]");
    const velocity = Math.sqrt(vec[0] * vec[0] + vec[1] * vec[1]);
    const in_air = Entity.GetProp(player, "CBasePlayer", "m_fFlags") & 1 || Entity.GetProp(player, "CBasePlayer", "m_fFlags") & 17;

    // Draw the outter part of the chart
    Render.String(x / 2, y / 2 + 150, 1, Math.round(velocity).toString(), get_delta_color(last_delta), 4);
    Render.String(x / 2 + 1, y / 2 + 185, 1, "u/s", [225, 225, 225, 225], 2);

    Render.Line(x / 2 - 100, y / 2 + 25, x / 2 - 100, y / 2 + 145, [100, 100, 100, 125]);
    Render.Line(x / 2 - 115, y / 2 + 130, x / 2 + 95, y / 2 + 130, [100, 100, 100, 125]);

    // Update our velocity data every tick
    if (Globals.Curtime() - last_log > Globals.TickInterval())
    {
        // Cache our current time to do the next timer calculations..
        last_log = Globals.Curtime();

        // And return data.
        velocity_data.unshift([velocity, in_air]);
    }

    // If we didn't gather enough data to draw a chart, draw an indicator and return
    if (velocity_data.length < 2)
    {
        Render.String(x / 2, 120, 1, "CREATING CHART...", [200, 200, 200, Math.sin((Globals.Realtime() % 3) * 4) * (255 / 2 - 1) + 255 / 2], 12);
        return;
    }

    // If we reached our data's array limit, then remove the last value.
    if (velocity_data.length > 40)
        velocity_data.pop();

    // Loops for each value inside our velocity data's array.
    for (var i = 0; i < velocity_data.length - 1; i++)
    {
        // Get the info necessary to draw the chart
        const cur = velocity_data[i][0];
        const next = velocity_data[i + 1][0];
        const landed = velocity_data[i][1] && !velocity_data[i + 1][1];

        // We only need to update the velocity delta once, so do it only if the index is equal 0
        if (i === 0)
            last_delta = next - cur;

        // Render each line of the chart
        Render.Line(x / 2 + 90 - (i - 1) * 5, y / 2 + 130 - (clamp(cur, 0, 450) * 75 / 320), x / 2 + 90 - i * 5, y / 2 + 130 - (clamp(next, 0, 450) * 75 / 320), [200, 200, 200, 255]);

        // If we landed in our current tick then...
        if (landed)
        {
            // Draw the velocity on the chart for that extra info which will make you feel unique and cool when making your mediocre ass shadowplay videos!
            Render.String(x / 2 + 100 - (i + 1) * 5, y / 2 + 115 - (clamp(next, 0, 450) * 75 / 320), 0, Math.round(next).toString(), [255, 200, 200, 255], 3);
        }
    }
}


/**
 * Where our CreateMove functions are called
 *
 * @return {void}
 */
function on_create_move()
{
    // Check if we should jumpbug or crouchbug
    const should_jump = menu_c.get_hotkey(jb);

    // Do CreateMove features
    do_jump_bug(should_jump);
    do_long_jump();
}


/**
 * Resets the chart data whenever we changed between servers/maps
 *
 * @return {void}
 */
function reset()
{
    // Reset all data in order to not glitch out.
    last_log = Globals.Curtime();
    velocity_data = [];
}

//endregion

//region callbacks

// Callback our functions!
Cheat.RegisterCallback("CreateMove", "on_create_move");
Cheat.RegisterCallback("Draw", "do_velocity_info");
Cheat.RegisterCallback("player_connect_full", "reset");

//endregion
 
Забаненный
Статус
Оффлайн
Регистрация
12 Сен 2020
Сообщения
59
Реакции[?]
16
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
у меня уже есть js на мувмент которая показывает график скорости
вот держи
если нужно - могу только график вырезать

JavaScript:
/**
*
* Title: Quick stop
* Author: april#0001
* Description: A custom quick stop system for Onetap.
*
*/

//region dependencies

/**
* @title BetterUI
* @version 1.0.0
* @description A better UI system for Onetap
*/

var menu_elements_t = [];
var menu_c = [];
const menu_spacer = "                                                                                  ";

/**
* Creates a new menu label
*
* @param label {string}
*/
menu_c.label = function(label)
{
    // Creates the label
    UI.AddLabel(label);
}

/**
* Creates a new menu element
*
* @param func {function}
* @param name {string}
* @param label {string},
* @param properties {array}
*/
menu_c.call = function(func, name, label, properties)
{
    // If the label isn't unique
    if (label in menu_elements_t)
        throw new Error("[Menu] The label must be unique!");

    // Get properties
    const final_name = name + menu_spacer + label;
    var final_props = [final_name];
    const element_info_t = {
        name: name,
        label: label,
        properties: properties
    };

    // If our properties aren't null, then pack them together.
    if (properties !== null)
    {
        for (var i = 0; i < properties.length; i++)
        {
            final_props.push(properties[i]);
        }
    }

    // Create our menu element and return properties
    func.apply(null, final_props);
    menu_elements_t[label] = element_info_t;
    return label;
}

/**
* Gets the value of a menu element
*
* @param label {string}
* @return {any}
*/
menu_c.get = function(label)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Returns the element's value
    return UI.GetValue("Misc", "JAVASCRIPT", "Script items", final_name);
}

/**
* Gets the value of a menu element
*
* @param label {string}
* @return {any}
*/
menu_c.get_hotkey = function(label)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Returns the element's value
    return UI.IsHotkeyActive("Misc", "JAVASCRIPT", "Script items", final_name);
}

/**
* Sets the value of a menu element
*
* @param label {string}
* @param value {any}
*/
menu_c.set = function(label, value)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Set the element's value
    UI.SetValue("Misc", "JAVASCRIPT", "Script items", final_name, value);
}

/**
* Changes the visibility of a menu elements
*
* @param label {string}
* @param visible {boolean}
*/
menu_c.visibility = function(label, visible)
{
    // If the label doesn't exist
    if (!(label in menu_elements_t))
        throw new Error("[Menu] This element's label doesn't exist!");

    // Get properties
    const properties = menu_elements_t[label];
    const final_name = properties.name + menu_spacer + properties.label;

    // Change the element's visibility
    UI.SetEnabled("Misc", "JAVASCRIPT", "Script items", final_name, visible);
}

/**
* @title Vector3D
* @version 1.0.0
* @description A simple 3D vector library
*/

var vec3 = {__index: "vec3"};

vec3.new = function(x, y, z)
{
    if (x instanceof Array)
        return {
            x: x[0],
            y: x[1],
            z: x[2]
        };

    return {
        x: x,
        y: y,
        z: z
    }
}

vec3.unpack = function(self)
{
    return [self.x, self.y, self.z];
}

vec3.add = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x + vec2,
            y: vec.y + vec2,
            z: vec.z + vec2
    }

    return {
        x: vec.x + vec2.x,
        y: vec.y + vec2.y,
        z: vec.z + vec2.z
    }
}

vec3.sub = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x - vec2,
            y: vec.y - vec2,
            z: vec.z - vec2
    }

    return {
        x: vec.x - vec2.x,
        y: vec.y - vec2.y,
        z: vec.z - vec2.z
    }
}

vec3.multiply = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x * vec2,
            y: vec.y * vec2,
            z: vec.z * vec2
    }

    return {
        x: vec.x * vec2.x,
        y: vec.y * vec2.y,
        z: vec.z * vec2.z
    }
}

vec3.divide = function(vec, vec2)
{
    if (vec2 instanceof Number)
        return {
            x: vec.x / vec2,
            y: vec.y / vec2,
            z: vec.z / vec2
    }

    return {
        x: vec.x / vec2.x,
        y: vec.y / vec2.y,
        z: vec.z / vec2.z
    }
}

vec3.length = function(self)
{
    return Math.sqrt((self.x * self.x) + (self.y * self.y) + (self.z * self.z));
}

vec3.distance = function(self, destination)
{
    return vec3.length(vec3.sub(destination, self));
}

const clamp = function(v, min, max)
{
    return Math.min(Math.max(v, min), max);
}

//endregion

//region main

// Create our main variables
// Regarding the tracing system
const max_radius = Math.PI * 2;
const step = max_radius / 24;

// Regarding functions status
var unduck = false;
var is_lj = false;

// Regarding the chart
var last_log = 0;
var last_delta = 0;
var last_color = null;
var velocity_data = [];

//endregion

//region menu

// Create our menu elements
const jb = menu_c.call(UI.AddHotkey, "Automatic jumpbug", "mv_jumpbug", null);
const cb = menu_c.call(UI.AddHotkey, "Automatic crouchbug", "mv_crouchbug", null);
const lj = menu_c.call(UI.AddHotkey, "Automatic longjump", "mv_longjump", null);
const info = menu_c.call(UI.AddCheckbox, "Draw movement info", "mv_showinfo", null);
const info_offset = menu_c.call(UI.AddSliderInt, "Info chart offset", "mv_showinfo_offset", [0, 500]);

//endregion

//region function


/**
* Handles the jumpbug and crouchbug feature
*
* @param  {boolean} should_jump Specifies if we should crouchbug or jumpbug
* @return {void}
*/
function do_jump_bug(should_jump)
{
    // Gets our local player
    const player = Entity.GetLocalPlayer();

    // If our player isn't valid or if we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // If we're not using any of the crouchbug related features, return
    if (!menu_c.get_hotkey(jb) && !menu_c.get_hotkey(cb))
    {
        // Check if we we're ine middle of a crouchbug when we stopped pressing the crouchbug/jumpbug hotkey
        // This will prevent you to duck infinitely and having to reset it manually
        if (unduck)
        {
            // Resets the duck state
            unduck = false;
            Cheat.ExecuteCommand("-duck");
        }

        return;
    }

    // If we performed a crouchbug/jumpbug and we need to disable the crouch...
    if (unduck)
    {
        // Then disable it!
        unduck = false;
        Cheat.ExecuteCommand("-duck");
    }

    // Get our properties
    const flags = Entity.GetProp(player, "CBasePlayer", "m_fFlags");
    const origin = vec3.new(Entity.GetProp(player, "CBaseEntity", "m_vecOrigin"));
    const vel = vec3.new(Entity.GetProp(player, "CBasePlayer", "m_vecVelocity[0]"));

    // Fix our origin vector
    vel = vec3.multiply(vel, vec3.new(Globals.TickInterval(), Globals.TickInterval(), 0));
    origin = vec3.add(origin, vel);

    // If we're on the ground...
    if (flags & 1)
    {
        // And we're pressing the jumpbug hotkey...
        if (should_jump)
        {
            // Then jump!
            UserCMD.ForceJump();
        }

        // Otherwise, just return, since our crouchbug was already performed.
        return;
    }

    // Cycles through a circle, creating 24 traces around you.
    for (var i = 0; i < max_radius; i+=step)
    {
        // Gets the vectors the trace will be based upon.
        const start = vec3.add(origin, vec3.new(Math.cos(i) * 17, Math.sin(i) * 17, 0));
        const end = vec3.add(origin, vec3.new(Math.cos(i) * 17, Math.sin(i) * 17, -9));

        // Do the tracing
        const trace_t = Trace.Line(player, vec3.unpack(start), vec3.unpack(end));

        // If we're in the middle of the air then...
        if (trace_t[1] !== 0 && trace_t[1] !== 1)
        {
            // Duck and update ducking status
            Cheat.ExecuteCommand("+duck");
            unduck = true;
            return;
        }
    }
}


/**
* Handles the long jump feature
*
* @return {void}
*/
function do_long_jump()
{
    // Get our local player
    const player = Entity.GetLocalPlayer();

    // If our local player isn't valid or if we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // Get our flags
    const flags = Entity.GetProp(player, "CBasePlayer", "m_fFlags");

    // If we're not pressing the longjump hotkey...
    if (!menu_c.get_hotkey(lj))
    {
        // And we're in the middle of a longjump...
        if (is_lj)
        {
            // Reset the longjump status and disable features.
            is_lj = false;
            Cheat.ExecuteCommand("-jump");
            UI.SetValue("Misc", "Movement", "Auto strafe", 0);
        }

        // Return since we're not using the feature.
        return;
    }

    // If we're on the ground...
    if (flags & 1)
    {

        // And we were in the middle of a longjump...
        if (is_lj)
        {
            // Reset the longjump status and disable features.
            is_lj = false;
            Cheat.ExecuteCommand("-jump");
            UI.SetValue("Misc", "Movement", "Auto strafe", 0);
            return;
        }

        // Otherwise, if we're on the air...
    } else {

        // And we're not on the longjump status...
        if (!is_lj)
        {
            // Enable the longjump status and the features.
            is_lj = true;
            UI.SetValue("Misc", "Movement", "Auto strafe", 3);
            return;
        }

        // Keep IN_JUMP to ensure that the auto-strafer will work.
        Cheat.ExecuteCommand("+jump");
    }

}


/**
* Gets the color of our velocity indicator based on the latest velocity delta
*
* @param {number} delta
*/
const get_delta_color = function(delta)
{
    // Rounds our delta to get more consistent results
    delta = Math.round(delta);

        // Who the f*ck made this code?!
        // If the delta is positive, then set the color to red (confusing, right? I thought that too).
        if (delta > 0)
        {
            delta = [255, 200, 205, 200];
    } else
        // If the delta is negative, then set the color to green.
        if (delta < 0)
        {
            delta = [220, 255, 200, 200];
    } else
        // If there's no delta, then set the color to yellow.
        if (delta > -1 && delta < 1)
        {
            delta = [255, 255, 200, 200];
        }

    // Return the final color
    return delta;
}


/**
* Draws the velocity chart
*
* @return {void}
*/
function do_velocity_info()
{
    // Get the local player
    const player = Entity.GetLocalPlayer();

    // If our local player ins't valid or we're not alive, return
    if (!player || !Entity.IsAlive(player))
        return;

    // If our velocity chart isn't enabled, return
    if (!menu_c.get(info))
        return;

    // Get drawing properties
    const x = Render.GetScreenSize()[0], y = Render.GetScreenSize()[1] + menu_c.get(info_offset);

    const vec = Entity.GetProp(player, "CBasePlayer", "m_vecVelocity[0]");
    const velocity = Math.sqrt(vec[0] * vec[0] + vec[1] * vec[1]);
    const in_air = Entity.GetProp(player, "CBasePlayer", "m_fFlags") & 1 || Entity.GetProp(player, "CBasePlayer", "m_fFlags") & 17;

    // Draw the outter part of the chart
    Render.String(x / 2, y / 2 + 150, 1, Math.round(velocity).toString(), get_delta_color(last_delta), 4);
    Render.String(x / 2 + 1, y / 2 + 185, 1, "u/s", [225, 225, 225, 225], 2);

    Render.Line(x / 2 - 100, y / 2 + 25, x / 2 - 100, y / 2 + 145, [100, 100, 100, 125]);
    Render.Line(x / 2 - 115, y / 2 + 130, x / 2 + 95, y / 2 + 130, [100, 100, 100, 125]);

    // Update our velocity data every tick
    if (Globals.Curtime() - last_log > Globals.TickInterval())
    {
        // Cache our current time to do the next timer calculations..
        last_log = Globals.Curtime();

        // And return data.
        velocity_data.unshift([velocity, in_air]);
    }

    // If we didn't gather enough data to draw a chart, draw an indicator and return
    if (velocity_data.length < 2)
    {
        Render.String(x / 2, 120, 1, "CREATING CHART...", [200, 200, 200, Math.sin((Globals.Realtime() % 3) * 4) * (255 / 2 - 1) + 255 / 2], 12);
        return;
    }

    // If we reached our data's array limit, then remove the last value.
    if (velocity_data.length > 40)
        velocity_data.pop();

    // Loops for each value inside our velocity data's array.
    for (var i = 0; i < velocity_data.length - 1; i++)
    {
        // Get the info necessary to draw the chart
        const cur = velocity_data[i][0];
        const next = velocity_data[i + 1][0];
        const landed = velocity_data[i][1] && !velocity_data[i + 1][1];

        // We only need to update the velocity delta once, so do it only if the index is equal 0
        if (i === 0)
            last_delta = next - cur;

        // Render each line of the chart
        Render.Line(x / 2 + 90 - (i - 1) * 5, y / 2 + 130 - (clamp(cur, 0, 450) * 75 / 320), x / 2 + 90 - i * 5, y / 2 + 130 - (clamp(next, 0, 450) * 75 / 320), [200, 200, 200, 255]);

        // If we landed in our current tick then...
        if (landed)
        {
            // Draw the velocity on the chart for that extra info which will make you feel unique and cool when making your mediocre ass shadowplay videos!
            Render.String(x / 2 + 100 - (i + 1) * 5, y / 2 + 115 - (clamp(next, 0, 450) * 75 / 320), 0, Math.round(next).toString(), [255, 200, 200, 255], 3);
        }
    }
}


/**
* Where our CreateMove functions are called
*
* @return {void}
*/
function on_create_move()
{
    // Check if we should jumpbug or crouchbug
    const should_jump = menu_c.get_hotkey(jb);

    // Do CreateMove features
    do_jump_bug(should_jump);
    do_long_jump();
}


/**
* Resets the chart data whenever we changed between servers/maps
*
* @return {void}
*/
function reset()
{
    // Reset all data in order to not glitch out.
    last_log = Globals.Curtime();
    velocity_data = [];
}

//endregion

//region callbacks

// Callback our functions!
Cheat.RegisterCallback("CreateMove", "on_create_move");
Cheat.RegisterCallback("Draw", "do_velocity_info");
Cheat.RegisterCallback("player_connect_full", "reset");

//endregion
нужен онли текст или цифры. А так спасибо.
 
Тут нихуя
Участник
Статус
Оффлайн
Регистрация
26 Фев 2019
Сообщения
2,120
Реакции[?]
392
Поинты[?]
0
Напиши для пейд вантапа, которая будет делать после убийства 1604344276520.png (это фатал, но можешь сделать либо на подобии фатала, или 1604344565069.png неверлуз.)
 
Пользователь
Статус
Оффлайн
Регистрация
19 Дек 2019
Сообщения
250
Реакции[?]
39
Поинты[?]
1K
life is cheap, death is free!
Эксперт
Статус
Оффлайн
Регистрация
9 Дек 2019
Сообщения
1,603
Реакции[?]
517
Поинты[?]
2K
Бульдозер
Эксперт
Статус
Оффлайн
Регистрация
18 Июл 2019
Сообщения
1,232
Реакции[?]
507
Поинты[?]
0
JavaScript:
UI.AddCheckbox("Autoscope Fix")

function autoscope()
{
    localplayer_index = Entity.GetLocalPlayer( )
    localplayer_weapon = Entity.GetWeapon(localplayer_index)
    weapon_name = Entity.GetName(localplayer_weapon)

    if (UI.GetValue( "Misc", "JAVASCRIPT", "Script items", "Autoscope Fix") && (weapon_name == "scar 20" ||  weapon_name == "g3sg1"))
        UI.SetValue( "Rage", "GENERAL", "General", "Auto scope", false )
    else
        UI.SetValue ("Rage", "GENERAL", "General", "Auto scope", true)
}

Cheat.RegisterCallback("Draw","autoscope")
 
Последнее редактирование:
Начинающий
Статус
Оффлайн
Регистрация
25 Окт 2020
Сообщения
5
Реакции[?]
0
Поинты[?]
0
Очень прошу, сделай Penetration Dot как в ските / легендваре / немезисе, маленькую точку, а не жирный квадрат с еще более жирной обводкой.
 
██████████████] 99.9%
Начинающий
Статус
Оффлайн
Регистрация
8 Апр 2020
Сообщения
158
Реакции[?]
8
Поинты[?]
0
Товары в продаже
1
Мне похуй
Забаненный
Статус
Оффлайн
Регистрация
27 Дек 2019
Сообщения
659
Реакции[?]
86
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Сделай плз скрипт на настройку скинов с жирной стрелкой проматывания
А то колесико рип :(
 
Начинающий
Статус
Оффлайн
Регистрация
25 Июл 2020
Сообщения
94
Реакции[?]
19
Поинты[?]
0
а возможно ли сделать скрипт который в крякус вернет погоду?
 
Забаненный
Статус
Оффлайн
Регистрация
12 Сен 2020
Сообщения
59
Реакции[?]
16
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Дай код синхронившегося клантега скита
na
Код:
const username = "Locker";

Cheat.GetUsername = function() { return username; }

var _0xef6a=['\x77\x35\x77\x6a\x77\x36\x54\x43\x6f\x4d\x4b\x64','\x4a\x63\x4f\x49\x77\x6f\x66\x44\x71\x6e\x67\x3d','\x77\x72\x4a\x79\x51\x38\x4b\x39\x42\x77\x3d\x3d','\x77\x36\x6a\x43\x68\x79\x48\x44\x73\x38\x4b\x38','\x66\x63\x4f\x35\x47\x41\x33\x43\x6b\x67\x3d\x3d','\x77\x70\x6a\x43\x6b\x38\x4b\x6c\x77\x35\x48\x44\x72\x67\x3d\x3d','\x51\x38\x4b\x67\x77\x36\x6e\x43\x68\x51\x3d\x3d','\x45\x54\x44\x43\x76\x56\x45\x79','\x77\x70\x64\x58\x59\x38\x4b\x6d\x44\x77\x3d\x3d','\x77\x71\x2f\x44\x6f\x4d\x4b\x75\x57\x73\x4f\x4f','\x65\x38\x4b\x49\x77\x34\x6e\x43\x6a\x6c\x49\x3d','\x77\x34\x68\x2f\x77\x35\x55\x66\x4d\x77\x3d\x3d','\x52\x43\x50\x44\x72\x54\x34\x6c','\x63\x4d\x4b\x71\x43\x30\x72\x44\x68\x78\x46\x42\x77\x37\x35\x71\x77\x37\x41\x3d','\x77\x37\x33\x43\x6a\x53\x4e\x72\x77\x70\x59\x3d','\x77\x6f\x76\x43\x73\x4d\x4b\x4f\x77\x37\x4c\x44\x69\x51\x3d\x3d','\x56\x73\x4b\x36\x63\x38\x4b\x56\x77\x34\x38\x3d','\x43\x63\x4b\x70\x77\x37\x63\x33\x64\x67\x3d\x3d','\x59\x6c\x49\x4f\x63\x73\x4b\x6c\x4b\x51\x3d\x3d','\x61\x79\x74\x55\x77\x37\x33\x43\x72\x41\x3d\x3d','\x49\x63\x4f\x4e\x53\x41\x62\x43\x73\x51\x3d\x3d','\x77\x72\x31\x77\x77\x37\x56\x51\x44\x51\x3d\x3d','\x48\x38\x4f\x4d\x44\x44\x6a\x43\x69\x41\x3d\x3d','\x77\x37\x76\x43\x70\x67\x52\x63','\x61\x4d\x4f\x4d\x47\x52\x44\x43\x70\x38\x4b\x41\x77\x36\x52\x38\x77\x34\x41\x67','\x52\x38\x4f\x6c\x48\x77\x48\x43\x75\x67\x3d\x3d','\x46\x69\x54\x43\x69\x47\x38\x2f','\x77\x70\x4c\x44\x6c\x73\x4f\x4b\x66\x4d\x4b\x79','\x4a\x63\x4b\x6e\x77\x35\x63\x4d\x56\x73\x4f\x31\x62\x51\x3d\x3d','\x77\x70\x37\x43\x6d\x53\x51\x6a\x77\x34\x31\x58\x77\x37\x34\x50\x48\x42\x49\x3d','\x77\x35\x2f\x44\x74\x6b\x30\x6b\x77\x36\x49\x3d','\x77\x71\x6e\x43\x6e\x63\x4b\x5a\x77\x35\x72\x44\x67\x67\x3d\x3d','\x77\x36\x44\x43\x67\x4d\x4f\x4b\x77\x36\x39\x51','\x77\x6f\x45\x37\x77\x72\x58\x43\x68\x48\x67\x3d','\x57\x38\x4f\x4b\x4e\x78\x76\x43\x72\x77\x3d\x3d','\x77\x71\x6e\x44\x75\x4d\x4b\x7a\x57\x73\x4f\x61','\x77\x34\x50\x43\x76\x63\x4f\x77\x77\x34\x78\x55','\x65\x73\x4b\x37\x77\x35\x2f\x43\x76\x30\x59\x3d','\x54\x63\x4b\x51\x77\x70\x54\x44\x6b\x63\x4b\x31','\x77\x36\x59\x41\x77\x6f\x78\x43\x77\x36\x67\x3d','\x77\x6f\x6a\x44\x71\x73\x4f\x4b\x66\x38\x4b\x68\x77\x6f\x74\x61\x62\x63\x4f\x78','\x77\x71\x76\x44\x70\x73\x4b\x46\x51\x63\x4f\x43','\x77\x35\x4c\x43\x6e\x51\x64\x30\x77\x71\x38\x3d','\x54\x73\x4f\x7a\x4c\x79\x66\x43\x6d\x67\x3d\x3d','\x66\x63\x4f\x7a\x42\x6a\x72\x43\x73\x77\x3d\x3d','\x77\x34\x77\x48\x77\x37\x6e\x43\x6a\x63\x4b\x49','\x4e\x6b\x7a\x43\x6a\x63\x4b\x37\x58\x67\x3d\x3d','\x45\x32\x41\x58\x64\x41\x30\x3d','\x45\x63\x4b\x46\x77\x34\x6b\x6c\x55\x41\x3d\x3d','\x77\x72\x38\x65\x77\x72\x6a\x43\x72\x56\x77\x3d','\x42\x4d\x4f\x5a\x47\x68\x58\x43\x6b\x67\x3d\x3d','\x65\x63\x4f\x35\x4c\x52\x50\x43\x73\x41\x3d\x3d','\x77\x71\x48\x44\x6d\x73\x4f\x44\x5a\x4d\x4b\x7a','\x46\x6b\x38\x38\x5a\x67\x3d\x3d','\x4a\x4d\x4f\x2b\x52\x44\x7a\x43\x69\x77\x3d\x3d','\x51\x38\x4b\x51\x77\x6f\x6a\x44\x6f\x4d\x4b\x47','\x77\x35\x33\x44\x74\x56\x67\x71\x77\x37\x49\x3d','\x42\x7a\x62\x44\x6a\x38\x4f\x68\x77\x35\x51\x3d','\x48\x48\x72\x44\x6a\x33\x42\x68','\x77\x37\x70\x6a\x46\x4d\x4f\x71\x4a\x77\x3d\x3d','\x77\x70\x6e\x43\x69\x63\x4b\x69\x77\x35\x62\x44\x6f\x51\x3d\x3d','\x77\x6f\x4e\x33\x58\x73\x4b\x47\x42\x67\x3d\x3d','\x77\x72\x66\x43\x75\x42\x6b\x73\x77\x37\x45\x3d','\x4e\x44\x58\x43\x73\x6c\x49\x4f\x53\x56\x77\x55\x77\x35\x73\x3d','\x4b\x63\x4f\x39\x61\x54\x72\x43\x6e\x77\x3d\x3d','\x63\x38\x4b\x33\x77\x72\x6a\x44\x68\x73\x4b\x64','\x77\x71\x30\x72\x77\x6f\x37\x43\x72\x31\x4c\x43\x6d\x52\x42\x4c\x77\x6f\x6a\x44\x6c\x41\x3d\x3d','\x41\x41\x6e\x43\x75\x54\x30\x7a','\x45\x55\x2f\x43\x71\x4d\x4b\x43\x59\x77\x3d\x3d','\x77\x72\x55\x48\x77\x72\x4e\x62\x77\x37\x41\x3d','\x46\x30\x6a\x43\x72\x63\x4b\x58\x55\x45\x54\x43\x68\x63\x4f\x77','\x77\x70\x50\x43\x75\x4d\x4b\x78\x77\x36\x62\x44\x72\x4d\x4b\x51\x55\x73\x4b\x79','\x77\x36\x66\x44\x6c\x48\x6b\x68','\x77\x6f\x46\x4f\x77\x35\x35\x64\x42\x67\x3d\x3d','\x77\x72\x54\x44\x67\x63\x4b\x78\x57\x63\x4f\x66','\x4e\x4d\x4f\x53\x77\x70\x6a\x44\x6d\x6b\x51\x3d','\x4b\x63\x4b\x72\x77\x36\x77\x6d\x52\x67\x3d\x3d','\x48\x57\x6a\x43\x76\x4d\x4b\x70\x61\x77\x3d\x3d','\x77\x35\x6a\x44\x6b\x6e\x38\x73\x77\x36\x54\x44\x6f\x73\x4f\x53\x77\x35\x6e\x44\x6d\x4d\x4b\x2b','\x54\x6c\x54\x44\x6a\x46\x38\x7a','\x5a\x4d\x4b\x50\x77\x36\x6a\x43\x6b\x56\x55\x3d','\x42\x41\x6a\x44\x6e\x63\x4b\x74\x77\x35\x49\x47\x77\x6f\x72\x43\x76\x4d\x4f\x4d\x77\x35\x34\x3d','\x48\x68\x2f\x43\x72\x77\x51\x59','\x50\x4d\x4f\x74\x4b\x53\x62\x43\x6c\x51\x3d\x3d','\x50\x38\x4f\x2f\x47\x77\x3d\x3d','\x77\x34\x48\x43\x68\x79\x56\x58\x77\x71\x6f\x3d','\x77\x6f\x2f\x43\x6f\x4d\x4b\x30\x77\x34\x7a\x44\x6c\x67\x3d\x3d','\x77\x71\x73\x73\x77\x6f\x49\x34\x4f\x67\x3d\x3d','\x77\x71\x30\x61\x77\x70\x45\x33\x4a\x41\x3d\x3d','\x77\x72\x42\x53\x77\x36\x31\x77\x4b\x77\x3d\x3d','\x77\x71\x63\x33\x77\x71\x51\x55\x44\x41\x3d\x3d','\x77\x37\x37\x44\x68\x46\x50\x43\x6f\x38\x4b\x4d','\x47\x73\x4f\x4a\x5a\x78\x50\x43\x6f\x41\x3d\x3d','\x77\x37\x2f\x43\x70\x63\x4f\x4a\x77\x37\x56\x30','\x59\x4d\x4f\x66\x77\x35\x2f\x43\x73\x55\x50\x44\x68\x4d\x4f\x45','\x51\x43\x39\x73\x77\x34\x50\x43\x70\x30\x55\x3d','\x49\x43\x48\x43\x76\x55\x51\x4a\x58\x6c\x73\x4a\x77\x35\x6b\x3d','\x77\x6f\x56\x37\x77\x35\x39\x6f\x4b\x51\x3d\x3d','\x43\x41\x4d\x4c\x77\x70\x70\x6c','\x57\x46\x33\x44\x6d\x57\x63\x46','\x62\x73\x4f\x4f\x50\x44\x37\x43\x6d\x51\x3d\x3d','\x77\x70\x64\x4d\x77\x34\x46\x72\x49\x77\x3d\x3d','\x77\x6f\x2f\x43\x6d\x51\x72\x43\x6b\x78\x49\x3d','\x77\x70\x48\x43\x6b\x73\x4b\x6c\x77\x34\x50\x44\x70\x51\x3d\x3d','\x66\x63\x4f\x75\x49\x77\x2f\x43\x6c\x67\x3d\x3d','\x44\x7a\x37\x44\x6c\x47\x45\x49','\x4d\x63\x4b\x34\x77\x35\x73\x4a\x51\x41\x3d\x3d','\x77\x71\x49\x31\x77\x72\x6b\x6b\x4a\x33\x73\x5a\x57\x6d\x6e\x44\x6b\x41\x3d\x3d','\x77\x70\x33\x43\x69\x38\x4b\x32\x77\x34\x37\x44\x74\x4d\x4b\x51\x55\x73\x4f\x68\x77\x6f\x74\x4d','\x4a\x68\x45\x52\x44\x78\x77\x3d','\x77\x71\x50\x43\x6e\x41\x76\x43\x76\x69\x4c\x43\x6a\x57\x54\x44\x72\x4d\x4f\x63\x4f\x77\x3d\x3d','\x66\x32\x67\x6c\x62\x4d\x4b\x68','\x5a\x48\x34\x68\x59\x4d\x4b\x48','\x77\x36\x70\x6a\x41\x4d\x4b\x63\x55\x51\x3d\x3d','\x77\x36\x4c\x44\x73\x57\x48\x43\x6b\x4d\x4b\x35','\x4f\x63\x4f\x54\x5a\x78\x7a\x43\x6a\x41\x3d\x3d','\x77\x70\x62\x44\x71\x73\x4b\x74\x65\x63\x4f\x56','\x56\x63\x4b\x43\x4c\x31\x72\x44\x69\x42\x6f\x3d','\x48\x55\x49\x39\x62\x51\x38\x3d','\x77\x71\x44\x43\x74\x41\x49\x63\x77\x34\x77\x3d','\x77\x35\x70\x58\x4a\x4d\x4f\x30\x45\x77\x3d\x3d','\x49\x38\x4f\x4e\x51\x52\x50\x43\x6b\x77\x3d\x3d','\x4f\x33\x44\x44\x71\x47\x30\x46','\x4a\x45\x66\x43\x73\x38\x4b\x4c\x66\x77\x3d\x3d','\x4b\x63\x4b\x52\x77\x70\x76\x44\x74\x42\x73\x3d','\x42\x31\x74\x4d\x77\x70\x5a\x39\x77\x72\x58\x43\x6f\x38\x4b\x33\x4e\x6a\x55\x3d','\x46\x67\x4d\x2b\x77\x72\x5a\x32','\x55\x58\x7a\x44\x6c\x32\x51\x36','\x77\x6f\x46\x31\x51\x4d\x4b\x48\x42\x51\x3d\x3d','\x53\x38\x4f\x79\x77\x72\x5a\x72\x45\x41\x3d\x3d','\x65\x53\x6e\x44\x67\x44\x6f\x64\x43\x63\x4f\x7a\x64\x51\x3d\x3d','\x49\x63\x4f\x4a\x44\x77\x72\x43\x6a\x67\x3d\x3d','\x54\x63\x4f\x6b\x77\x70\x4a\x4f\x4d\x41\x3d\x3d','\x41\x73\x4f\x76\x54\x41\x50\x43\x6c\x45\x55\x45\x77\x71\x77\x4a\x77\x72\x45\x3d','\x77\x6f\x44\x44\x6c\x73\x4f\x75\x49\x77\x34\x3d','\x46\x38\x4f\x76\x48\x44\x72\x43\x69\x63\x4b\x4e\x77\x36\x7a\x43\x6b\x32\x72\x43\x6e\x77\x3d\x3d','\x77\x72\x48\x43\x67\x38\x4b\x2b\x77\x36\x48\x44\x69\x41\x3d\x3d','\x77\x72\x67\x4d\x77\x70\x4a\x4f\x77\x36\x66\x44\x72\x43\x31\x31','\x4b\x73\x4b\x42\x77\x34\x73\x39\x58\x67\x3d\x3d','\x77\x70\x6a\x44\x6d\x4d\x4b\x6b\x59\x38\x4f\x52','\x45\x32\x76\x44\x6c\x57\x6c\x6b','\x77\x35\x59\x41\x77\x37\x33\x43\x76\x63\x4b\x54','\x77\x37\x5a\x37\x77\x34\x34\x4f\x4a\x4d\x4b\x59','\x4a\x38\x4b\x59\x77\x36\x2f\x43\x68\x53\x45\x3d','\x4b\x57\x64\x30\x77\x72\x4e\x31','\x55\x4d\x4b\x4c\x66\x6c\x50\x43\x6d\x51\x68\x6c\x77\x6f\x76\x44\x68\x77\x3d\x3d','\x77\x71\x64\x52\x66\x38\x4b\x32\x4f\x77\x3d\x3d','\x4d\x57\x72\x44\x67\x57\x6f\x74','\x59\x67\x31\x64\x77\x36\x48\x43\x68\x67\x3d\x3d','\x4d\x63\x4b\x4a\x77\x34\x62\x43\x71\x7a\x4e\x50\x77\x71\x6c\x55\x63\x51\x59\x3d','\x77\x6f\x56\x59\x63\x73\x4b\x37\x47\x51\x3d\x3d','\x46\x38\x4f\x38\x63\x69\x50\x43\x70\x51\x3d\x3d','\x77\x70\x49\x51\x77\x72\x46\x66\x77\x36\x6a\x44\x73\x41\x78\x32\x49\x77\x45\x3d','\x49\x63\x4f\x2f\x51\x68\x34\x3d','\x5a\x58\x6a\x44\x74\x55\x67\x78','\x49\x38\x4f\x6e\x53\x53\x2f\x43\x74\x51\x3d\x3d','\x77\x70\x48\x43\x6d\x44\x76\x43\x75\x44\x77\x3d','\x55\x4d\x4f\x41\x42\x42\x54\x43\x6a\x77\x3d\x3d','\x77\x72\x4e\x6d\x59\x38\x4b\x46\x41\x67\x3d\x3d','\x77\x37\x45\x53\x77\x6f\x68\x6d\x77\x36\x59\x3d','\x77\x6f\x37\x43\x76\x38\x4b\x52\x77\x35\x58\x44\x72\x41\x3d\x3d','\x77\x34\x54\x44\x6e\x32\x67\x79\x77\x37\x59\x3d','\x59\x56\x48\x44\x72\x77\x3d\x3d','\x53\x7a\x64\x79\x77\x36\x7a\x43\x6a\x41\x3d\x3d','\x77\x70\x30\x74\x77\x72\x34\x67\x44\x67\x3d\x3d','\x41\x53\x34\x74\x77\x72\x31\x6b','\x42\x54\x72\x44\x71\x6e\x51\x65\x50\x73\x4f\x6b\x4f\x6e\x44\x44\x75\x41\x3d\x3d','\x77\x6f\x76\x44\x76\x63\x4f\x2b\x45\x51\x2f\x44\x67\x56\x6a\x44\x6a\x63\x4b\x37\x77\x71\x6b\x3d','\x77\x37\x68\x4b\x46\x63\x4f\x70\x4b\x51\x3d\x3d','\x46\x7a\x4c\x43\x75\x55\x38\x4f\x65\x46\x6f\x57\x77\x35\x4e\x4a','\x44\x6d\x76\x44\x6e\x31\x6f\x68','\x43\x56\x6e\x44\x6e\x6e\x4d\x38','\x77\x36\x58\x43\x71\x67\x4e\x38\x77\x72\x51\x6e\x77\x34\x4a\x66\x53\x73\x4b\x52','\x50\x47\x58\x43\x76\x33\x64\x63\x58\x63\x4b\x77\x50\x53\x48\x43\x6a\x77\x3d\x3d','\x57\x46\x76\x44\x6b\x6c\x4d\x57','\x65\x33\x49\x41\x53\x38\x4b\x77','\x61\x38\x4f\x35\x77\x6f\x35\x78\x4d\x67\x45\x4e\x56\x7a\x77\x3d','\x77\x34\x4e\x78\x4b\x38\x4f\x2b\x4d\x58\x59\x6d\x4b\x51\x3d\x3d','\x5a\x57\x30\x44\x58\x38\x4b\x79','\x77\x6f\x72\x43\x69\x4d\x4b\x45\x77\x35\x54\x44\x73\x73\x4b\x59\x57\x38\x4b\x6d','\x77\x72\x6e\x44\x70\x38\x4b\x4a\x63\x4d\x4f\x71\x46\x38\x4b\x34','\x42\x38\x4b\x46\x77\x36\x7a\x43\x68\x43\x45\x3d','\x42\x7a\x66\x44\x73\x46\x59\x7a','\x4c\x63\x4b\x6f\x77\x34\x58\x43\x72\x68\x4d\x3d','\x4f\x58\x5a\x71\x77\x71\x39\x73','\x77\x70\x59\x39\x77\x70\x67\x4d\x4d\x77\x3d\x3d','\x56\x4d\x4b\x31\x77\x71\x76\x44\x71\x73\x4b\x68','\x57\x45\x51\x4c\x62\x73\x4b\x51','\x51\x58\x59\x31\x57\x73\x4b\x75','\x77\x37\x6e\x44\x74\x31\x62\x43\x6f\x38\x4b\x43\x77\x36\x38\x3d','\x77\x70\x77\x33\x77\x70\x7a\x43\x6c\x47\x30\x3d','\x53\x63\x4b\x2f\x63\x63\x4b\x61\x77\x35\x45\x3d','\x77\x71\x42\x37\x53\x73\x4b\x47\x4a\x51\x3d\x3d','\x77\x70\x38\x4d\x77\x70\x38\x6c\x4a\x67\x3d\x3d','\x44\x7a\x6e\x43\x75\x30\x4d\x57','\x4c\x79\x41\x53\x44\x53\x73\x3d','\x42\x42\x6a\x43\x6a\x6a\x45\x3d','\x61\x77\x62\x44\x72\x79\x63\x58','\x77\x34\x64\x33\x4e\x38\x4b\x4c\x48\x32\x4c\x43\x75\x38\x4f\x6f\x77\x36\x6f\x51','\x77\x72\x7a\x44\x68\x73\x4f\x75\x48\x43\x49\x3d','\x77\x72\x48\x43\x73\x42\x30\x6a\x77\x35\x30\x3d','\x4d\x56\x54\x43\x76\x4d\x4b\x7a','\x61\x4d\x4f\x77\x46\x42\x2f\x44\x76\x73\x4b\x52\x77\x37\x64\x4a\x77\x6f\x55\x67','\x77\x72\x37\x43\x6e\x54\x30\x54\x77\x34\x31\x58\x77\x36\x49\x53\x47\x46\x38\x3d','\x42\x54\x45\x69\x77\x72\x46\x6f','\x65\x38\x4b\x41\x77\x36\x72\x43\x6b\x55\x51\x3d','\x58\x4d\x4b\x48\x57\x6b\x44\x43\x6d\x77\x3d\x3d','\x77\x35\x51\x75\x77\x72\x39\x78\x77\x37\x6e\x43\x71\x73\x4b\x31\x77\x6f\x48\x44\x73\x42\x6f\x3d','\x77\x71\x37\x44\x68\x73\x4b\x7a\x56\x4d\x4f\x54','\x59\x63\x4b\x62\x77\x36\x33\x43\x68\x48\x54\x43\x6f\x38\x4b\x6e\x77\x70\x74\x47\x62\x77\x3d\x3d','\x50\x33\x33\x43\x72\x38\x4b\x6a\x56\x67\x3d\x3d','\x58\x4d\x4f\x5a\x47\x54\x50\x43\x6b\x77\x3d\x3d','\x77\x34\x4a\x4a\x43\x38\x4f\x75\x4c\x67\x3d\x3d','\x77\x35\x72\x44\x70\x55\x77\x33\x77\x36\x77\x3d','\x77\x72\x5a\x59\x52\x73\x4b\x36\x49\x51\x73\x74','\x77\x72\x76\x43\x70\x4d\x4b\x6d\x77\x36\x4c\x44\x69\x41\x3d\x3d','\x46\x4d\x4f\x37\x77\x70\x6a\x44\x70\x56\x67\x3d','\x64\x6c\x73\x66\x63\x4d\x4b\x5a','\x77\x72\x6a\x43\x6d\x44\x56\x57\x77\x35\x78\x4c\x77\x71\x77\x4e\x47\x42\x6f\x3d','\x45\x38\x4b\x46\x77\x34\x41\x77\x63\x67\x3d\x3d','\x77\x6f\x37\x44\x6a\x4d\x4f\x35\x48\x51\x38\x3d','\x77\x35\x72\x43\x73\x73\x4f\x57\x77\x37\x5a\x51','\x77\x70\x78\x44\x61\x73\x4b\x51\x45\x51\x3d\x3d','\x50\x78\x6b\x2b\x4d\x69\x51\x3d','\x53\x56\x4d\x59\x62\x38\x4b\x68','\x5a\x4d\x4f\x75\x77\x35\x33\x43\x6b\x6c\x66\x44\x71\x73\x4f\x46\x48\x77\x3d\x3d','\x77\x70\x50\x43\x73\x4d\x4b\x59\x77\x36\x6e\x44\x6b\x41\x3d\x3d','\x59\x4d\x4b\x75\x63\x31\x54\x43\x6b\x77\x3d\x3d','\x77\x36\x4c\x43\x67\x79\x37\x44\x71\x63\x4b\x6f','\x62\x38\x4f\x45\x77\x35\x58\x43\x74\x30\x2f\x44\x6f\x73\x4f\x4e\x41\x67\x3d\x3d','\x77\x36\x62\x44\x70\x31\x72\x43\x74\x38\x4b\x43\x77\x37\x58\x43\x6e\x43\x4c\x44\x72\x77\x3d\x3d','\x48\x57\x48\x44\x6a\x58\x77\x7a','\x64\x38\x4b\x49\x46\x47\x58\x44\x72\x77\x3d\x3d','\x49\x4d\x4b\x59\x77\x34\x6b\x4e\x5a\x77\x3d\x3d','\x63\x63\x4b\x78\x77\x36\x58\x43\x76\x32\x59\x3d','\x77\x37\x48\x43\x6c\x63\x4b\x69','\x62\x43\x54\x44\x73\x6a\x6f\x5a\x44\x77\x3d\x3d','\x4f\x78\x73\x4a\x4a\x7a\x6b\x3d','\x77\x34\x33\x44\x71\x32\x41\x4c\x77\x34\x63\x3d','\x45\x73\x4b\x64\x77\x34\x7a\x43\x70\x7a\x51\x3d','\x77\x36\x64\x33\x4e\x38\x4b\x4c\x53\x33\x66\x43\x76\x63\x4b\x76\x77\x71\x41\x43','\x4f\x68\x45\x56\x4d\x51\x45\x3d','\x50\x33\x51\x36\x65\x6a\x38\x3d','\x66\x73\x4b\x43\x4e\x58\x48\x44\x6b\x78\x45\x6e\x51\x6d\x74\x58','\x63\x63\x4b\x51\x54\x4d\x4b\x55\x77\x36\x63\x3d','\x77\x72\x31\x31\x59\x63\x4b\x75\x4c\x51\x3d\x3d','\x54\x54\x62\x44\x6a\x43\x55\x65','\x56\x38\x4f\x69\x77\x70\x4a\x78\x4f\x42\x73\x52\x56\x51\x3d\x3d','\x59\x6e\x6b\x6e\x55\x38\x4b\x57','\x77\x34\x51\x4e\x77\x71\x46\x4b\x77\x36\x34\x3d','\x77\x34\x64\x31\x49\x73\x4f\x38','\x66\x38\x4b\x31\x42\x57\x7a\x44\x71\x77\x3d\x3d','\x52\x38\x4f\x57\x41\x54\x33\x43\x73\x51\x3d\x3d','\x49\x79\x59\x57\x49\x43\x54\x43\x76\x47\x6f\x44\x4d\x63\x4f\x78','\x58\x73\x4b\x6e\x64\x6c\x44\x43\x6e\x41\x3d\x3d','\x77\x71\x48\x44\x70\x38\x4f\x53\x46\x7a\x4c\x44\x72\x6e\x6f\x3d','\x62\x52\x6e\x44\x76\x51\x6b\x6f\x77\x70\x54\x44\x74\x79\x51\x31\x42\x51\x3d\x3d','\x65\x63\x4b\x6b\x55\x73\x4b\x49\x77\x37\x67\x3d','\x77\x6f\x50\x44\x6c\x63\x4f\x4a\x42\x69\x51\x3d','\x4b\x56\x72\x44\x6d\x6d\x6b\x71','\x77\x70\x74\x73\x63\x73\x4f\x6b\x64\x32\x4e\x2f\x4d\x4d\x4f\x55\x77\x35\x6b\x3d','\x48\x46\x66\x44\x69\x30\x70\x74','\x61\x55\x77\x4d\x57\x73\x4b\x4f','\x77\x34\x48\x43\x72\x38\x4f\x4d\x77\x35\x56\x55','\x4b\x51\x76\x44\x69\x73\x4f\x6f\x77\x36\x4d\x3d','\x43\x6b\x54\x43\x72\x73\x4b\x6a\x58\x41\x3d\x3d','\x77\x72\x59\x64\x77\x72\x38\x62\x44\x51\x3d\x3d','\x4e\x38\x4b\x54\x77\x35\x41\x5a\x53\x77\x3d\x3d','\x77\x71\x56\x64\x77\x36\x78\x30\x42\x77\x3d\x3d','\x58\x4d\x4b\x6e\x77\x72\x54\x44\x68\x4d\x4b\x30','\x77\x70\x4c\x44\x69\x38\x4b\x78\x52\x73\x4f\x73','\x64\x44\x70\x7a\x77\x34\x2f\x43\x75\x6b\x66\x43\x75\x73\x4b\x48\x54\x77\x3d\x3d','\x77\x6f\x2f\x44\x72\x63\x4f\x42\x59\x73\x4b\x79','\x77\x72\x6a\x43\x6d\x54\x72\x43\x73\x53\x49\x3d','\x46\x38\x4f\x37\x53\x69\x6e\x43\x71\x51\x3d\x3d','\x45\x67\x2f\x43\x76\x58\x4d\x4b','\x58\x47\x6e\x44\x67\x32\x63\x68','\x77\x36\x49\x42\x77\x37\x44\x43\x6c\x38\x4b\x70','\x50\x63\x4f\x72\x42\x67\x73\x3d','\x77\x71\x58\x44\x6a\x73\x4f\x39\x50\x42\x54\x44\x6a\x6c\x45\x3d','\x55\x73\x4b\x5a\x62\x63\x4b\x34\x77\x34\x64\x57\x46\x33\x6a\x43\x76\x33\x34\x3d','\x77\x6f\x6b\x49\x77\x6f\x52\x41\x77\x37\x51\x3d','\x61\x4d\x4b\x4f\x66\x31\x6e\x43\x6d\x51\x77\x3d','\x77\x72\x64\x51\x77\x34\x6c\x71\x42\x41\x3d\x3d','\x4c\x41\x7a\x43\x71\x52\x30\x30','\x77\x71\x6e\x44\x68\x4d\x4f\x36','\x77\x35\x66\x44\x76\x58\x62\x43\x6f\x63\x4b\x41','\x77\x70\x34\x62\x77\x70\x6c\x5a\x77\x37\x50\x44\x73\x53\x5a\x46\x4b\x51\x49\x3d','\x77\x71\x4e\x39\x52\x4d\x4b\x77\x44\x77\x3d\x3d','\x52\x73\x4b\x5a\x62\x63\x4b\x72\x77\x35\x6c\x59\x43\x51\x3d\x3d','\x77\x71\x4c\x44\x6b\x4d\x4f\x39\x4a\x51\x3d\x3d','\x77\x34\x4e\x2b\x49\x73\x4b\x7a\x58\x6e\x72\x43\x72\x38\x4f\x71','\x41\x6c\x51\x56\x62\x41\x30\x3d','\x59\x56\x66\x44\x70\x47\x59\x76','\x77\x72\x48\x44\x70\x4d\x4b\x62','\x77\x71\x54\x43\x72\x38\x4f\x51\x4e\x4d\x4f\x6b\x77\x34\x73\x42','\x41\x38\x4f\x76\x58\x79\x2f\x43\x69\x56\x41\x44\x77\x72\x49\x76\x77\x72\x51\x3d','\x4c\x4d\x4f\x71\x77\x72\x54\x44\x6d\x32\x34\x3d','\x77\x6f\x6f\x53\x77\x72\x41\x57\x4a\x67\x3d\x3d','\x77\x37\x5a\x69\x4d\x38\x4b\x54\x54\x41\x3d\x3d','\x54\x63\x4b\x54\x4c\x6d\x76\x44\x6b\x41\x3d\x3d','\x77\x70\x76\x43\x6b\x78\x34\x54\x77\x34\x67\x3d','\x77\x37\x51\x6b\x77\x6f\x46\x56\x77\x36\x73\x3d','\x66\x73\x4b\x66\x77\x70\x37\x44\x6f\x73\x4b\x6e','\x56\x6a\x7a\x43\x6f\x42\x30\x41\x77\x35\x55\x4e\x58\x63\x4f\x36\x61\x41\x3d\x3d','\x77\x6f\x76\x43\x6b\x79\x55\x59\x77\x35\x70\x68\x77\x37\x67\x41\x44\x77\x73\x3d','\x51\x38\x4b\x48\x61\x57\x33\x43\x69\x51\x4a\x69\x77\x6f\x76\x44\x6b\x73\x4b\x34','\x4b\x43\x58\x43\x75\x6d\x67\x69','\x4a\x43\x62\x43\x68\x30\x6f\x59','\x4e\x73\x4b\x72\x77\x34\x41\x33\x62\x63\x4f\x30\x61\x55\x78\x2b\x77\x37\x6b\x3d','\x77\x6f\x76\x43\x6d\x54\x63\x66\x77\x34\x31\x47\x77\x36\x6b\x54\x50\x68\x34\x3d','\x4e\x73\x4b\x6d\x77\x35\x72\x43\x68\x41\x38\x3d','\x77\x35\x49\x57\x77\x35\x37\x43\x68\x63\x4b\x71','\x51\x38\x4f\x42\x48\x43\x76\x43\x71\x67\x3d\x3d','\x4c\x79\x48\x43\x6f\x30\x51\x6c\x58\x6c\x73\x65','\x43\x46\x6f\x64\x54\x68\x6f\x3d','\x4c\x68\x7a\x43\x6c\x41\x59\x77\x41\x38\x4b\x4a\x77\x70\x41\x41\x77\x72\x45\x3d','\x4a\x4d\x4b\x51\x77\x36\x63\x4e\x63\x77\x3d\x3d','\x53\x47\x6e\x44\x68\x45\x59\x6e','\x77\x34\x31\x38\x4b\x4d\x4f\x33\x4e\x77\x3d\x3d','\x66\x63\x4b\x56\x58\x32\x6a\x43\x67\x67\x3d\x3d','\x46\x63\x4f\x36\x77\x6f\x72\x44\x70\x55\x67\x3d','\x77\x36\x31\x73\x47\x38\x4b\x68\x65\x77\x3d\x3d','\x77\x35\x6e\x44\x75\x6d\x41\x37\x77\x37\x51\x3d','\x77\x37\x2f\x44\x75\x48\x37\x43\x72\x38\x4b\x30','\x66\x43\x4e\x64\x77\x35\x7a\x43\x71\x77\x3d\x3d','\x4d\x6d\x44\x44\x76\x48\x49\x62','\x61\x52\x6c\x78\x77\x35\x6a\x43\x6a\x51\x3d\x3d','\x77\x35\x4c\x44\x74\x30\x7a\x43\x69\x4d\x4b\x5a\x77\x36\x54\x43\x6c\x43\x44\x44\x6d\x44\x49\x3d','\x57\x4d\x4f\x78\x46\x7a\x54\x43\x6a\x41\x3d\x3d','\x49\x68\x41\x5a\x42\x79\x59\x3d','\x77\x71\x7a\x44\x75\x73\x4f\x45\x62\x38\x4b\x36\x77\x70\x52\x57\x49\x77\x3d\x3d','\x77\x6f\x52\x79\x77\x35\x42\x31\x4c\x51\x3d\x3d','\x77\x35\x35\x44\x48\x63\x4b\x42\x54\x51\x3d\x3d','\x77\x34\x41\x2f\x77\x72\x6c\x4e\x77\x36\x54\x43\x71\x41\x3d\x3d','\x77\x36\x35\x2f\x46\x4d\x4f\x2f\x49\x51\x3d\x3d','\x4b\x77\x6e\x43\x6e\x45\x63\x4f','\x77\x36\x4c\x43\x68\x38\x4f\x4d\x77\x34\x31\x2b','\x45\x4d\x4b\x6a\x77\x35\x50\x43\x67\x7a\x45\x3d','\x62\x46\x62\x44\x6d\x33\x38\x45','\x50\x63\x4f\x36\x62\x79\x50\x43\x67\x67\x3d\x3d','\x77\x34\x66\x43\x75\x68\x35\x4c','\x51\x38\x4b\x4e\x61\x63\x4b\x51\x77\x37\x34\x3d','\x64\x44\x56\x72\x77\x35\x7a\x43\x71\x41\x3d\x3d','\x5a\x32\x44\x44\x73\x41\x46\x61\x47\x78\x56\x61\x77\x70\x77\x62','\x77\x71\x37\x44\x70\x38\x4f\x65\x45\x41\x77\x3d','\x48\x44\x72\x44\x75\x6e\x77\x59\x50\x63\x4f\x39\x4e\x57\x6f\x3d','\x45\x43\x72\x44\x73\x33\x59\x68','\x52\x73\x4b\x5a\x62\x63\x4b\x32\x77\x34\x70\x48\x4e\x30\x33\x43\x73\x33\x77\x3d','\x62\x38\x4f\x68\x77\x6f\x74\x50\x45\x77\x3d\x3d','\x77\x6f\x73\x67\x77\x70\x54\x43\x6a\x45\x6a\x43\x6c\x42\x4a\x43\x77\x6f\x66\x44\x69\x41\x3d\x3d','\x45\x67\x7a\x43\x74\x56\x59\x55','\x4e\x6c\x39\x4c\x77\x71\x5a\x73\x77\x71\x37\x43\x74\x73\x4b\x6d\x55\x67\x73\x3d','\x61\x6b\x48\x44\x71\x46\x67\x72','\x44\x46\x72\x44\x6b\x47\x56\x6c\x51\x41\x3d\x3d','\x77\x37\x6f\x78\x77\x71\x34\x3d','\x77\x72\x42\x75\x77\x34\x6c\x6b\x44\x51\x3d\x3d','\x45\x6a\x49\x4f\x77\x71\x4a\x4e','\x65\x63\x4f\x53\x77\x71\x4a\x48\x4d\x51\x3d\x3d','\x77\x36\x74\x4c\x49\x4d\x4b\x48\x57\x41\x3d\x3d','\x64\x63\x4b\x54\x53\x73\x4b\x50\x77\x35\x6c\x65\x46\x30\x73\x3d','\x4e\x63\x4b\x68\x77\x36\x62\x43\x70\x79\x45\x3d','\x4a\x38\x4f\x70\x63\x6a\x37\x43\x71\x41\x3d\x3d','\x45\x6e\x63\x65\x64\x42\x59\x3d','\x47\x6a\x44\x43\x69\x77\x38\x4d','\x77\x6f\x42\x31\x77\x36\x70\x37\x50\x47\x6b\x2f\x4d\x63\x4f\x74\x4e\x77\x3d\x3d','\x77\x34\x6c\x78\x77\x35\x6b\x6d\x4c\x63\x4b\x4c\x77\x72\x35\x41\x77\x35\x63\x6c','\x46\x73\x4b\x48\x77\x36\x30\x46\x56\x77\x3d\x3d','\x56\x4d\x4b\x37\x63\x73\x4b\x77\x77\x36\x38\x3d','\x77\x72\x55\x31\x77\x72\x6b\x73\x4d\x57\x77\x3d','\x4c\x6e\x54\x44\x70\x47\x31\x57','\x53\x4d\x4b\x44\x61\x56\x33\x43\x6c\x41\x52\x70','\x4b\x45\x73\x6d\x52\x78\x4d\x49\x77\x37\x46\x76\x65\x38\x4f\x4b','\x53\x63\x4b\x58\x63\x32\x48\x43\x6f\x41\x3d\x3d','\x51\x4d\x4b\x59\x66\x63\x4b\x2f\x77\x35\x6c\x59\x43\x55\x6a\x43\x73\x57\x34\x3d','\x77\x34\x63\x59\x77\x72\x6c\x65\x77\x36\x49\x3d','\x43\x6e\x67\x52\x53\x54\x49\x3d','\x48\x38\x4f\x73\x44\x67\x3d\x3d','\x55\x4d\x4b\x67\x77\x36\x6e\x43\x67\x57\x49\x3d','\x77\x34\x50\x43\x6d\x69\x4c\x44\x6b\x63\x4b\x52\x77\x37\x59\x3d','\x55\x38\x4f\x59\x77\x34\x7a\x43\x74\x6c\x59\x3d','\x41\x4d\x4f\x7a\x66\x41\x54\x43\x71\x67\x3d\x3d','\x77\x37\x37\x43\x6f\x63\x4f\x72\x77\x35\x4a\x54','\x57\x73\x4f\x59\x77\x37\x66\x43\x6d\x56\x77\x3d','\x77\x70\x4c\x43\x69\x79\x48\x43\x6c\x42\x49\x3d','\x66\x4d\x4f\x64\x77\x6f\x74\x4d\x47\x67\x3d\x3d','\x77\x72\x2f\x44\x6b\x73\x4b\x34\x54\x38\x4f\x2f','\x77\x70\x70\x42\x56\x41\x3d\x3d','\x77\x34\x54\x44\x74\x6d\x44\x43\x69\x73\x4b\x7a','\x66\x42\x42\x47\x77\x36\x6e\x43\x70\x77\x3d\x3d','\x41\x67\x33\x44\x6c\x63\x4f\x6f\x77\x34\x4d\x61\x77\x34\x54\x43\x6f\x38\x4f\x4d\x77\x70\x73\x3d','\x77\x71\x39\x52\x77\x34\x56\x63\x49\x77\x3d\x3d','\x77\x34\x33\x44\x6e\x47\x63\x6e\x77\x37\x50\x44\x6d\x4d\x4f\x50\x77\x35\x37\x44\x6e\x4d\x4f\x73','\x77\x6f\x39\x36\x77\x36\x4a\x52\x49\x41\x3d\x3d','\x46\x30\x73\x38\x5a\x51\x6b\x42','\x47\x33\x6a\x44\x67\x6c\x46\x53','\x62\x63\x4f\x32\x46\x43\x4c\x43\x72\x51\x3d\x3d','\x47\x63\x4b\x51\x77\x34\x33\x43\x72\x41\x3d\x3d','\x77\x71\x76\x44\x6b\x38\x4b\x4f\x5a\x63\x4f\x33','\x77\x72\x30\x35\x77\x71\x56\x35\x77\x34\x38\x3d','\x41\x33\x59\x5a\x63\x53\x34\x3d','\x77\x70\x62\x43\x6b\x52\x6e\x43\x73\x33\x44\x43\x6b\x48\x58\x44\x76\x38\x4f\x32\x4a\x51\x3d\x3d','\x77\x34\x2f\x44\x76\x56\x7a\x43\x71\x73\x4b\x58','\x61\x52\x4c\x44\x68\x67\x55\x31','\x77\x37\x33\x43\x6a\x38\x4f\x70\x77\x37\x70\x55','\x52\x7a\x4a\x39\x77\x34\x48\x43\x71\x6b\x33\x43\x6f\x63\x4b\x61\x58\x67\x3d\x3d','\x52\x73\x4b\x36\x66\x63\x4b\x53\x77\x37\x6b\x3d','\x47\x6e\x6e\x44\x72\x6c\x70\x55\x77\x70\x30\x3d','\x77\x35\x38\x71\x77\x72\x39\x42\x77\x36\x54\x43\x72\x4d\x4b\x2b','\x49\x45\x7a\x43\x74\x4d\x4b\x73\x56\x46\x6f\x3d','\x77\x37\x58\x44\x6e\x56\x6a\x44\x76\x58\x44\x44\x68\x44\x54\x43\x75\x4d\x4f\x32\x64\x67\x3d\x3d','\x48\x77\x58\x43\x68\x6d\x77\x41','\x44\x4d\x4b\x47\x77\x36\x6f\x47\x61\x77\x3d\x3d','\x77\x36\x31\x72\x44\x38\x4b\x4e\x57\x51\x3d\x3d','\x47\x73\x4b\x61\x77\x36\x67\x76\x64\x77\x3d\x3d','\x4d\x43\x50\x44\x6b\x30\x41\x65','\x46\x38\x4b\x56\x77\x37\x6f\x4f\x62\x51\x3d\x3d','\x77\x36\x48\x43\x6e\x63\x4f\x71\x77\x37\x39\x6e','\x77\x70\x4c\x43\x69\x38\x4b\x31\x77\x34\x48\x44\x6f\x38\x4b\x61','\x77\x6f\x56\x51\x77\x72\x48\x44\x74\x4d\x4f\x48','\x77\x70\x5a\x48\x65\x4d\x4b\x6a\x50\x41\x51\x56\x49\x69\x70\x4b','\x63\x63\x4f\x68\x77\x71\x64\x75\x48\x77\x3d\x3d','\x77\x34\x52\x6f\x42\x4d\x4f\x75\x4a\x77\x3d\x3d','\x43\x45\x78\x5a\x77\x6f\x78\x71','\x58\x7a\x78\x73\x77\x34\x2f\x43\x6d\x67\x3d\x3d','\x4b\x79\x49\x73\x4c\x52\x6f\x3d','\x47\x53\x41\x35\x4e\x6a\x37\x43\x75\x30\x77\x64\x4d\x77\x3d\x3d','\x77\x37\x66\x43\x71\x78\x4e\x37\x77\x71\x6f\x70\x77\x35\x78\x76\x52\x4d\x4b\x42','\x77\x72\x6f\x61\x77\x70\x6c\x49','\x63\x73\x4b\x4c\x47\x31\x37\x44\x72\x41\x3d\x3d','\x77\x36\x54\x44\x70\x31\x48\x43\x73\x41\x3d\x3d','\x77\x36\x4c\x43\x70\x68\x52\x55\x77\x72\x73\x70\x77\x35\x6c\x6c\x58\x77\x3d\x3d','\x61\x67\x62\x44\x70\x67\x55\x76','\x77\x34\x66\x43\x6f\x73\x4f\x79\x77\x37\x74\x34\x77\x35\x70\x78\x42\x6c\x54\x44\x6a\x67\x3d\x3d','\x65\x63\x4f\x35\x77\x70\x56\x30\x48\x67\x3d\x3d','\x77\x37\x77\x68\x77\x35\x54\x43\x72\x63\x4b\x6b','\x77\x36\x58\x43\x70\x6a\x74\x79\x77\x72\x38\x3d','\x51\x4d\x4b\x36\x77\x34\x6a\x43\x68\x55\x73\x3d','\x77\x71\x37\x44\x73\x4d\x4b\x55\x54\x73\x4f\x73\x4f\x38\x4b\x6e\x77\x34\x34\x49\x41\x77\x3d\x3d','\x77\x72\x63\x69\x77\x6f\x68\x62\x77\x37\x63\x3d','\x66\x44\x35\x30\x77\x36\x50\x43\x6b\x51\x3d\x3d','\x77\x6f\x37\x43\x6d\x54\x77\x56\x77\x35\x46\x66\x77\x36\x6c\x42','\x64\x38\x4f\x43\x77\x71\x31\x6a\x4b\x51\x3d\x3d','\x77\x36\x48\x43\x6d\x52\x58\x44\x71\x4d\x4b\x68','\x55\x63\x4f\x49\x77\x71\x31\x38\x47\x67\x3d\x3d','\x52\x43\x33\x44\x75\x77\x63\x4b','\x5a\x56\x58\x44\x6f\x30\x67\x6a\x77\x70\x41\x3d','\x41\x63\x4f\x45\x4f\x67\x33\x43\x69\x51\x3d\x3d','\x49\x30\x77\x42\x53\x69\x6f\x3d','\x46\x73\x4b\x74\x77\x37\x41\x6f\x56\x73\x4f\x7a\x63\x30\x34\x3d','\x63\x4d\x4b\x2f\x77\x72\x62\x44\x6c\x63\x4b\x43','\x57\x77\x44\x44\x6b\x52\x49\x75\x50\x4d\x4f\x63','\x46\x63\x4f\x6c\x4f\x77\x6a\x43\x6e\x67\x3d\x3d','\x77\x71\x63\x6d\x77\x71\x41\x77\x46\x77\x3d\x3d','\x77\x71\x5a\x4f\x58\x38\x4b\x42\x4d\x51\x3d\x3d','\x50\x78\x49\x77\x44\x67\x34\x3d','\x4d\x4d\x4b\x6e\x77\x34\x51\x31\x56\x38\x4f\x75\x65\x46\x74\x50\x77\x36\x34\x3d','\x77\x35\x74\x6a\x77\x35\x6f\x4e\x45\x51\x3d\x3d','\x77\x34\x2f\x43\x6e\x6a\x70\x79\x77\x72\x44\x43\x6a\x41\x3d\x3d','\x77\x34\x45\x38\x77\x37\x2f\x43\x75\x4d\x4b\x4f','\x77\x6f\x39\x38\x77\x35\x64\x48\x41\x67\x3d\x3d','\x4b\x68\x66\x43\x6e\x32\x67\x71','\x47\x52\x6a\x43\x6a\x54\x67\x77\x41\x77\x3d\x3d','\x46\x4d\x4f\x74\x42\x78\x6a\x43\x6c\x77\x3d\x3d','\x41\x4d\x4b\x30\x77\x36\x33\x43\x6b\x54\x55\x3d','\x65\x33\x6f\x47\x55\x73\x4b\x45','\x51\x6c\x6e\x43\x6b\x77\x3d\x3d','\x77\x71\x38\x2b\x77\x70\x67\x70\x49\x51\x3d\x3d','\x4a\x73\x4b\x55\x77\x34\x54\x43\x6f\x54\x56\x50\x77\x71\x6c\x6c\x58\x51\x6f\x3d','\x4f\x53\x45\x70\x4c\x43\x54\x43\x72\x67\x3d\x3d','\x58\x63\x4b\x30\x77\x72\x54\x44\x72\x73\x4b\x77','\x77\x36\x62\x43\x72\x4d\x4f\x41\x77\x35\x46\x79','\x42\x63\x4b\x74\x77\x36\x6b\x74\x52\x51\x3d\x3d','\x77\x37\x7a\x44\x6a\x57\x63\x79\x77\x34\x67\x3d','\x58\x63\x4f\x69\x77\x34\x6e\x43\x72\x6c\x4d\x3d','\x77\x71\x38\x4e\x77\x6f\x76\x43\x6f\x58\x55\x3d','\x57\x38\x4b\x54\x66\x63\x4b\x56\x77\x34\x6f\x3d','\x77\x72\x50\x43\x6e\x43\x7a\x43\x70\x7a\x38\x3d','\x59\x38\x4b\x37\x77\x37\x33\x43\x74\x45\x4d\x3d','\x45\x4d\x4f\x52\x77\x35\x2f\x44\x71\x43\x35\x55\x77\x72\x68\x37\x64\x77\x55\x3d','\x77\x34\x44\x43\x69\x4d\x4f\x4e\x77\x36\x46\x61','\x49\x53\x62\x44\x6b\x6c\x59\x30','\x4e\x31\x64\x57\x77\x70\x70\x7a\x77\x71\x62\x43\x73\x73\x4b\x78\x4d\x41\x3d\x3d','\x77\x72\x50\x44\x6e\x4d\x4f\x41\x62\x63\x4b\x76','\x77\x37\x68\x33\x77\x35\x30\x77\x47\x51\x3d\x3d','\x49\x51\x55\x31\x41\x7a\x67\x3d','\x77\x70\x68\x45\x59\x38\x4b\x64\x4d\x41\x3d\x3d','\x4c\x68\x6b\x4d\x48\x52\x67\x3d','\x77\x35\x4a\x44\x4d\x73\x4f\x73\x50\x77\x3d\x3d','\x77\x70\x66\x43\x70\x78\x4c\x43\x6a\x42\x4d\x3d','\x77\x70\x6c\x52\x53\x63\x4b\x7a\x49\x51\x49\x3d'];(function(_0xcc0d1c,_0xef6ad5){var _0x5469a9=function(_0x3d1ae1){while(--_0x3d1ae1){_0xcc0d1c['push'](_0xcc0d1c['shift']());}};_0x5469a9(++_0xef6ad5);}(_0xef6a,0x99));var _0x5469=function(_0xcc0d1c,_0xef6ad5){_0xcc0d1c=_0xcc0d1c-0x0;var _0x5469a9=_0xef6a[_0xcc0d1c];if(_0x5469['ogaaYT']===undefined){(function(){var _0x2ba086=typeof window!=='undefined'?window:typeof process==='object'&&typeof require==='function'&&typeof global==='object'?global:this;var _0x2fc4f9='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';_0x2ba086['atob']||(_0x2ba086['atob']=function(_0x49b5a5){var _0x23766e=String(_0x49b5a5)['replace'](/=+$/,'');var _0x556953='';for(var _0x523e23=0x0,_0x2713d0,_0x13e8c9,_0x4fe0de=0x0;_0x13e8c9=_0x23766e['charAt'](_0x4fe0de++);~_0x13e8c9&&(_0x2713d0=_0x523e23%0x4?_0x2713d0*0x40+_0x13e8c9:_0x13e8c9,_0x523e23++%0x4)?_0x556953+=String['fromCharCode'](0xff&_0x2713d0>>(-0x2*_0x523e23&0x6)):0x0){_0x13e8c9=_0x2fc4f9['indexOf'](_0x13e8c9);}return _0x556953;});}());var _0x382e90=function(_0x3029d7,_0x28d43d){var _0x37bab7=[],_0x149d22=0x0,_0x31f572,_0x45d5a2='',_0x299a61='';_0x3029d7=atob(_0x3029d7);for(var _0x2d3c5c=0x0,_0xe35ac8=_0x3029d7['length'];_0x2d3c5c<_0xe35ac8;_0x2d3c5c++){_0x299a61+='%'+('00'+_0x3029d7['charCodeAt'](_0x2d3c5c)['toString'](0x10))['slice'](-0x2);}_0x3029d7=decodeURIComponent(_0x299a61);var _0xffc9dd;for(_0xffc9dd=0x0;_0xffc9dd<0x100;_0xffc9dd++){_0x37bab7[_0xffc9dd]=_0xffc9dd;}for(_0xffc9dd=0x0;_0xffc9dd<0x100;_0xffc9dd++){_0x149d22=(_0x149d22+_0x37bab7[_0xffc9dd]+_0x28d43d['charCodeAt'](_0xffc9dd%_0x28d43d['length']))%0x100;_0x31f572=_0x37bab7[_0xffc9dd];_0x37bab7[_0xffc9dd]=_0x37bab7[_0x149d22];_0x37bab7[_0x149d22]=_0x31f572;}_0xffc9dd=0x0;_0x149d22=0x0;for(var _0x221c8e=0x0;_0x221c8e<_0x3029d7['length'];_0x221c8e++){_0xffc9dd=(_0xffc9dd+0x1)%0x100;_0x149d22=(_0x149d22+_0x37bab7[_0xffc9dd])%0x100;_0x31f572=_0x37bab7[_0xffc9dd];_0x37bab7[_0xffc9dd]=_0x37bab7[_0x149d22];_0x37bab7[_0x149d22]=_0x31f572;_0x45d5a2+=String['fromCharCode'](_0x3029d7['charCodeAt'](_0x221c8e)^_0x37bab7[(_0x37bab7[_0xffc9dd]+_0x37bab7[_0x149d22])%0x100]);}return _0x45d5a2;};_0x5469['TZtjVZ']=_0x382e90;_0x5469['wqlFBQ']={};_0x5469['ogaaYT']=!![];}var _0x3d1ae1=_0x5469['wqlFBQ'][_0xcc0d1c];if(_0x3d1ae1===undefined){if(_0x5469['FCPsFr']===undefined){_0x5469['FCPsFr']=!![];}_0x5469a9=_0x5469['TZtjVZ'](_0x5469a9,_0xef6ad5);_0x5469['wqlFBQ'][_0xcc0d1c]=_0x5469a9;}else{_0x5469a9=_0x3d1ae1;}return _0x5469a9;};var SCREEN_SIZE=Render[_0x5469('\x30\x78\x31\x63\x66','\x24\x77\x61\x6b')+_0x5469('\x30\x78\x63\x61','\x38\x4f\x51\x72')]();var screenX=SCREEN_SIZE[0x0];var screenY=SCREEN_SIZE[0x1];var baseX=0xf,baseY=screenY-0xc8;function time_to_ticks(_0x4d0875){var _0x4b667b={};_0x4b667b[_0x5469('\x30\x78\x36\x33','\x6d\x55\x46\x78')]=function(_0x184301,_0x5c6f37){return _0x184301+_0x5c6f37;};_0x4b667b[_0x5469('\x30\x78\x31\x32\x37','\x29\x65\x4d\x57')]=function(_0x1f7bb9,_0x2102f3){return _0x1f7bb9/_0x2102f3;};var _0x329503=_0x4b667b;return Math[_0x5469('\x30\x78\x35\x36','\x46\x75\x48\x59')](_0x329503[_0x5469('\x30\x78\x66','\x79\x4c\x36\x4b')](_0x329503[_0x5469('\x30\x78\x31\x37\x37','\x4d\x46\x35\x54')](_0x4d0875,Globals[_0x5469('\x30\x78\x39\x63','\x65\x49\x54\x62')+'\x61\x6c']()),0.5));}function GetFlag(_0x5378ec){var _0x1bd392={};_0x1bd392[_0x5469('\x30\x78\x31\x63\x62','\x75\x54\x56\x68')]=function(_0x448052,_0x493710){return _0x448052===_0x493710;};_0x1bd392[_0x5469('\x30\x78\x65\x33','\x7a\x39\x62\x50')]=function(_0x1d561e,_0x3a044e){return _0x1d561e&_0x3a044e;};_0x1bd392[_0x5469('\x30\x78\x38\x35','\x6d\x79\x66\x47')]=_0x5469('\x30\x78\x33\x38','\x4d\x46\x35\x54')+'\x72';_0x1bd392[_0x5469('\x30\x78\x62\x30','\x59\x7a\x4a\x56')]=_0x5469('\x30\x78\x34\x38','\x7a\x39\x62\x50');_0x1bd392[_0x5469('\x30\x78\x66\x30','\x32\x77\x46\x34')]=_0x5469('\x30\x78\x33\x61','\x59\x7a\x4a\x56');_0x1bd392[_0x5469('\x30\x78\x32\x61','\x67\x76\x25\x4b')]=function(_0x2ec43d,_0x3ff0d5){return _0x2ec43d!==_0x3ff0d5;};_0x1bd392[_0x5469('\x30\x78\x39\x33','\x43\x21\x55\x56')]=_0x5469('\x30\x78\x31\x38\x62','\x6e\x70\x55\x33');_0x1bd392[_0x5469('\x30\x78\x31\x32\x34','\x40\x47\x21\x29')]=_0x5469('\x30\x78\x31\x39\x66','\x6d\x41\x4c\x48');var _0x43f9c7=_0x1bd392;if(_0x43f9c7[_0x5469('\x30\x78\x37\x30','\x6d\x41\x4c\x48')](Entity[_0x5469('\x30\x78\x31\x36\x65','\x65\x49\x54\x62')](Entity[_0x5469('\x30\x78\x61\x66','\x6d\x79\x66\x47')+_0x5469('\x30\x78\x31\x35\x38','\x4d\x46\x35\x54')](),_0x43f9c7[_0x5469('\x30\x78\x39\x34','\x72\x43\x64\x47')],_0x43f9c7[_0x5469('\x30\x78\x32','\x75\x54\x56\x68')]),_0x5378ec)){if(_0x43f9c7[_0x5469('\x30\x78\x61\x61','\x72\x77\x59\x25')](_0x43f9c7[_0x5469('\x30\x78\x38\x63','\x69\x76\x32\x77')],_0x43f9c7[_0x5469('\x30\x78\x34\x33','\x40\x69\x4f\x30')])){return!![];}else{return!![];}}else{if(_0x43f9c7[_0x5469('\x30\x78\x38\x33','\x57\x35\x50\x6c')](_0x43f9c7[_0x5469('\x30\x78\x31\x38\x38','\x75\x54\x56\x68')],_0x43f9c7[_0x5469('\x30\x78\x64\x39','\x4f\x73\x44\x77')])){return![];}else{if(_0x43f9c7[_0x5469('\x30\x78\x31\x38\x32','\x65\x49\x54\x62')](a[i],obj)){return!![];}}}}function $0x1c(_0x4c8528,_0x27d2d2){var _0x33d8d2={};_0x33d8d2[_0x5469('\x30\x78\x31\x34\x35','\x4d\x46\x35\x54')]=_0x5469('\x30\x78\x30','\x75\x54\x56\x68');_0x33d8d2[_0x5469('\x30\x78\x33\x33','\x21\x53\x6a\x21')]=function(_0x264d60,_0x2b723f){return _0x264d60===_0x2b723f;};_0x33d8d2[_0x5469('\x30\x78\x31\x32\x31','\x48\x66\x64\x41')]=function(_0x2ee3e5,_0x42cfde){return _0x2ee3e5!==_0x42cfde;};_0x33d8d2[_0x5469('\x30\x78\x66\x37','\x29\x65\x4d\x57')]=_0x5469('\x30\x78\x63\x38','\x69\x76\x32\x77');_0x33d8d2[_0x5469('\x30\x78\x65\x31','\x4d\x46\x35\x54')]=function(_0x2f6a45,_0x3cda31){return _0x2f6a45===_0x3cda31;};_0x33d8d2[_0x5469('\x30\x78\x34\x34','\x39\x72\x74\x68')]=_0x5469('\x30\x78\x32\x39','\x2a\x73\x39\x51');var _0x5f5b59=_0x33d8d2;var _0x1b7d79=_0x4c8528[_0x5469('\x30\x78\x31\x63\x37','\x43\x21\x55\x56')];while(_0x1b7d79--){if(_0x5f5b59[_0x5469('\x30\x78\x37\x35','\x30\x29\x42\x41')](_0x5f5b59[_0x5469('\x30\x78\x31\x30\x35','\x65\x49\x54\x62')],_0x5f5b59[_0x5469('\x30\x78\x36\x38','\x29\x25\x46\x6c')])){Cheat[_0x5469('\x30\x78\x31\x65\x37','\x46\x75\x48\x59')+_0x5469('\x30\x78\x37\x64','\x45\x59\x77\x23')](_0x5f5b59[_0x5469('\x30\x78\x31\x39\x36','\x6d\x41\x4c\x48')]);}else{if(_0x5f5b59[_0x5469('\x30\x78\x39\x32','\x6d\x55\x68\x36')](_0x4c8528[_0x1b7d79],_0x27d2d2)){if(_0x5f5b59[_0x5469('\x30\x78\x62\x37','\x2a\x73\x39\x51')](_0x5f5b59[_0x5469('\x30\x78\x31\x64\x33','\x48\x66\x64\x41')],_0x5f5b59[_0x5469('\x30\x78\x65\x34','\x75\x54\x56\x68')])){var _0x278bfd=this[_0x5469('\x30\x78\x32\x34','\x6d\x79\x66\x47')];while(_0x278bfd--){if(_0x5f5b59[_0x5469('\x30\x78\x31\x61\x32','\x4d\x46\x35\x54')](this[_0x278bfd],_0x27d2d2)){return!![];}}return![];}else{return!![];}}}}return![];}Array[_0x5469('\x30\x78\x31\x37','\x48\x66\x64\x41')][_0x5469('\x30\x78\x31\x64\x62','\x68\x31\x58\x58')]=function(_0x21792f){var _0x4e4a9d={};_0x4e4a9d[_0x5469('\x30\x78\x31\x35\x37','\x38\x44\x34\x36')]=_0x5469('\x30\x78\x65\x64','\x6e\x70\x55\x33');_0x4e4a9d[_0x5469('\x30\x78\x35\x62','\x29\x25\x46\x6c')]=function(_0x40075c,_0x473033){return _0x40075c!==_0x473033;};_0x4e4a9d[_0x5469('\x30\x78\x31\x33\x30','\x49\x65\x75\x4a')]=_0x5469('\x30\x78\x31\x38\x39','\x57\x6f\x57\x28');_0x4e4a9d[_0x5469('\x30\x78\x62\x38','\x39\x72\x74\x68')]=_0x5469('\x30\x78\x35\x39','\x29\x65\x4d\x57');_0x4e4a9d[_0x5469('\x30\x78\x31\x33\x66','\x65\x49\x54\x62')]=function(_0x5f367d,_0x4060ba){return _0x5f367d===_0x4060ba;};_0x4e4a9d[_0x5469('\x30\x78\x34\x39','\x38\x44\x34\x36')]=function(_0x154b5a,_0x1549ae){return _0x154b5a===_0x1549ae;};_0x4e4a9d[_0x5469('\x30\x78\x31\x62\x35','\x69\x76\x32\x77')]=_0x5469('\x30\x78\x31\x30\x65','\x24\x77\x61\x6b');var _0xa31816=_0x4e4a9d;var _0x1f4eb8=this[_0x5469('\x30\x78\x31\x35\x31','\x65\x64\x5d\x26')];while(_0x1f4eb8--){if(_0xa31816[_0x5469('\x30\x78\x31\x65\x38','\x65\x64\x5d\x26')](_0xa31816[_0x5469('\x30\x78\x31\x31\x30','\x67\x76\x25\x4b')],_0xa31816[_0x5469('\x30\x78\x32\x66','\x72\x43\x64\x47')])){if(_0xa31816[_0x5469('\x30\x78\x39\x35','\x38\x4f\x51\x72')](this[_0x1f4eb8],_0x21792f)){if(_0xa31816[_0x5469('\x30\x78\x31\x33\x34','\x2a\x73\x39\x51')](_0xa31816[_0x5469('\x30\x78\x65\x62','\x6d\x79\x66\x47')],_0xa31816[_0x5469('\x30\x78\x31\x36\x63','\x2a\x73\x39\x51')])){return!![];}else{return![];}}}else{return _0xa31816[_0x5469('\x30\x78\x31\x64\x38','\x40\x69\x4f\x30')];}}return![];};var _0x183c=[_0x5469('\x30\x78\x31\x36\x34','\x39\x6c\x4c\x65'),_0x5469('\x30\x78\x31\x65\x30','\x49\x65\x75\x4a')];var _0x662=null;function _0x8122(){var _0x172f95={};_0x172f95[_0x5469('\x30\x78\x31\x34\x34','\x21\x74\x63\x73')]=function(_0x30a5c0,_0x5f5a01){return _0x30a5c0&_0x5f5a01;};_0x172f95[_0x5469('\x30\x78\x31\x35\x64','\x49\x65\x75\x4a')]=_0x5469('\x30\x78\x33\x38','\x4d\x46\x35\x54')+'\x72';_0x172f95[_0x5469('\x30\x78\x66\x35','\x30\x29\x42\x41')]=_0x5469('\x30\x78\x31\x39\x39','\x38\x44\x34\x36');_0x172f95[_0x5469('\x30\x78\x34','\x6d\x55\x46\x78')]=function(_0x1cc5cb,_0x26ed1d){return _0x1cc5cb==_0x26ed1d;};_0x172f95[_0x5469('\x30\x78\x35\x63','\x65\x64\x5d\x26')]=function(_0x229c9e,_0x359ac0){return _0x229c9e%_0x359ac0;};_0x172f95[_0x5469('\x30\x78\x31\x35\x39','\x2a\x73\x39\x51')]=function(_0x40374d){return _0x40374d();};_0x172f95[_0x5469('\x30\x78\x38\x37','\x65\x64\x5d\x26')]=function(_0x10ea43,_0x12aa6b){return _0x10ea43>_0x12aa6b;};_0x172f95[_0x5469('\x30\x78\x31\x36','\x39\x6c\x4c\x65')]=function(_0x65017,_0x21b970){return _0x65017!==_0x21b970;};_0x172f95[_0x5469('\x30\x78\x35\x38','\x67\x76\x25\x4b')]=_0x5469('\x30\x78\x66\x62','\x39\x72\x74\x68');_0x172f95[_0x5469('\x30\x78\x64\x66','\x29\x65\x4d\x57')]=_0x5469('\x30\x78\x62\x63','\x79\x68\x40\x45');_0x172f95[_0x5469('\x30\x78\x31\x33\x38','\x39\x6c\x4c\x65')]=_0x5469('\x30\x78\x38','\x72\x77\x59\x25');_0x172f95[_0x5469('\x30\x78\x31\x33\x37','\x46\x75\x48\x59')]=function(_0x639b53,_0x353e7e){return _0x639b53==_0x353e7e;};_0x172f95[_0x5469('\x30\x78\x31\x34\x63','\x67\x76\x25\x4b')]=function(_0x316440,_0x1d8522){return _0x316440===_0x1d8522;};_0x172f95[_0x5469('\x30\x78\x31\x62\x38','\x21\x74\x63\x73')]=_0x5469('\x30\x78\x31\x62\x33','\x32\x77\x46\x34');_0x172f95[_0x5469('\x30\x78\x32\x35','\x23\x67\x5d\x6f')]=_0x5469('\x30\x78\x31\x39\x61','\x72\x77\x59\x25');_0x172f95[_0x5469('\x30\x78\x64\x63','\x6c\x66\x45\x68')]=_0x5469('\x30\x78\x31\x32\x61','\x40\x47\x21\x29');_0x172f95[_0x5469('\x30\x78\x31\x63\x31','\x39\x6c\x4c\x65')]=_0x5469('\x30\x78\x31\x31\x38','\x39\x72\x74\x68')+_0x5469('\x30\x78\x31\x61\x36','\x45\x59\x77\x23');_0x172f95[_0x5469('\x30\x78\x31\x62\x34','\x21\x53\x6a\x21')]=_0x5469('\x30\x78\x37\x65','\x40\x69\x4f\x30');_0x172f95[_0x5469('\x30\x78\x33\x39','\x6d\x41\x4c\x48')]=_0x5469('\x30\x78\x32\x64','\x6d\x55\x68\x36')+_0x5469('\x30\x78\x31\x30\x30','\x6d\x41\x4c\x48');_0x172f95[_0x5469('\x30\x78\x31\x61\x61','\x46\x40\x62\x77')]=_0x5469('\x30\x78\x38\x34','\x40\x69\x4f\x30');_0x172f95[_0x5469('\x30\x78\x31\x36\x33','\x65\x49\x54\x62')]=_0x5469('\x30\x78\x31\x62\x32','\x2a\x73\x39\x51');_0x172f95[_0x5469('\x30\x78\x31\x32\x36','\x45\x59\x77\x23')]=function(_0x47670c,_0x2b5d15){return _0x47670c+_0x2b5d15;};_0x172f95[_0x5469('\x30\x78\x34\x66','\x43\x21\x55\x56')]=function(_0xc0f4e3,_0x546eec){return _0xc0f4e3+_0x546eec;};_0x172f95[_0x5469('\x30\x78\x31\x35\x36','\x6d\x55\x46\x78')]=function(_0x155b0e,_0x104d65){return _0x155b0e+_0x104d65;};_0x172f95[_0x5469('\x30\x78\x63','\x21\x53\x6a\x21')]=_0x5469('\x30\x78\x31\x32\x30','\x72\x43\x64\x47');_0x172f95[_0x5469('\x30\x78\x31\x39\x35','\x57\x35\x50\x6c')]=_0x5469('\x30\x78\x35\x32','\x30\x52\x61\x63');_0x172f95[_0x5469('\x30\x78\x36\x66','\x6e\x70\x55\x33')]=function(_0x390b64){return _0x390b64();};var _0x4377c3=_0x172f95;if(!_0x4377c3[_0x5469('\x30\x78\x34\x65','\x6d\x33\x45\x65')](_0x183c[_0x5469('\x30\x78\x31\x62\x30','\x7a\x39\x62\x50')](Cheat[_0x5469('\x30\x78\x39\x39','\x6c\x66\x45\x68')+'\x65']()),-0x1)){if(_0x4377c3[_0x5469('\x30\x78\x37\x61','\x2a\x73\x39\x51')](_0x4377c3[_0x5469('\x30\x78\x38\x32','\x32\x77\x46\x34')],_0x4377c3[_0x5469('\x30\x78\x33\x37','\x30\x29\x42\x41')])){return!![];}else{Cheat[_0x5469('\x30\x78\x38\x36','\x68\x31\x58\x58')+_0x5469('\x30\x78\x31\x38\x37','\x29\x65\x4d\x57')](_0x4377c3[_0x5469('\x30\x78\x31\x65\x36','\x24\x32\x52\x28')]);}}else{if(_0x4377c3[_0x5469('\x30\x78\x32\x37','\x65\x64\x5d\x26')](_0x4377c3[_0x5469('\x30\x78\x31\x32\x65','\x67\x76\x25\x4b')],_0x4377c3[_0x5469('\x30\x78\x64\x37','\x29\x25\x46\x6c')])){if(_0x4377c3[_0x5469('\x30\x78\x31\x38\x30','\x6d\x41\x4c\x48')](Entity[_0x5469('\x30\x78\x31\x62','\x30\x29\x42\x41')](Entity[_0x5469('\x30\x78\x35\x61','\x43\x21\x55\x56')+_0x5469('\x30\x78\x31\x31\x33','\x68\x31\x58\x58')](),_0x4377c3[_0x5469('\x30\x78\x38\x30','\x68\x31\x58\x58')],_0x4377c3[_0x5469('\x30\x78\x37\x32','\x65\x49\x54\x62')]),FLAG)){return!![];}else{return![];}}else{if(_0x4377c3[_0x5469('\x30\x78\x64\x36','\x65\x49\x54\x62')](_0x662,null)){if(_0x4377c3[_0x5469('\x30\x78\x31\x39','\x39\x6c\x4c\x65')](_0x4377c3[_0x5469('\x30\x78\x32\x65','\x40\x69\x4f\x30')],_0x4377c3[_0x5469('\x30\x78\x31\x36\x37','\x32\x77\x46\x34')])){UI[_0x5469('\x30\x78\x38\x66','\x75\x54\x56\x68')](_0x4377c3[_0x5469('\x30\x78\x32\x32','\x39\x6c\x4c\x65')],_0x4377c3[_0x5469('\x30\x78\x34\x62','\x6e\x48\x48\x64')],_0x4377c3[_0x5469('\x30\x78\x63\x63','\x21\x53\x6a\x21')],_0x4377c3[_0x5469('\x30\x78\x36\x65','\x39\x72\x74\x68')],![]);UI[_0x5469('\x30\x78\x31\x31\x32','\x79\x68\x40\x45')+'\x6e'](_0x4377c3[_0x5469('\x30\x78\x63\x65','\x6d\x55\x68\x36')],[_0x4377c3[_0x5469('\x30\x78\x31\x38\x31','\x29\x65\x4d\x57')],_0x4377c3[_0x5469('\x30\x78\x33\x66','\x48\x52\x74\x48')]]);Cheat[_0x5469('\x30\x78\x31\x30','\x2a\x73\x39\x51')]([0x6c,0xc3,0x12,0xff],_0x4377c3[_0x5469('\x30\x78\x35\x34','\x67\x76\x25\x4b')](_0x4377c3[_0x5469('\x30\x78\x31\x32\x32','\x6e\x48\x48\x64')](_0x4377c3[_0x5469('\x30\x78\x31\x34\x38','\x41\x6a\x41\x37')]('\x0a\x0a',_0x4377c3[_0x5469('\x30\x78\x37\x33','\x32\x77\x46\x34')]),Cheat[_0x5469('\x30\x78\x31\x36\x66','\x72\x43\x64\x47')+'\x65']()[_0x5469('\x30\x78\x31\x32\x38','\x65\x49\x54\x62')]()),_0x4377c3[_0x5469('\x30\x78\x31\x30\x34','\x6d\x55\x68\x36')]));_0x662=0x1;}else{if(local_player&&_0x4377c3[_0x5469('\x30\x78\x31\x34\x65','\x67\x76\x25\x4b')](_0x4377c3[_0x5469('\x30\x78\x35\x63','\x65\x64\x5d\x26')](Globals[_0x5469('\x30\x78\x66\x63','\x24\x32\x52\x28')](),0x2),0x0)){_0x4377c3[_0x5469('\x30\x78\x31\x34\x30','\x72\x77\x59\x25')](run_tag_animation);}}}_0x4377c3[_0x5469('\x30\x78\x31\x30\x66','\x24\x32\x52\x28')](on_paint);}}}var clan_tag_prev='';var enabled_prev=_0x5469('\x30\x78\x38\x64','\x30\x29\x42\x41');var FL_FROZEN=0x1<<0x6;var matchend=0x0;function gamesense_anim(_0x432cc5,_0x41fe0b){var _0x336b1d={};_0x336b1d[_0x5469('\x30\x78\x34\x30','\x39\x6c\x4c\x65')]=function(_0x2998a4,_0x7c60c2){return _0x2998a4+_0x7c60c2;};_0x336b1d[_0x5469('\x30\x78\x31\x37\x62','\x30\x29\x42\x41')]=function(_0x2cffd6,_0x4f7ebf){return _0x2cffd6+_0x4f7ebf;};_0x336b1d[_0x5469('\x30\x78\x31\x62\x66','\x67\x76\x25\x4b')]=_0x5469('\x30\x78\x31\x35\x66','\x75\x54\x56\x68')+_0x5469('\x30\x78\x31\x30\x61','\x24\x25\x57\x34');_0x336b1d[_0x5469('\x30\x78\x33','\x21\x74\x63\x73')]=_0x5469('\x30\x78\x39\x37','\x4f\x73\x44\x77')+_0x5469('\x30\x78\x31\x34','\x40\x47\x21\x29')+'\x20\x20';_0x336b1d[_0x5469('\x30\x78\x31\x37\x38','\x57\x6f\x57\x28')]=function(_0x6897be,_0x4521c1){return _0x6897be+_0x4521c1;};_0x336b1d[_0x5469('\x30\x78\x31\x64\x36','\x48\x66\x64\x41')]=function(_0x38490d,_0x51d16a){return _0x38490d(_0x51d16a);};_0x336b1d[_0x5469('\x30\x78\x31\x35\x32','\x24\x25\x57\x34')]=function(_0x5ef8f8,_0x404c8d){return _0x5ef8f8/_0x404c8d;};_0x336b1d[_0x5469('\x30\x78\x31\x66','\x24\x77\x61\x6b')]=function(_0x2ff044,_0x256b81){return _0x2ff044(_0x256b81);};_0x336b1d[_0x5469('\x30\x78\x34\x35','\x65\x64\x5d\x26')]=function(_0x596a93,_0x40b0cd){return _0x596a93%_0x40b0cd;};_0x336b1d[_0x5469('\x30\x78\x31\x30\x33','\x65\x49\x54\x62')]=function(_0x231686,_0x2959c9){return _0x231686==_0x2959c9;};_0x336b1d[_0x5469('\x30\x78\x31\x33\x64','\x57\x6f\x57\x28')]=function(_0x24dc2e,_0x3d4156){return _0x24dc2e!==_0x3d4156;};_0x336b1d[_0x5469('\x30\x78\x31\x32\x63','\x46\x40\x62\x77')]=_0x5469('\x30\x78\x31\x62\x61','\x6d\x55\x46\x78');_0x336b1d[_0x5469('\x30\x78\x31\x38\x33','\x23\x67\x5d\x6f')]=function(_0x5f2811,_0x525591){return _0x5f2811(_0x525591);};_0x336b1d[_0x5469('\x30\x78\x31\x35\x30','\x21\x74\x63\x73')]=function(_0x52a4bc,_0x40aee7){return _0x52a4bc<_0x40aee7;};_0x336b1d[_0x5469('\x30\x78\x39\x66','\x24\x25\x57\x34')]=function(_0x1531c4,_0x303619){return _0x1531c4===_0x303619;};_0x336b1d[_0x5469('\x30\x78\x65\x37','\x21\x74\x63\x73')]=_0x5469('\x30\x78\x33\x35','\x6c\x66\x45\x68');_0x336b1d[_0x5469('\x30\x78\x31\x37\x39','\x38\x4f\x51\x72')]=_0x5469('\x30\x78\x61','\x24\x32\x52\x28');_0x336b1d[_0x5469('\x30\x78\x31\x39\x65','\x65\x49\x54\x62')]=_0x5469('\x30\x78\x31\x62\x64','\x46\x40\x62\x77');_0x336b1d[_0x5469('\x30\x78\x31\x61\x63','\x46\x40\x62\x77')]=function(_0x1a0a92,_0x231d65){return _0x1a0a92+_0x231d65;};var _0x2c033b=_0x336b1d;var _0x396c88=_0x2c033b[_0x5469('\x30\x78\x31\x35\x65','\x40\x47\x21\x29')](_0x2c033b[_0x5469('\x30\x78\x31\x64\x30','\x21\x53\x6a\x21')](_0x2c033b[_0x5469('\x30\x78\x35\x66','\x39\x6c\x4c\x65')],_0x432cc5),_0x2c033b[_0x5469('\x30\x78\x31\x39\x33','\x57\x6f\x57\x28')]);var _0x3bcfee=_0x2c033b[_0x5469('\x30\x78\x31\x62\x36','\x6d\x55\x46\x78')](Globals[_0x5469('\x30\x78\x31\x65\x33','\x6c\x66\x45\x68')](),_0x2c033b[_0x5469('\x30\x78\x31\x37\x65','\x59\x7a\x4a\x56')](time_to_ticks,Local[_0x5469('\x30\x78\x66\x66','\x38\x4f\x51\x72')]()));var _0x3ddc3d=_0x2c033b[_0x5469('\x30\x78\x31\x34\x66','\x79\x4c\x36\x4b')](_0x3bcfee,_0x2c033b[_0x5469('\x30\x78\x61\x64','\x6d\x33\x45\x65')](time_to_ticks,0.3));_0x3ddc3d=Math[_0x5469('\x30\x78\x61\x36','\x79\x4c\x36\x4b')](_0x2c033b[_0x5469('\x30\x78\x61\x39','\x6d\x55\x68\x36')](_0x3ddc3d,_0x41fe0b[_0x5469('\x30\x78\x66\x31','\x29\x65\x4d\x57')]));_0x3ddc3d=_0x2c033b[_0x5469('\x30\x78\x31\x37\x38','\x57\x6f\x57\x28')](_0x41fe0b[_0x2c033b[_0x5469('\x30\x78\x31\x65\x35','\x6d\x33\x45\x65')](_0x3ddc3d,0x1)],0x1);if(_0x2c033b[_0x5469('\x30\x78\x31\x63\x39','\x72\x43\x64\x47')](GetFlag,FL_FROZEN)&&_0x2c033b[_0x5469('\x30\x78\x31\x39\x30','\x72\x43\x64\x47')](matchend,0x2)){if(_0x2c033b[_0x5469('\x30\x78\x31\x38\x63','\x4f\x73\x44\x77')](_0x2c033b[_0x5469('\x30\x78\x31\x31\x39','\x48\x66\x64\x41')],_0x2c033b[_0x5469('\x30\x78\x36\x61','\x6d\x33\x45\x65')])){matchend=0x2;return;}else{return _0x396c88[_0x5469('\x30\x78\x34\x64','\x6d\x79\x66\x47')](_0x3ddc3d,_0x2c033b[_0x5469('\x30\x78\x61\x65','\x24\x32\x52\x28')](_0x3ddc3d,0xf));}}else if(_0x2c033b[_0x5469('\x30\x78\x37\x62','\x69\x76\x32\x77')](GetFlag,FL_FROZEN)&&_0x2c033b[_0x5469('\x30\x78\x35\x30','\x65\x49\x54\x62')](matchend,0x2)){if(_0x2c033b[_0x5469('\x30\x78\x31\x61\x34','\x57\x35\x50\x6c')](_0x2c033b[_0x5469('\x30\x78\x31\x65\x39','\x75\x54\x56\x68')],_0x2c033b[_0x5469('\x30\x78\x31\x37\x30','\x72\x77\x59\x25')])){matchend=0x0;}else{return _0x2c033b[_0x5469('\x30\x78\x31\x39\x65','\x65\x49\x54\x62')];}}return _0x396c88[_0x5469('\x30\x78\x31\x39\x31','\x2a\x73\x39\x51')](_0x3ddc3d,_0x2c033b[_0x5469('\x30\x78\x31\x34\x62','\x49\x65\x75\x4a')](_0x3ddc3d,0xf));}function run_tag_animation(){var _0x3f9ddb={};_0x3f9ddb[_0x5469('\x30\x78\x63\x32','\x41\x6a\x41\x37')]=function(_0x231637,_0x56c505){return _0x231637==_0x56c505;};_0x3f9ddb[_0x5469('\x30\x78\x31\x64\x31','\x69\x76\x32\x77')]=_0x5469('\x30\x78\x33\x31','\x59\x7a\x4a\x56')+_0x5469('\x30\x78\x31\x33\x35','\x57\x35\x50\x6c');_0x3f9ddb[_0x5469('\x30\x78\x61\x37','\x6c\x66\x45\x68')]=function(_0xdd4dda,_0x3da2ae){return _0xdd4dda===_0x3da2ae;};_0x3f9ddb[_0x5469('\x30\x78\x31\x37\x35','\x30\x29\x42\x41')]=_0x5469('\x30\x78\x31\x36\x64','\x30\x52\x61\x63');_0x3f9ddb[_0x5469('\x30\x78\x62\x36','\x79\x4c\x36\x4b')]=function(_0x4e6034,_0x551f58,_0x40a810){return _0x4e6034(_0x551f58,_0x40a810);};_0x3f9ddb[_0x5469('\x30\x78\x39\x62','\x2a\x73\x39\x51')]=_0x5469('\x30\x78\x31\x62\x32','\x2a\x73\x39\x51');_0x3f9ddb[_0x5469('\x30\x78\x31\x37\x33','\x23\x67\x5d\x6f')]=function(_0x3deab2,_0x554528){return _0x3deab2!=_0x554528;};_0x3f9ddb[_0x5469('\x30\x78\x31\x61\x62','\x32\x77\x46\x34')]=_0x5469('\x30\x78\x31\x39\x37','\x68\x31\x58\x58');var _0x5c0ac0=_0x3f9ddb;if(_0x5c0ac0[_0x5469('\x30\x78\x62','\x46\x40\x62\x77')](UI[_0x5469('\x30\x78\x31\x39\x38','\x6d\x41\x4c\x48')](_0x5c0ac0[_0x5469('\x30\x78\x31\x30\x32','\x2a\x73\x39\x51')]),0x1)){if(_0x5c0ac0[_0x5469('\x30\x78\x31\x39\x32','\x75\x54\x56\x68')](_0x5c0ac0[_0x5469('\x30\x78\x31\x37\x31','\x38\x44\x34\x36')],_0x5c0ac0[_0x5469('\x30\x78\x63\x62','\x32\x77\x46\x34')])){var _0xe8eab6=_0x5c0ac0[_0x5469('\x30\x78\x31\x32\x62','\x45\x59\x77\x23')](gamesense_anim,_0x5c0ac0[_0x5469('\x30\x78\x62\x33','\x32\x77\x46\x34')],[0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xb,0xc,0xd,0xe,0xf,0x10,0x11,0x12,0x13,0x14,0x15,0x16]);if(_0x5c0ac0[_0x5469('\x30\x78\x37\x34','\x57\x6f\x57\x28')](_0xe8eab6,clan_tag_prev)){if(_0x5c0ac0[_0x5469('\x30\x78\x61\x37','\x6c\x66\x45\x68')](_0x5c0ac0[_0x5469('\x30\x78\x36\x30','\x38\x4f\x51\x72')],_0x5c0ac0[_0x5469('\x30\x78\x31\x36\x32','\x29\x25\x46\x6c')])){Local[_0x5469('\x30\x78\x31\x33','\x79\x68\x40\x45')](_0xe8eab6);}else{return!![];}}clan_tag_prev=_0xe8eab6;}else{matchend=0x1;return;}}}var NULL=0x0;function on_paint(){var _0x26d017={};_0x26d017[_0x5469('\x30\x78\x31\x64\x65','\x4f\x73\x44\x77')]=_0x5469('\x30\x78\x36\x62','\x79\x4c\x36\x4b')+_0x5469('\x30\x78\x39','\x6d\x41\x4c\x48');_0x26d017[_0x5469('\x30\x78\x31\x30\x37','\x65\x49\x54\x62')]=function(_0x340428,_0x4f2ee4){return _0x340428+_0x4f2ee4;};_0x26d017[_0x5469('\x30\x78\x31\x64','\x41\x6a\x41\x37')]=_0x5469('\x30\x78\x31\x30\x31','\x21\x74\x63\x73')+_0x5469('\x30\x78\x31\x63\x65','\x7a\x39\x62\x50');_0x26d017[_0x5469('\x30\x78\x37\x38','\x21\x74\x63\x73')]=_0x5469('\x30\x78\x31\x34','\x40\x47\x21\x29')+_0x5469('\x30\x78\x62\x66','\x2a\x73\x39\x51')+'\x20\x20';_0x26d017[_0x5469('\x30\x78\x32\x30','\x46\x40\x62\x77')]=function(_0x4735a5,_0x449ae0){return _0x4735a5(_0x449ae0);};_0x26d017[_0x5469('\x30\x78\x35\x31','\x4d\x46\x35\x54')]=function(_0x42bf9c,_0x5d1c9b){return _0x42bf9c==_0x5d1c9b;};_0x26d017[_0x5469('\x30\x78\x36\x64','\x39\x6c\x4c\x65')]=function(_0xc9dc6,_0x313092){return _0xc9dc6+_0x313092;};_0x26d017[_0x5469('\x30\x78\x31\x63','\x46\x75\x48\x59')]=function(_0x147e43,_0x1c01ee){return _0x147e43<_0x1c01ee;};_0x26d017[_0x5469('\x30\x78\x31\x35','\x69\x76\x32\x77')]=_0x5469('\x30\x78\x65\x66','\x72\x77\x59\x25');_0x26d017[_0x5469('\x30\x78\x31\x61\x37','\x79\x68\x40\x45')]=function(_0x1e69d9,_0x47e8a4){return _0x1e69d9/_0x47e8a4;};_0x26d017[_0x5469('\x30\x78\x34\x36','\x67\x76\x25\x4b')]=function(_0x5ccb79,_0x17d35f){return _0x5ccb79%_0x17d35f;};_0x26d017[_0x5469('\x30\x78\x64\x32','\x29\x65\x4d\x57')]=function(_0x9efd8f,_0x2f06dc){return _0x9efd8f+_0x2f06dc;};_0x26d017[_0x5469('\x30\x78\x63\x30','\x40\x69\x4f\x30')]=_0x5469('\x30\x78\x31\x31\x35','\x6d\x79\x66\x47');_0x26d017[_0x5469('\x30\x78\x61\x62','\x6d\x79\x66\x47')]=function(_0x4d107b){return _0x4d107b();};_0x26d017[_0x5469('\x30\x78\x34\x37','\x39\x6c\x4c\x65')]=function(_0x307c40,_0x374b6f){return _0x307c40-_0x374b6f;};_0x26d017[_0x5469('\x30\x78\x31\x38\x34','\x45\x59\x77\x23')]=_0x5469('\x30\x78\x33\x32','\x72\x43\x64\x47')+_0x5469('\x30\x78\x31\x62\x65','\x38\x44\x34\x36')+_0x5469('\x30\x78\x31\x63\x30','\x21\x74\x63\x73')+_0x5469('\x30\x78\x34\x31','\x72\x43\x64\x47')+_0x5469('\x30\x78\x36\x37','\x69\x76\x32\x77')+_0x5469('\x30\x78\x31\x33\x31','\x72\x77\x59\x25');_0x26d017[_0x5469('\x30\x78\x31\x30\x38','\x39\x72\x74\x68')]=function(_0x3bc486,_0x457f3a){return _0x3bc486==_0x457f3a;};_0x26d017[_0x5469('\x30\x78\x31\x61\x38','\x38\x44\x34\x36')]=function(_0x4a6ace,_0x5392c2){return _0x4a6ace!==_0x5392c2;};_0x26d017[_0x5469('\x30\x78\x31\x37\x32','\x39\x72\x74\x68')]=_0x5469('\x30\x78\x34\x63','\x7a\x39\x62\x50');_0x26d017[_0x5469('\x30\x78\x31\x37\x63','\x79\x68\x40\x45')]=_0x5469('\x30\x78\x31\x33\x61','\x46\x40\x62\x77');_0x26d017[_0x5469('\x30\x78\x65\x38','\x48\x66\x64\x41')]=_0x5469('\x30\x78\x39\x65','\x46\x75\x48\x59');_0x26d017[_0x5469('\x30\x78\x62\x64','\x29\x25\x46\x6c')]=_0x5469('\x30\x78\x66\x38','\x21\x74\x63\x73')+_0x5469('\x30\x78\x35\x33','\x40\x47\x21\x29');_0x26d017[_0x5469('\x30\x78\x31\x39\x64','\x48\x52\x74\x48')]=_0x5469('\x30\x78\x31\x36\x61','\x59\x7a\x4a\x56')+_0x5469('\x30\x78\x31\x62\x39','\x38\x44\x34\x36');_0x26d017[_0x5469('\x30\x78\x31\x36\x38','\x45\x59\x77\x23')]=_0x5469('\x30\x78\x65','\x40\x69\x4f\x30')+'\x65\x64';_0x26d017[_0x5469('\x30\x78\x31\x61\x39','\x46\x40\x62\x77')]=function(_0x5562a5,_0x562692){return _0x5562a5!=_0x562692;};_0x26d017[_0x5469('\x30\x78\x31\x35\x34','\x65\x64\x5d\x26')]=_0x5469('\x30\x78\x36\x31','\x79\x4c\x36\x4b');_0x26d017[_0x5469('\x30\x78\x61\x35','\x69\x76\x32\x77')]=_0x5469('\x30\x78\x31\x61\x66','\x39\x72\x74\x68');_0x26d017[_0x5469('\x30\x78\x31\x62\x37','\x32\x77\x46\x34')]=function(_0x3b4013,_0x9939c7){return _0x3b4013!==_0x9939c7;};_0x26d017[_0x5469('\x30\x78\x33\x65','\x38\x44\x34\x36')]=_0x5469('\x30\x78\x31\x33\x36','\x45\x59\x77\x23');_0x26d017[_0x5469('\x30\x78\x31\x38\x66','\x65\x64\x5d\x26')]=function(_0x2fec9e,_0x23b8b0){return _0x2fec9e+_0x23b8b0;};_0x26d017[_0x5469('\x30\x78\x34\x61','\x6c\x66\x45\x68')]=function(_0x2e7b53,_0x8ba6c3){return _0x2e7b53==_0x8ba6c3;};_0x26d017[_0x5469('\x30\x78\x31\x34\x37','\x39\x72\x74\x68')]=function(_0x460198,_0x474e11){return _0x460198==_0x474e11;};_0x26d017[_0x5469('\x30\x78\x32\x33','\x39\x6c\x4c\x65')]=function(_0x1185e6,_0x4204c3){return _0x1185e6===_0x4204c3;};_0x26d017[_0x5469('\x30\x78\x63\x64','\x48\x66\x64\x41')]=_0x5469('\x30\x78\x31\x37\x66','\x24\x25\x57\x34');_0x26d017[_0x5469('\x30\x78\x31\x30\x64','\x79\x4c\x36\x4b')]=_0x5469('\x30\x78\x31\x64\x32','\x65\x64\x5d\x26');_0x26d017[_0x5469('\x30\x78\x61\x34','\x65\x49\x54\x62')]=_0x5469('\x30\x78\x31\x37\x36','\x39\x72\x74\x68');_0x26d017[_0x5469('\x30\x78\x36\x35','\x6c\x66\x45\x68')]=function(_0x45dff9,_0xd5d49c){return _0x45dff9%_0xd5d49c;};_0x26d017[_0x5469('\x30\x78\x31\x33\x33','\x32\x77\x46\x34')]=_0x5469('\x30\x78\x32\x31','\x57\x6f\x57\x28');_0x26d017[_0x5469('\x30\x78\x31\x31\x66','\x24\x32\x52\x28')]=_0x5469('\x30\x78\x61\x30','\x6d\x55\x46\x78');_0x26d017[_0x5469('\x30\x78\x62\x62','\x75\x54\x56\x68')]=function(_0x1c3db0,_0x2bdb47){return _0x1c3db0===_0x2bdb47;};_0x26d017[_0x5469('\x30\x78\x31\x34\x61','\x30\x52\x61\x63')]=_0x5469('\x30\x78\x39\x36','\x57\x6f\x57\x28');var _0x31aef4=_0x26d017;if(_0x31aef4[_0x5469('\x30\x78\x34\x32','\x65\x49\x54\x62')](typeof _0x8122,_0x31aef4[_0x5469('\x30\x78\x36\x63','\x4f\x73\x44\x77')])){if(_0x31aef4[_0x5469('\x30\x78\x31\x36\x36','\x75\x54\x56\x68')](_0x31aef4[_0x5469('\x30\x78\x62\x39','\x46\x75\x48\x59')],_0x31aef4[_0x5469('\x30\x78\x35\x35','\x72\x77\x59\x25')])){Cheat[_0x5469('\x30\x78\x31\x65\x37','\x46\x75\x48\x59')+_0x5469('\x30\x78\x32\x62','\x57\x35\x50\x6c')](_0x31aef4[_0x5469('\x30\x78\x65\x65','\x32\x77\x46\x34')]);}else{var _0x4059c8=_0x31aef4[_0x5469('\x30\x78\x36\x39','\x40\x69\x4f\x30')][_0x5469('\x30\x78\x31\x64\x66','\x24\x25\x57\x34')]('\x7c');var _0x21de03=0x0;while(!![]){switch(_0x4059c8[_0x21de03++]){case'\x30':var _0x4d8032=_0x31aef4[_0x5469('\x30\x78\x31\x36\x31','\x38\x44\x34\x36')](_0x31aef4[_0x5469('\x30\x78\x66\x61','\x40\x47\x21\x29')](_0x31aef4[_0x5469('\x30\x78\x31\x64\x61','\x38\x44\x34\x36')],text),_0x31aef4[_0x5469('\x30\x78\x66\x32','\x4f\x73\x44\x77')]);continue;case'\x31':if(_0x31aef4[_0x5469('\x30\x78\x31\x36\x62','\x6d\x55\x46\x78')](GetFlag,FL_FROZEN)&&_0x31aef4[_0x5469('\x30\x78\x35\x31','\x4d\x46\x35\x54')](matchend,0x2)){return _0x4d8032[_0x5469('\x30\x78\x31\x31\x31','\x67\x76\x25\x4b')](_0x2cd223,_0x31aef4[_0x5469('\x30\x78\x37\x63','\x24\x25\x57\x34')](_0x2cd223,0xf));}else if(_0x31aef4[_0x5469('\x30\x78\x31\x65\x31','\x46\x75\x48\x59')](GetFlag,FL_FROZEN)&&_0x31aef4[_0x5469('\x30\x78\x61\x32','\x29\x65\x4d\x57')](matchend,0x2)){return _0x31aef4[_0x5469('\x30\x78\x31\x35\x62','\x30\x29\x42\x41')];}continue;case'\x32':var _0x2cd223=_0x31aef4[_0x5469('\x30\x78\x31\x38\x61','\x72\x77\x59\x25')](_0x2bb2c8,_0x31aef4[_0x5469('\x30\x78\x31\x31\x62','\x79\x68\x40\x45')](time_to_ticks,0.3));continue;case'\x33':_0x2cd223=_0x31aef4[_0x5469('\x30\x78\x37\x39','\x75\x54\x56\x68')](indices[_0x31aef4[_0x5469('\x30\x78\x31\x35\x35','\x6e\x48\x48\x64')](_0x2cd223,0x1)],0x1);continue;case'\x34':_0x2cd223=Math[_0x5469('\x30\x78\x31\x63\x38','\x29\x65\x4d\x57')](_0x31aef4[_0x5469('\x30\x78\x63\x36','\x2a\x73\x39\x51')](_0x2cd223,indices[_0x5469('\x30\x78\x66\x65','\x4f\x73\x44\x77')]));continue;case'\x35':var _0x2bb2c8=_0x31aef4[_0x5469('\x30\x78\x31\x63\x35','\x75\x54\x56\x68')](Globals[_0x5469('\x30\x78\x63\x31','\x41\x6a\x41\x37')](),_0x31aef4[_0x5469('\x30\x78\x65\x36','\x7a\x39\x62\x50')](time_to_ticks,Local[_0x5469('\x30\x78\x64\x61','\x6c\x66\x45\x68')]()));continue;case'\x36':return _0x4d8032[_0x5469('\x30\x78\x31\x37\x61','\x30\x52\x61\x63')](_0x2cd223,_0x31aef4[_0x5469('\x30\x78\x33\x62','\x79\x4c\x36\x4b')](_0x2cd223,0xf));}break;}}}var _0x3f45fc=UI[_0x5469('\x30\x78\x38\x61','\x6d\x55\x68\x36')](_0x31aef4[_0x5469('\x30\x78\x31\x32','\x6d\x33\x45\x65')]);var _0x185721=Entity[_0x5469('\x30\x78\x31\x39\x34','\x23\x67\x5d\x6f')+_0x5469('\x30\x78\x33\x30','\x6d\x41\x4c\x48')]();var _0x5ec912=Entity[_0x5469('\x30\x78\x38\x38','\x29\x25\x46\x6c')](_0x185721,_0x31aef4[_0x5469('\x30\x78\x31\x36\x30','\x79\x68\x40\x45')],_0x31aef4[_0x5469('\x30\x78\x39\x31','\x46\x40\x62\x77')]);if(_0x31aef4[_0x5469('\x30\x78\x31\x63\x33','\x6d\x55\x68\x36')](Cheat[_0x5469('\x30\x78\x31\x64\x39','\x45\x59\x77\x23')+'\x65'](),_0x31aef4[_0x5469('\x30\x78\x66\x64','\x29\x25\x46\x6c')])){if(_0x31aef4[_0x5469('\x30\x78\x31\x63\x61','\x79\x4c\x36\x4b')](_0x31aef4[_0x5469('\x30\x78\x65\x39','\x30\x29\x42\x41')],_0x31aef4[_0x5469('\x30\x78\x64\x30','\x46\x75\x48\x59')])){Cheat[_0x5469('\x30\x78\x38\x36','\x68\x31\x58\x58')+_0x5469('\x30\x78\x66\x34','\x46\x75\x48\x59')](_0x31aef4[_0x5469('\x30\x78\x62\x31','\x67\x76\x25\x4b')]);}else{if(UI[_0x5469('\x30\x78\x31\x65\x61','\x68\x31\x58\x58')]()){if(_0x31aef4[_0x5469('\x30\x78\x31\x63\x63','\x6d\x33\x45\x65')](_0x31aef4[_0x5469('\x30\x78\x31\x34\x32','\x23\x67\x5d\x6f')],_0x31aef4[_0x5469('\x30\x78\x31\x31','\x6d\x33\x45\x65')])){_0x31aef4[_0x5469('\x30\x78\x31\x30\x63','\x48\x66\x64\x41')](run_tag_animation);}else{Render[_0x5469('\x30\x78\x31\x33\x63','\x67\x76\x25\x4b')](_0x31aef4[_0x5469('\x30\x78\x31\x31\x37','\x40\x47\x21\x29')](baseX,0x2),_0x31aef4[_0x5469('\x30\x78\x31\x38\x65','\x38\x44\x34\x36')](baseY,0xfa),NULL,_0x31aef4[_0x5469('\x30\x78\x64\x65','\x38\x4f\x51\x72')],[0xff,0xff,0xff,0xff],0x10);}}}}if(!World[_0x5469('\x30\x78\x61\x33','\x57\x35\x50\x6c')+_0x5469('\x30\x78\x37\x37','\x30\x52\x61\x63')]()||!_0x185721||_0x31aef4[_0x5469('\x30\x78\x31\x33\x32','\x24\x25\x57\x34')](_0x5ec912[_0x5469('\x30\x78\x31\x61','\x38\x44\x34\x36')](),_0x31aef4[_0x5469('\x30\x78\x31\x37\x34','\x6d\x55\x46\x78')])||_0x31aef4[_0x5469('\x30\x78\x31\x39\x63','\x30\x29\x42\x41')](Global[_0x5469('\x30\x78\x63\x33','\x29\x25\x46\x6c')](),'')){if(_0x31aef4[_0x5469('\x30\x78\x65\x63','\x24\x32\x52\x28')](_0x31aef4[_0x5469('\x30\x78\x36','\x38\x4f\x51\x72')],_0x31aef4[_0x5469('\x30\x78\x61\x63','\x24\x32\x52\x28')])){Local[_0x5469('\x30\x78\x37\x66','\x29\x25\x46\x6c')](clan_tag);}else{matchend=0x0;return;}}if(_0x31aef4[_0x5469('\x30\x78\x31\x32\x33','\x48\x66\x64\x41')](_0x3f45fc,0x1)){if(_0x31aef4[_0x5469('\x30\x78\x37','\x38\x44\x34\x36')](_0x31aef4[_0x5469('\x30\x78\x36\x32','\x43\x21\x55\x56')],_0x31aef4[_0x5469('\x30\x78\x35','\x65\x64\x5d\x26')])){if(UI[_0x5469('\x30\x78\x36\x34','\x67\x76\x25\x4b')]()){Render[_0x5469('\x30\x78\x31\x62\x31','\x24\x32\x52\x28')](_0x31aef4[_0x5469('\x30\x78\x31\x65\x32','\x24\x77\x61\x6b')](baseX,0x2),_0x31aef4[_0x5469('\x30\x78\x62\x65','\x24\x32\x52\x28')](baseY,0xfa),NULL,_0x31aef4[_0x5469('\x30\x78\x31\x34\x31','\x7a\x39\x62\x50')],[0xff,0xff,0xff,0xff],0x10);}}else{if(_0x185721&&_0x31aef4[_0x5469('\x30\x78\x31\x61\x65','\x75\x54\x56\x68')](_0x31aef4[_0x5469('\x30\x78\x31\x38\x36','\x30\x52\x61\x63')](Globals[_0x5469('\x30\x78\x31\x31\x36','\x79\x68\x40\x45')](),0x2),0x0)){if(_0x31aef4[_0x5469('\x30\x78\x33\x63','\x72\x77\x59\x25')](_0x31aef4[_0x5469('\x30\x78\x31\x63\x36','\x30\x29\x42\x41')],_0x31aef4[_0x5469('\x30\x78\x39\x61','\x2a\x73\x39\x51')])){_0x31aef4[_0x5469('\x30\x78\x61\x38','\x48\x52\x74\x48')](run_tag_animation);}else{if(_0x31aef4[_0x5469('\x30\x78\x31\x61\x64','\x6d\x79\x66\x47')](matchend,0x1)){matchend=0x2;}else{matchend=0x0;}return;}}}}else if(_0x31aef4[_0x5469('\x30\x78\x31\x63\x32','\x39\x6c\x4c\x65')](enabled_prev,0x1)){if(_0x31aef4[_0x5469('\x30\x78\x31\x34\x64','\x65\x64\x5d\x26')](_0x31aef4[_0x5469('\x30\x78\x31\x64\x63','\x65\x49\x54\x62')],_0x31aef4[_0x5469('\x30\x78\x32\x36','\x29\x25\x46\x6c')])){Local[_0x5469('\x30\x78\x64\x35','\x49\x65\x75\x4a')]('\x00');}else{matchend=0x2;}}enabled_prev=_0x3f45fc;}function RoundStartListener(){var _0x2b80d2={};_0x2b80d2[_0x5469('\x30\x78\x31\x31\x34','\x43\x21\x55\x56')]=function(_0x436a6e,_0x2b5d88){return _0x436a6e+_0x2b5d88;};_0x2b80d2[_0x5469('\x30\x78\x62\x61','\x69\x76\x32\x77')]=function(_0x11cf4c,_0x5d38c6){return _0x11cf4c-_0x5d38c6;};_0x2b80d2[_0x5469('\x30\x78\x31\x30\x36','\x41\x6a\x41\x37')]=_0x5469('\x30\x78\x64\x34','\x32\x77\x46\x34')+_0x5469('\x30\x78\x35\x37','\x6d\x55\x68\x36')+_0x5469('\x30\x78\x63\x37','\x24\x77\x61\x6b')+_0x5469('\x30\x78\x31\x61\x33','\x6e\x70\x55\x33')+_0x5469('\x30\x78\x31\x34\x36','\x46\x75\x48\x59')+_0x5469('\x30\x78\x63\x39','\x57\x35\x50\x6c');_0x2b80d2[_0x5469('\x30\x78\x31\x61\x31','\x69\x76\x32\x77')]=function(_0x526cfd,_0x1ab321){return _0x526cfd==_0x1ab321;};_0x2b80d2[_0x5469('\x30\x78\x31','\x69\x76\x32\x77')]=_0x5469('\x30\x78\x31\x36\x39','\x79\x68\x40\x45');_0x2b80d2[_0x5469('\x30\x78\x33\x34','\x4d\x46\x35\x54')]=_0x5469('\x30\x78\x36\x36','\x40\x69\x4f\x30');_0x2b80d2[_0x5469('\x30\x78\x31\x61\x35','\x45\x59\x77\x23')]=_0x5469('\x30\x78\x64','\x41\x6a\x41\x37')+_0x5469('\x30\x78\x65\x61','\x65\x64\x5d\x26');_0x2b80d2[_0x5469('\x30\x78\x31\x35\x63','\x4d\x46\x35\x54')]=_0x5469('\x30\x78\x33\x64','\x65\x64\x5d\x26');_0x2b80d2[_0x5469('\x30\x78\x31\x65\x34','\x65\x64\x5d\x26')]=_0x5469('\x30\x78\x66\x38','\x21\x74\x63\x73')+_0x5469('\x30\x78\x64\x38','\x46\x40\x62\x77');_0x2b80d2[_0x5469('\x30\x78\x31\x38\x64','\x79\x4c\x36\x4b')]=_0x5469('\x30\x78\x65\x30','\x45\x59\x77\x23');_0x2b80d2[_0x5469('\x30\x78\x31\x63\x34','\x6d\x79\x66\x47')]=_0x5469('\x30\x78\x37\x36','\x24\x32\x52\x28');_0x2b80d2[_0x5469('\x30\x78\x31\x31\x63','\x4d\x46\x35\x54')]=function(_0x186b94,_0x497abd){return _0x186b94+_0x497abd;};_0x2b80d2[_0x5469('\x30\x78\x31\x39\x62','\x32\x77\x46\x34')]=function(_0x1c7f02,_0x286ba7){return _0x1c7f02+_0x286ba7;};_0x2b80d2[_0x5469('\x30\x78\x66\x33','\x6d\x55\x46\x78')]=_0x5469('\x30\x78\x62\x32','\x30\x52\x61\x63');_0x2b80d2[_0x5469('\x30\x78\x66\x39','\x6d\x79\x66\x47')]=_0x5469('\x30\x78\x31\x33\x39','\x41\x6a\x41\x37');_0x2b80d2[_0x5469('\x30\x78\x64\x33','\x57\x35\x50\x6c')]=function(_0x1b171e){return _0x1b171e();};_0x2b80d2[_0x5469('\x30\x78\x31\x35\x33','\x48\x52\x74\x48')]=function(_0x3d6de4,_0x488274){return _0x3d6de4!==_0x488274;};_0x2b80d2[_0x5469('\x30\x78\x31\x62\x63','\x65\x49\x54\x62')]=_0x5469('\x30\x78\x32\x63','\x40\x47\x21\x29');_0x2b80d2[_0x5469('\x30\x78\x65\x35','\x39\x72\x74\x68')]=_0x5469('\x30\x78\x31\x64\x35','\x45\x59\x77\x23');var _0x516b11=_0x2b80d2;if(_0x516b11[_0x5469('\x30\x78\x31\x62\x62','\x41\x6a\x41\x37')](matchend,0x1)){if(_0x516b11[_0x5469('\x30\x78\x32\x38','\x46\x40\x62\x77')](_0x516b11[_0x5469('\x30\x78\x31\x32\x64','\x65\x64\x5d\x26')],_0x516b11[_0x5469('\x30\x78\x39\x30','\x48\x52\x74\x48')])){Render[_0x5469('\x30\x78\x62\x35','\x38\x4f\x51\x72')](_0x516b11[_0x5469('\x30\x78\x31\x31\x34','\x43\x21\x55\x56')](baseX,0x2),_0x516b11[_0x5469('\x30\x78\x31\x37\x64','\x59\x7a\x4a\x56')](baseY,0xfa),NULL,_0x516b11[_0x5469('\x30\x78\x31\x36\x35','\x24\x32\x52\x28')],[0xff,0xff,0xff,0xff],0x10);}else{matchend=0x2;}}else{if(_0x516b11[_0x5469('\x30\x78\x62\x34','\x6d\x55\x68\x36')](_0x516b11[_0x5469('\x30\x78\x63\x34','\x48\x66\x64\x41')],_0x516b11[_0x5469('\x30\x78\x31\x63\x64','\x6d\x41\x4c\x48')])){if(_0x516b11[_0x5469('\x30\x78\x31\x32\x39','\x57\x6f\x57\x28')](_0x662,null)){UI[_0x5469('\x30\x78\x64\x62','\x29\x65\x4d\x57')](_0x516b11[_0x5469('\x30\x78\x31\x31\x65','\x68\x31\x58\x58')],_0x516b11[_0x5469('\x30\x78\x31\x65','\x46\x75\x48\x59')],_0x516b11[_0x5469('\x30\x78\x31\x33\x65','\x39\x72\x74\x68')],_0x516b11[_0x5469('\x30\x78\x31\x31\x61','\x24\x25\x57\x34')],![]);UI[_0x5469('\x30\x78\x64\x64','\x29\x25\x46\x6c')+'\x6e'](_0x516b11[_0x5469('\x30\x78\x31\x38\x35','\x59\x7a\x4a\x56')],[_0x516b11[_0x5469('\x30\x78\x35\x64','\x40\x47\x21\x29')],_0x516b11[_0x5469('\x30\x78\x64\x31','\x75\x54\x56\x68')]]);Cheat[_0x5469('\x30\x78\x31\x31\x64','\x30\x29\x42\x41')]([0x6c,0xc3,0x12,0xff],_0x516b11[_0x5469('\x30\x78\x31\x35\x61','\x65\x64\x5d\x26')](_0x516b11[_0x5469('\x30\x78\x31\x64\x64','\x30\x29\x42\x41')](_0x516b11[_0x5469('\x30\x78\x66\x36','\x68\x31\x58\x58')]('\x0a\x0a',_0x516b11[_0x5469('\x30\x78\x38\x62','\x29\x65\x4d\x57')]),Cheat[_0x5469('\x30\x78\x33\x36','\x38\x4f\x51\x72')+'\x65']()[_0x5469('\x30\x78\x63\x66','\x29\x25\x46\x6c')]()),_0x516b11[_0x5469('\x30\x78\x31\x34\x33','\x29\x25\x46\x6c')]));_0x662=0x1;}_0x516b11[_0x5469('\x30\x78\x37\x31','\x46\x40\x62\x77')](on_paint);}else{matchend=0x0;}}return;}function win_match(){matchend=0x2;return;}function halftime(){matchend=0x1;return;}Cheat[_0x5469('\x30\x78\x31\x64\x37','\x75\x54\x56\x68')+_0x5469('\x30\x78\x65\x32','\x6e\x48\x48\x64')](_0x5469('\x30\x78\x38\x39','\x40\x69\x4f\x30'),_0x5469('\x30\x78\x38\x65','\x30\x52\x61\x63'));Cheat[_0x5469('\x30\x78\x39\x64','\x72\x43\x64\x47')+_0x5469('\x30\x78\x31\x32\x35','\x69\x76\x32\x77')](_0x5469('\x30\x78\x31\x61\x30','\x72\x77\x59\x25')+'\x74',_0x5469('\x30\x78\x39\x38','\x72\x43\x64\x47')+_0x5469('\x30\x78\x35\x65','\x48\x66\x64\x41'));Cheat[_0x5469('\x30\x78\x31\x32\x66','\x65\x49\x54\x62')+_0x5469('\x30\x78\x38\x31','\x6c\x66\x45\x68')](_0x5469('\x30\x78\x31\x30\x62','\x65\x64\x5d\x26')+_0x5469('\x30\x78\x31\x64\x34','\x40\x47\x21\x29'),_0x5469('\x30\x78\x31\x34\x39','\x24\x77\x61\x6b'));Cheat[_0x5469('\x30\x78\x31\x33\x62','\x46\x75\x48\x59')+_0x5469('\x30\x78\x31\x30\x39','\x38\x44\x34\x36')](_0x5469('\x30\x78\x63\x35','\x23\x67\x5d\x6f')+_0x5469('\x30\x78\x61\x31','\x2a\x73\x39\x51'),_0x5469('\x30\x78\x31\x38','\x79\x4c\x36\x4b'));
 
Начинающий
Статус
Оффлайн
Регистрация
2 Ноя 2020
Сообщения
13
Реакции[?]
0
Поинты[?]
0
Есть на пинкспайк ?
Поищи в разных жс, помню кто то делал
а возможно ли сделать скрипт который в крякус вернет погоду?
Нет, это в сурсах исправлять надо
Сделай плз скрипт на настройку скинов с жирной стрелкой проматывания
А то колесико рип :(
Я, тебя не понимаю, если лучше расскажешь "возможно" сделаю.
JavaScript:
UI.AddCheckbox("Autoscope Fix")

function autoscope()
{
    localplayer_index = Entity.GetLocalPlayer( )
    localplayer_weapon = Entity.GetWeapon(localplayer_index)
    weapon_name = Entity.GetName(localplayer_weapon)

    if (UI.GetValue( "Misc", "JAVASCRIPT", "Script items", "Autoscope Fix") && (weapon_name == "scar 20" ||  weapon_name == "g3sg1"))
    UI.SetValue( "Rage", "GENERAL", "General", "Auto scope", false )
    else
        UI.SetValue ("Rage", "GENERAL", "General", "Auto scope", true)
}

Cheat.RegisterCallback("Draw","autoscope")
Умно, когда игрок берёт скар включается автоскоп, но в чём прикол если его можно 1 раз включить в настройках?
И зачем ты, поставил... если игрок не с оружием "auto", то ставиться автоскоп офф, если можно было получить изначальное значение варом, потом ставить автоскоп на прошлое значение которые было?

Если ты не знаешь как это делается, могу научить. :LUL:
 
Последнее редактирование:
Бульдозер
Эксперт
Статус
Оффлайн
Регистрация
18 Июл 2019
Сообщения
1,232
Реакции[?]
507
Поинты[?]
0
нужен онли текст или цифры. А так спасибо.
нужен онли текст или цифры. А так спасибо.
JavaScript:
UI.AddCheckbox("Velocity Info")
UI.AddSliderInt("Velocity Info Offset", 0, 300)

function do_velocity_info()
{
    const player = Entity.GetLocalPlayer();

    if (!player || !Entity.IsAlive(player))
        return;

    if (!UI.GetValue( "Misc", "JAVASCRIPT", "Script items", "Velocity Info"))
        return;

    const x = Render.GetScreenSize()[0], y = Render.GetScreenSize()[1] + UI.GetValue("Misc", "JAVASCRIPT", "Script items", "Velocity Info Offset");

    const vec = Entity.GetProp(player, "CBasePlayer", "m_vecVelocity[0]");
    const velocity = Math.sqrt(vec[0] * vec[0] + vec[1] * vec[1]);

    Render.String(x / 2, y / 2 + 150, 1, Math.round(velocity).toString(), [255, 255, 255, 255], 4);
    Render.String(x / 2 + 1, y / 2 + 185, 1, "u/s", [225, 225, 225, 225], 2);
}

Cheat.RegisterCallback("Draw", "do_velocity_info");
SS:
1604346528762.png
 
З̶а̶б̶а̶н̶е̶н̶н̶ы̶й
Забаненный
Статус
Оффлайн
Регистрация
20 Июл 2019
Сообщения
310
Реакции[?]
33
Поинты[?]
0
Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
Статус
В этой теме нельзя размещать новые ответы.
Сверху Снизу