Jump to content

MissCrow

Members
  • Posts

    25
  • Joined

  • Last visited

Recent Profile Visitors

1,172 profile views

MissCrow's Achievements

Advanced Member

Advanced Member (8/54)

0

Reputation

  1. Hi what's up greetings c:. I'm creating a command to drop a specific weapon, but I don't want these to be created as pickups, but as an object on the ground to make it more realistic with a collision that allows you to pick up the weapon, The detail is that I tried it and the weapon is actually created and the collision, but the problem arises when another player goes to take the weapon, it does not let him take it or everything is bugged, here I leave an example code, I hope for your help pls local obj = {} local col = {} addCommandHandler("dropkata",function(player) local r = getPedRotation(player) local x,y,z = getElementPosition(player) takeWeapon(source, 8) obj[player] = createObject(325, x+math.sin(math.rad(-r))(1),y+math.cos(math.rad(-r))(1), z-1, 90) col[player] = createColSphere(x+math.sin(math.rad(-r))(1),y+math.cos(math.rad(-r))(1),z, 0.5) addEventHandler("onColShapeHit", col[source], function(player) if getElementType(player) == "player" then giveWeapon(player, 8, 1, true) end end) end)
  2. Hi, i'm looking for a house system + furnitures system. I can pay for that ty
  3. Sure, try this addEventHandler("onResourceStart", resourceRoot, function() for i=550, 20000 do removeWorldModel(i, 10000, 0, 0, 0, 0) setOcclusionsEnabled(false) end end) Yw
  4. Hello community, I have a question, is it possible to make the extra health bar the same as the normal life bar? I hope they are together
  5. Hello everyone, I would like to know if it is possible to execute hits while in the air, that is, jump and at that moment allow me to hit in the air, something like Dragon Ball Z. Thanks
  6. @TekkenI found the problem that causes this, now I have this problem in the code Ninja.lua:44 Bad argument @'engineReplaceAnimation' [Expected element at argument 1, got nil]
  7. Hii, I appreciate your answer . My host is a VPS that I config , I'll try the command thanks u
  8. Hi, I'm having a problem with my server. Every time someone enters the server, everyone who is connected freezes (loading), it is as if something were uploaded. Someone know what it can be?
  9. I would like to create a roleplay style tax system, but I do not know where to start. or a gm of roleplay. I would be very grateful if someone gives to me .
  10. Hello dear community , i'm looking for a resource that allows you to save a character, log in and select the character.
  11. Hello dear community is this possible? Ex: Open a shop panel, and buy something restricted by acl group, so that when you buy it, it will automatically appear in the ACL group.
×
×
  • Create New...