Jump to content

Axel

Members
  • Posts

    521
  • Joined

  • Last visited

Everything posted by Axel

  1. The author deleted it. I have it, but won't give it without author's permission.
  2. Pune hide() în eventul onClientResourceStart ca să ascundă GUI-ul.. sau guiSetVisible( GUIEditor_Window[1], false)
  3. Yea, exactly. With clothes as objects and you'r script we can do this:
  4. It wold be awesome to have CJ Clothes as objects, with some attaching script to attach it to peds it wold result in an awesome RP script. Like SA-MP got: http://wiki.sa-mp.com/wiki/SetPlayerAttachedObject
  5. For the /whisper command there is a script here: https://community.multitheftauto.com/ind ... ls&id=5933
  6. Nobody will make a full script for you. If you got a problem we might help but i don't think somebody would use their free time to make a script for you.. Learn lua and make it yourself.
  7. No update output for me.. Might it be from my MTA server files?
  8. Not starting login as this server version is too low. (1.3.1-9.04935 required) What should i do now?
  9. It didn't give that error but i can't use the function..
  10. Not starting resource login as section in the meta xml contains invalid version strings. That's the error in the console..
  11. Then how should it be? ? Did, not working.
  12. I'm using: to use setPedWalkingStyle but it doesn't download it.. So what min mta client version should i use? I used and it returns nil for the function..
  13. blackMales = {000,007, 014, 015, 016, 017, 018, 020, 021, 022, 024, 025, 028, 035, 036, 050, 051, 066, 067, 078, 079, 080, 083, 084, 102, 103, 104, 105, 106, 107, 134, 136, 142, 143, 144, 156, 163, 166, 168, 176, 180, 182, 183, 185, 220, 221, 222, 249, 253, 260, 262 ,269,270,271,293,296,297,300,301,310,311} whiteMales = {001,002,268,023, 026, 027, 029, 030, 032, 033, 034, 035, 036, 037, 038, 043, 044, 045, 046, 047, 048, 050, 051, 052, 053, 058, 059, 060, 061, 062, 068, 070, 072, 073, 078, 081, 082, 094, 095, 096, 097, 098, 099, 100, 101, 108, 109, 110, 111, 112, 113, 114, 115, 116, 120, 121, 122, 124, 125, 126, 127, 128, 132, 133, 135, 137, 146, 147, 153, 154, 155, 158, 159, 160, 161, 162, 164, 165, 170, 171, 173, 174, 175, 177, 179, 181, 184, 186, 187, 188, 189, 200, 202, 204, 206, 209, 212, 213, 217, 223, 230, 234, 235, 236, 240, 241, 242, 247, 248, 250, 252, 254, 255, 258, 259, 261, 264 ,272,290,291,292,295,299,303,305,306,308,312} asianMales = {049, 057, 058, 059, 060, 117, 118, 120, 121, 122, 123, 170, 186, 187, 203, 210, 227, 228, 229,294} blackFemales = {009, 010, 011, 012, 013, 040, 041, 063, 064, 069, 076, 091, 139, 148, 190, 195, 207, 215, 218, 219, 238, 243, 244, 245, 256 ,298,304} whiteFemales = {012, 031, 038, 039, 040, 041, 053, 054, 055, 056, 064, 075, 077, 085, 086, 087, 088, 089, 090, 091, 092, 093, 129, 130, 131, 138, 140, 145, 150, 151, 152, 157, 172, 178, 192, 193, 194, 196, 197, 198, 199, 201, 205, 211, 214, 216, 224, 225, 226, 231, 232, 233, 237, 243, 246, 251, 257, 263 } asianFemales = {038, 053, 054, 055, 056, 088, 141, 169, 178, 224, 225, 226, 263} local array = nil if (skincolour==0) then if (gender==0) then array = blackMales elseif (gender==1) then array = blackFemales end elseif (skincolour==1) then if (gender==0) then array = whiteMales elseif (gender==1) then array = whiteFemales end elseif (skincolour==2) then if (gender==0) then array = asianMales elseif (gender==1) then array = asianFemales end end if (curskin==1) then curskin = #array skin = array[1] else curskin = curskin - 1 skin = array[curskin] end end setElementModel(getLocalPlayer(), tonumber(skin)) guiStaticImageLoadImage(skinimage,"img/"..tonumber(skin)..".png")
  14. I have a problem with loading an image, it works perfectly most of the time, but sometimes instead of loading the image it must load it show's a white image and returns an error like: Bad ussage @ 'guiStaticImageLoadImage' [Problem loading image 'path'] Thanks for helping!
  15. I have a question for you. How did you make thouse walking styles?
  16. Probabil este de la descărcarea fișierelor de pe serverul lor.
  17. I'v used alot of community resources and i didn't give back, so i thought i might make some usefull script. It's not a large code or something big. It's a CarJacker job, you have to steal a car and bring it to a garage, then you'll get payd. The money you get it's random, the car you must steal got an random model, the locations are random and it's not compiled so you can change them all. Hope it'll be usefull for someone. Download: https://community.multitheftauto.com/index.php?p=resources&s=details&id=6271
  18. Axel

    Stopping Voice

    Hey guys, about the voice ressource. I want to disable the voice when you join, and only when you change your channel you can speak. Becouse when players loggin they automatically go to one channel, and some of them got problems couse of that. I tryed to mute them when they join but it doesn't work. Hope there's a way to do it, Thanks!
  19. Te referi la Map Editor? Ei bine în map editor nu există însă poți crea markere de tip "corona": https://wiki.multitheftauto.com/wiki/CreateMarker
  20. Is there a way to make the CJ Clothes as objects? I want to attach them to peds so they look like accesories. But the only way i found is replacing some models with the txd's and dff's of the clothes. Is there another way of doing it that i don't know?
  21. Axel

    O problema!

    Probabil este de la connecțiunea cu baza de date. Ești sigur că ai table-ul "factions" în baza de date?
  22. How can i replace the F11 radar with my own?
  23. I'm not so good at tables so i thought you guys might help me. I want to make 1 table that stores all the objects attached to a player, but my problem is destroying a specific object and not the others, and and easy way to export it.. Something like this objects = { } function attachObj(modelid) if objects[source] then destroyElement(objects[source] objects[source] = nil else if modelid == 1210 then object = createObject ( modelid, 0, 0, 0 ) objects[source] = object exports.bone_attach:attachElementToBone ( object, source, 11, -0.2, 0, 0.1, 0, 90, 10 ) elseif modelid == 2647 then .. end end So idk how to store both of the elements on the player then destroy each of them whenever i want to..
  24. Ai nevoie de bază de date MYSQL și scriptul mysql să fie modificat în așa fel să se conecteze la ea. Iar despre account-system, trebuie să editezi scriptul.
×
×
  • Create New...