Jump to content

Captain Cody

Members
  • Posts

    2,753
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Captain Cody

  1. if # tostring ( minutes ) == 1 then Bloody hell.. Switch everything that even resembles that to something such as this ? if math.floor(tonumber ( minutes )) == 1 then
  2. It'd be possible to convert unless they are compiled (Rock star sure loves compiling stuff)
  3. I have already done it, but GTA united has more object ids then SA has available so you need a streamer that streams in and out ids when needed / not needed.
  4. Could possibly just use a table, and add / remove your weapon depending on where in the table you have selected. (Using scroll, and E / Q to select your weapon in that table)
  5. It could be possible to just by default recreate the out side water using create water functions. And have the water map size at ~1200. (Also seabed can possibly be recreated by drawing a 3d image.
  6. I agree with Einheit, make the limits maxed out by default instead of allowing servers to set their own limits; there's really no reason to have lower limits by default, if any thing it improves game play quite a bit.
  7. Yes it is a car I made, and yes 3ds max is much much better.
  8. Well if you really think about it you can slip a back door into an uncompiled script by messing with the encoding of the lua file (Trick I'll never tell a soul as to how to do)
  9. Are you added as admin in the ACL?
  10. Yeah you have a point, it will crash as soon as it's loaded / unloaded a few times.
  11. My way can technially add infinite vehicles as long as they are not all in the same location at the same time.
  12. Oh alright. It would work but would be a pain due to lack of object ids.
  13. Simples idea is well, simple. Attach objects to vehicles. His normal idea doesn't include the doors and what not from the looks of things that was just a more advance thing I was speaking of.
  14. State your ever so smart idea lad. Another way of doing it (This only works if you don't have all vehicles in one location) is load and unload the model on the go; similar to how my streaming system works. Pulling unused objects on the go and when that object gets in use swap over to a new model.
  15. You would have to make the vehicle model; make doors, damange models, bumpers, etc. You could easily replace useless objects and attach them to invisible vehicles. But it'd look absolutely terrible if it's just a static object.
  16. How does this go about bricking your hard drive; changing the language of the game does not mess with nor terminate an OS.
  17. There's no known scripts but this is possible through a script; infact I'll write one later.
  18. I haven't used the card before, but you almost certainly can for sure.
  19. In this case it really doesn't matter what is used. i=1,#table can indeed be faster; but really there's no real point in changing it at all. it's just the way I learned that ipairs is slower then pairs, might be by a non noticeable difference in small amounts for sure but over time it adds up ; which will get it out of sync over a large amount of time (1+ months) (Certainly makes a difference when loading and unloading large amounts of objects.) (Which I assume these will be operating all of the time) there's no real reason this'd effect anything sure; but it might over a long long period of time. I guess if you wanted to get fancy with it you could just do this rotators = {} function rotate() for i,#rotators do local v = rotators[i] local sx,sy,sz = getElementPosition(v.object) moveObject(v.object,20000,sx,sy,sz,0,0,prz+180) attachElements(v.vehicle,v.object,0,0,1.5,0,0,0) setObjectScale(v.object,1.1) end end setTimer(rotate,20000,0) function createRotator(player,cmd,id) if not isPedInVehicle(player) then local x,y,z = getElementPosition(player) table.insert(rotators,{object = createObject(13646,x,y,z-1.4,0,0,0),vehicle = createVehicle(id,x,y,z+2)}) for i,#rotators do local v = rotators[i] attachElements(v.vehicle,v.object,0,0,1.5,0,0,0) setObjectScale(v.object,1.1) end setElementPosition(player,x,y,z+1.2) end end addCommandHandler("crotate",createRotator)
  20. You need to lock either Y or X, forgot which. One of them has lean that makes all hell breaks loose when applied.
  21. More will likely not happen any time soon.Its a huge time costuming task that takes quite a bit of skill to make a proper conversation with proper streaming. if you want a server wait a few weeks for H free roam has both Vc and Lc
  22. Heretrics free roam will be up later this year "Free roam / death match in Vc and Lc"
×
×
  • Create New...