• We have a new discord! click here to join
    Any faulty links ? Report them in our discord or via our Ticket System!
    We do everything we can to protect the safety of our visitors, if any resource contains malware in any kind of form or obfuscation please report it aswell ♡♡

STANDALONE PA Crafting NoPixel 4.0 inspired [Open Source] (4 Viewers)

martink7331

Member
May 17, 2023
47
28
18
Credits
2,611
Hello everyone! I am sharing you the latest version of pa-crafting completely open-source. In the pack even I included pa-props again OPEN source so you won't worry about that also.
The only problem is that it uses pa-lib-2, script works fine! Just the lib is encrypted.

If someone wants to help and decrypt are welcome. If you have more information message in the comments of the post.

Preview

 

umer02818

Well-known member
Aug 7, 2024
309
8
18
Credits
4
Hello everyone! I am sharing you the latest version of pa-crafting completely open-source. In the pack even I included pa-props again OPEN source so you won't worry about that also.
The only problem is that it uses pa-lib-2, script works fine! Just the lib is encrypted.

If someone wants to help and decrypt are welcome. If you have more information message in the comments of the post.

Preview

-=Stripped Content=-
thanks for this! going to test it out right now!
 

martink7331

Member
May 17, 2023
47
28
18
Credits
2,611
Hello everyone! I am sharing you the latest version of pa-crafting completely open-source. In the pack even I included pa-props again OPEN source so you won't worry about that also.
The only problem is that it uses pa-lib-2, script works fine! Just the lib is encrypted.

If someone wants to help and decrypt are welcome. If you have more information message in the comments of the post.

Preview

-=Stripped Content=-
Try all with :
RegisterNetEvent('pa-craft:eek:penMenu')
AddEventHandler('pa-craft:eek:penMenu', function(receivedMenuId)
menuId = receivedMenuId

-- This section handles the menu open state directly
menuOpen = true

-- Fetch the weapon item details and open the NUI menu
TriggerCallback('pa-craft:GetWeaponItem', function(callback, Queue)
SendNUIMessage({
type = "open",
weaponAttachment = {},
weapons = callback,
craftItems = PA.CraftItems,
append = true,
Queue = Queue,
folder = PA.InventoryFolder
})

menuOpen = true
SetNuiFocus(true, true)

while menuOpen do
Citizen.Wait(1000)
TriggerCallback('pa-craft:queueUpdate', function(callback)
SendNUIMessage({
type = "queueUpdate",
Queue = callback,
folder = PA.InventoryFolder
})
end, menuId)
end
end)

SetEntityVisible(PlayerPedId(), false)

-- Event listener to handle closing the menu
RegisterNUICallback('closeMenu', function(data, cb)
menuOpen = false
SetNuiFocus(false, false)
SetEntityVisible(PlayerPedId(), true)
cb('ok')
end)
end)
this replaced function it should open the crafting but it wont handle the receivedMenuId, should find out how this can be done so the pa-lib-2 it will not be needed
 

cyh_0316

Active member
Mar 4, 2024
73
3
8
Credits
17
The attention to detail in this script is impressive, making it a must-have for any serious gamer.
 

FivemDev_

Moderator
Mar 26, 2022
124
9
18
Credits
2,232
Try all with :
RegisterNetEvent('pa-craft:eek:penMenu')
AddEventHandler('pa-craft:eek:penMenu', function(receivedMenuId)
menuId = receivedMenuId

-- This section handles the menu open state directly
menuOpen = true

-- Fetch the weapon item details and open the NUI menu
TriggerCallback('pa-craft:GetWeaponItem', function(callback, Queue)
SendNUIMessage({
type = "open",
weaponAttachment = {},
weapons = callback,
craftItems = PA.CraftItems,
append = true,
Queue = Queue,
folder = PA.InventoryFolder
})

menuOpen = true
SetNuiFocus(true, true)

while menuOpen do
Citizen.Wait(1000)
TriggerCallback('pa-craft:queueUpdate', function(callback)
SendNUIMessage({
type = "queueUpdate",
Queue = callback,
folder = PA.InventoryFolder
})
end, menuId)
end
end)

SetEntityVisible(PlayerPedId(), false)

-- Event listener to handle closing the menu
RegisterNUICallback('closeMenu', function(data, cb)
menuOpen = false
SetNuiFocus(false, false)
SetEntityVisible(PlayerPedId(), true)
cb('ok')
end)
end)
this replaced function it should open the crafting but it wont handle the receivedMenuId, should find out how this can be done so the pa-lib-2 it will not be needed
where should this be added?
 

.pallow

New member
Mar 26, 2024
3
1
1
Credits
2
Hello everyone! I am sharing you the latest version of pa-crafting completely open-source. In the pack even I included pa-props again OPEN source so you won't worry about that also.
The only problem is that it uses pa-lib-2, script works fine! Just the lib is encrypted.

If someone wants to help and decrypt are welcome. If you have more information message in the comments of the post.

Preview

-=Stripped Content=-
Good job man. Thank you
 

Users who are viewing this thread

  • kyel2157
  • kinomol
Top