Capsinurass Posted January 10, 2008 Share Posted January 10, 2008 This bug is not really that important to fix because you would have a hard time getting all the baggage trailers together without scripting it. What happens is when i put about 40 baggage trailers on the back of each other and put them i a circle like this.... Then jack knife the baggage off like this... Push the trailer so that it connects to the end and makes one big trailer circle.... I get the network trouble message.... What this has done is crash my server If i try to type quit into the server it will not respond and the blue thing that moves up the top has stopped but in the task manager it still says that the mta server is running, so i think that doing this puts the server into some kind of infinite loop. If you want to try this just use a while loop to create the baggage trailers like this.... local x = -1229.3720703125 local y = -189.97680664063 local z = 14.1820440926 Baggage = createVehicle ( 485 , x, y, z, 0, 359 , 225 ) local i = 40 while i > 0 do y = y + 2.705 x = x - 2.705 Baggage2 = createVehicle ( 606, x, y, z, 0, 359, 225 ) attachTrailerToVehicle ( Baggage , Baggage2 ) Baggage = Baggage2 i = i - 1 end and use this pos to spawn the player 1469, 1292, 10.9, Link to comment
Stevvo Posted January 10, 2008 Share Posted January 10, 2008 Doesn't look like a very bad bug, why would you make a circle of baggage trailers? Link to comment
Cloudhunter Posted January 10, 2008 Share Posted January 10, 2008 Doesn't look like a very bad bug, why would you make a circle of baggage trailers? Because you can? Cloudy Link to comment
FireBlood Posted January 10, 2008 Share Posted January 10, 2008 lmao, why would you want to do this anyway Link to comment
Magus1724 Posted January 10, 2008 Share Posted January 10, 2008 Doesn't look like a very bad bug, why would you make a circle of baggage trailers? Redneck fighting ring But that's a funny idea you had there Link to comment
NazcaC2 Posted January 11, 2008 Share Posted January 11, 2008 "Why" anyone would want to do that doesn't really matter, it's a bug and in-turn - crashes the system and needs to get fixed. In order to fix bugs, people need to do such things to make the system as bullet-proof as possible. Link to comment
Capsinurass Posted January 11, 2008 Author Share Posted January 11, 2008 The only reason i did this is because i wanted to see how many trailers i could get on the back of each other( about 60 but they disconnect after a while). Then one time i was turning around i had the idea to see if i could connect it in a circle. And well my server crashed so i did it again to see if it was the trailers or something else. ummm this is of topic but does anyone know how to make trailers on the back of trains? I have tried to put them on the tracks and then use attachTrailerToVehicle but i cant get it to work! Link to comment
Slo Posted January 11, 2008 Share Posted January 11, 2008 You can script the trailer(s) to follow train Link to comment
dn83 Posted January 11, 2008 Share Posted January 11, 2008 "Why" anyone would want to do that doesn't really matter, it's a bug and in-turn - crashes the system and needs to get fixed. In order to fix bugs, people need to do such things to make the system as bullet-proof as possible. Exactly. The developers have probably tried anything they can think of to find bugs, so what's left to do is try the unthinkable! Link to comment
darkdreamingdan Posted January 13, 2008 Share Posted January 13, 2008 lmfao, that's a funny bug. Does it happen every single time? Link to comment
Ratt Posted January 13, 2008 Share Posted January 13, 2008 Lmao, how amusing. Spend like an hour attaching all these trailers to find out when you join each end together mta just gets confused and bails out lol. Link to comment
Capsinurass Posted January 13, 2008 Author Share Posted January 13, 2008 lmfao, that's a funny bug. Does it happen every single time? Yes it happens every time. And i didn't spend an hour attaching the trailers, i did it with scripting.(like the code under the post) Link to comment
DazzaJay Posted January 31, 2008 Share Posted January 31, 2008 Sorry to sound lame.... and i know its of no help.... But it looks like you have an "Endless Loop" Lol. Link to comment
Twig Posted February 1, 2008 Share Posted February 1, 2008 Sorry to sound lame.... and i know its of no help....But it looks like you have an "Endless Loop" Lol. Look closer, or tbh just read it properly. The while starts at 40 counting backwards in steps of i - 1, till i would equal less than 0 and it'd stop. Link to comment
norby89 Posted February 1, 2008 Share Posted February 1, 2008 Sorry to sound lame.... and i know its of no help....But it looks like you have an "Endless Loop" Lol. Look closer, or tbh just read it properly. The while starts at 40 counting backwards in steps of i - 1, till i would equal less than 0 and it'd stop. I suppose he meant the baggage trailers Link to comment
DazzaJay Posted February 1, 2008 Share Posted February 1, 2008 What i meant was a joke, in reference to a lot of programs i have used saying "Infinite loop" and the fact that when you make a circle of trailers that are all joined, it haas no start and end, Thus its an "Endless loop" But it seems that noone got the joke. Your sence of humour is bad and you should feel bad. Link to comment
norby89 Posted February 1, 2008 Share Posted February 1, 2008 But it seems that noone got the joke. I suppose he meant the baggage trailers moo ¬.¬ Link to comment
Twig Posted February 1, 2008 Share Posted February 1, 2008 What i meant was a joke, in reference to a lot of programs i have used saying "Infinite loop" and the fact that when you make a circle of trailers that are all joined, it haas no start and end, Thus its an "Endless loop"But it seems that noone got the joke. Your sence of humour is bad and you should feel bad. I have a great sense of humour, i.e .... your face! hahahahah Link to comment
Capsinurass Posted February 2, 2008 Author Share Posted February 2, 2008 lol its a fun bug to do, but a bit hard. And im guessing the crash is because the MTA server is trying to find the vehicle that is at the start, but as there is only another trailer it keeps looking for the end but there is none but im only guessing... would be good to know what it is... maybe someone in a higher position could tell us Link to comment
norby89 Posted February 2, 2008 Share Posted February 2, 2008 lol its a fun bug to do, but a bit hard. And im guessing the crash is because the MTA server is trying to find the vehicle that is at the start, but as there is only another trailer it keeps looking for the end but there is none but im only guessing... good observation, it might have to do with that Link to comment
Recommended Posts