Code Monkey home page Code Monkey logo

esx_nocarjack's Introduction

Hello World!

I am a software developer and a reverse engineer, who likes to create and share useful tools for Windows users. One of my projects is KeyPose¹, an alternative to Mouseposé that highlights keyboard and mouse events on the screen. You can download the latest version of KeyPose from here². I also use GitHub Gist to store and share snippets of code that I find interesting or helpful³. and love doing reverse engineering development projects...

Feel free to check out my repositories and gists and let me know what you think.

(1) AxDSan/KeyPose: An Alternative to 'Mouseposé' for Windows, - GitHub. https://github.com/AxDSan/KeyPose

(2) Releases · AxDSan/KeyPose · GitHub. https://github.com/AxDSan/KeyPose/releases

(3) AxDSan’s gists · GitHub. https://gist.github.com/AxDSan

trophy

AxDSan github stats

Top Langs

esx_nocarjack's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

esx_nocarjack's Issues

police officers can't unlock police cars.

It's a known bug that police officers won't be able to unlock already locked cars by this system.

Looking forward to implement a fix soon, but I first need to know what's causing it, probably it has to do with the actual ownership thing.

not working

This script is not working on me..
anyone here same issue?

Problem with eden_garage

When players take out cars from garage they cant get in car becouse they not teleported inside car and only thing that can help is to lockpick owned car if you can fix it that would be nice i hope you understand what i mean with this problem

Script name eden_garage that i use

Found your problem

I have been trying to figure out issue with job cars and personal cars getting locked, finally figured it out.

on line 68 of the client lua:

			if (lock == 7 or pedd) then

unfortunately, LUA doesnt consider ZERO to be the same as FALSE. pedd is an int returned from a function that returns 0 instead of Nil if it doesnt find (in this case a Ped in the driver seat)

this means your above condition is ALWAYS TRUE (because pedd will always be 0 or some other number unless the function completely fails somehow)

so in order for this line to function as intended, you must change it to:

			if ((lock == 7) or (pedd ~= 0 )) then

that should fix basically every problem since vehicles spawned by scripts generally dont set the lock status to 7 (of course, anyone who is using a script where a car is spawned and lock status is set to 7 will get locked out, but i doubt anyone is doing that. they are generally setting locks to either 0 or 1 or 2. 7 is really only used by the game engines auto spawned vehicles)

Locks Taxi cabs

is there any way to "whitelist" the taxi model so it will be open for everyone?

also

also in line 57 of client lua:

			local backlisted = false

should be

			local blacklisted = false

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.