Skip to content
This repository has been archived by the owner on Nov 19, 2022. It is now read-only.

Releases: drakeee/altv-lua-module

Release client/1.1.3.51-dev

06 Feb 11:03
Compare
Choose a tag to compare

Shared:

  • Fixed an issue with createThread, it used getNetTime which is a server side only function and couldn't use it in client side.

Release server/1.1.2.51-dev

01 Feb 22:24
Compare
Choose a tag to compare

Shared:

  • Add createThread and wait functions.

Example usage:

alt.createThread(function()
    alt.log("message 1")

    alt.wait(2000) --you can either wait specified milliseconds

    alt.log("message 2")

    alt.wait(native.isScreenFadedOut) --wait for a function to return true

    alt.log("message 3")

    alt.wait(native.hasSoundFinished, 10) --also you can pass arguments to the function

    alt.log("message 4")
end)

Release client/1.1.2.51-dev

01 Feb 22:24
Compare
Choose a tag to compare

Shared:

  • Add createThread and wait functions.

Example usage:

alt.createThread(function()
    alt.log("message 1")

    alt.wait(2000) --you can either wait specified milliseconds

    alt.log("message 2")

    alt.wait(native.isScreenFadedOut) --wait for a function to return true

    alt.log("message 3")

    alt.wait(native.hasSoundFinished, 10) --also you can pass arguments to the function

    alt.log("message 4")
end)

Release client/1.1.1.51-dev

01 Feb 18:28
deb2de0
Compare
Choose a tag to compare
Merge pull request #13 from LeonMrBonnie/fix-natives-in-events

Fix natives in events

Release server/1.1.0.51-dev

31 Jan 21:01
Compare
Choose a tag to compare

Release server/1.1.0.50-dev

31 Jan 20:06
Compare
Choose a tag to compare

Client:

  • Fixed an issue when you were not able to call some natives

Shared:

  • Fixed an issue with anyResourceStart, anyResourceStop and anyResourceError events as it was pushing not needed arguments

Release client/1.1.0.51-dev

31 Jan 21:01
Compare
Choose a tag to compare

Release client/1.1.0.50-dev

31 Jan 20:06
Compare
Choose a tag to compare

Client:

  • Fixed an issue when you were not able to call some natives

Shared:

  • Fixed an issue with anyResourceStart, anyResourceStop and anyResourceError events as it was pushing not needed arguments

Release client/1.0.11.50-dev

26 Jan 16:21
Compare
Choose a tag to compare

Client:

  • Fixed an issue with natives when passing integers
  • You can now pass entities to natives and it will get the script id automatically

Release server/1.0.10.50-dev

25 Jan 12:22
Compare
Choose a tag to compare
Change folder name from lua-server-module to lua-module