Jump to content

3 Screenshots

About This File

This script will allow you to quickly and easily work with 2D text in the game.

Contributions:
rootcause
Captien
micaww

 

In 1.0.5 update Scale-X and Outline of 2D text doesn't work and idk where's problem, because i can't fix it...


What's New in Version 1.0.5   See changelog

Released

Aded in 1.0.5:

  • Now without commands, new interface (CEF & vue)

If you find bugs here you can report it in comments of this resource or make an issues on 2D Text Editor repository on github.

  • Like 1

User Feedback

Recommended Comments

Captien

Posted

let chat = false;

mp.keys.bind(0x54, true, (player) => { // If Chat was triggered
    if (!chat) {
        chat = true;
    }
});

mp.keys.bind(0x0D, true, (player) => { // If Chat was stopped.
    if (chat) {
        chat = false;
    }
});

You can use this chat checker client side to fix your bug...

  • Like 1
ynhhoJ

Posted

22 минуты назад, Captien сказал:

let chat = false;

mp.keys.bind(0x54, true, (player) => { // If Chat was triggered
    if (!chat) {
        chat = true;
    }
});

mp.keys.bind(0x0D, true, (player) => { // If Chat was stopped.
    if (chat) {
        chat = false;
    }
});

You can use this chat checker client side to fix your bug...

Porn offered this option, but I'm not decided to use it...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...