Jump to content

Shockboy23

Members
  • Posts

    11
  • Joined

  • Last visited

Shockboy23's Achievements

Square

Square (6/54)

0

Reputation

  1. Hi guys. I have an old server in my pc. I mean it's been some tine since i used it. And i rememember it worked very good. Now i try to start it. and i get this error:
  2. I have a server, i used to have it open. But i stopped it one day and it's long since it was started. And now i get an error when i try to start the server. Error says: ERROR: 'net' library version is '1.4.1-9.07246.0' (Expected: '1.4.1-9.07241.0') Try Reinstalling What should I do? I never encoutered such problem.
  3. No. What I'm looking for is the "Weapon Flag" that changes the weapon's property. I actually want to make the pistol (colt). Give it the animation silenced haves, like the peds in singleplayer (Uses both hands to aim with pistol)
  4. Does anyone know the ID of the Weapon Flag that makes you use both hands for pistol?
  5. Took it from one my my old resources, because I tried A LOT of things. (Good scripts) and dind't worked. I ended up trying my old scripts, replacing what function does with "setWeaponProperty(23, "pro", "flags", 0x000800) setWeaponProperty(23, "pro", "flags", 0x000002) setWeaponProperty(23, "pro", "maximum_clip_ammo", 34)"... Yes...
  6. I fixed it. Just a mistake in meta.xml Here it is. function dualSilenced() setWeaponProperty(23, "pro", "flags", 0x000800) setWeaponProperty(23, "pro", "flags", 0x000002) setWeaponProperty(23, "pro", "maximum_clip_ammo", 34) end addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), replaceModel) addCommandHandler ( "dualsilenced", dualSilenced ) Feel free to use it, everybody.
  7. Well... look try this, the whole script. addEventHandler('onClientResourceStart',getResourceRootElement(getThisResource()),function () txd = engineLoadTXD ( '[name of your file].txd' ) engineImportTXD ( txd, [iD of Car]) dff = engineLoadDFF('[name of your file].dff', [iD of Car]) engineReplaceModel ( dff, [iD of Car] ) end) It should work.
  8. I deleted what i tried, it was a stupid try... like I said I'm new in those kind of things.
  9. In the MTA wiki page it says: "This example makes the silenced pistol dual wielded at pro skill level" and then this "example" is shown. setWeaponProperty(23, "pro", "flags", 0x000800) -- Warning - Depends on the current flag setting setWeaponProperty(23, "pro", "flags", 0x000002) -- Warning - Depends on the current flag setting setWeaponProperty(23, "pro", "maximum_clip_ammo", 34) I tried it with a command, make a function, It dind't worked. Can somebody give me a pre-made script, that makes the weapon "Silenced" (ID 23) "wieldable" at Pro skill level? I'm actually new in these kind of thigs, please, help me!
×
×
  • Create New...