-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGELOG
2317 lines (2211 loc) · 198 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Changelog for Multi Theft Auto
Multi Theft Auto : San Andreas - 1.3.4
======================================
Goal: Improve 1.3.3 release.
- 0007746: [Security] About "MTA/console.log" (ccw) - resolved.
- 0007801: [Client] warpPedIntoVehicle can cause totally desync if another Player starts to enter the vehicle (Cazomino05) - resolved.
- 0005618: [Server] Heli Rotors are not in ghostmode in race (Cazomino05) - resolved.
- 0007803: [Multi Theft Auto : San Andreas] Spoilers (Cazomino05) - resolved.
- 0007780: [GUI] Console(F8) input focus begin lost when guiBringToFront or 'AlwaysOnTop' property used. (ccw) - resolved.
- 0007794: [Client] Bad debug from encrypted client scripts (ccw) - resolved.
- 0007787: [Map Editor] Map Editor crashes after pressing "Stop Testing" (ccw) - resolved.
- 0007784: [Multi Theft Auto : San Andreas] Crash when streaming in tec-9 with a replaced weapon model. (ccw) - resolved.
- 0007372: [Client] Applying weapon mods may remove your weapon (ccw) - resolved.
- 0007762: [Server] Projectile-type weapons messing up ammo count (ccw) - resolved.
- 0007765: [Client] guiCreateFont fails each second time resource is started (ccw) - resolved.
- 0006930: [Server] Client disconnects but player element remains indefinitely (ccw) - resolved.
- 0007752: [Client] Cheat tool for block 5.08.2013 (ccw) - resolved.
- 0007672: [Client] Mouse input delayed (ccw) - resolved.
- 0007757: [Server] setAccountData clips the digits after the decimal point (Jusonex) - resolved.
- 0007721: [Client] cancelEvent() onClientKey escape key bug (ccw) - resolved.
- 0007696: [Client] PCs restarted after joining MTA:DayZ server (ccw) - resolved.
- 0007705: [Server] Server crash when restarting resources (ccw) - resolved.
- 0001838: [Scripting] Enable playMissionAudio and extend its functionality (Jusonex) - resolved.
- 0007699: [Client] Crash at certain position and interior (ccw) - resolved.
- 0007682: [Client] MTA 1.3.3: 'Modified GTA3.img, SD 0000020' connect bug (ccw) - resolved.
- 0007685: [Server] getVehiclePlateText can crash if return longer than 8 chars (ccw) - resolved.
- 0007659: [Client] 1.3.3 r5541 has a bug on high screen resolutions (Jusonex) - resolved.
- 0007544: [Client] ignoredElement in processLineOfSight broken (ccw) - resolved.
- 0007568: [Client] Vertexshader fails on some objects. (ccw) - resolved.
- 0007515: [Server] Add "shared" export type in meta.xml (Kenix) - resolved.
- 0004731: [Server] onColShapeHit isn't triggered for towed vehicles server side (sbx320) - resolved.
Resources:
- 0007773: [Client] setLowLODElement doesn't work as intended. (ccw) - resolved.
Map Editor:
- 0007693: [Map Editor] Add object breakable option (sbx320) - resolved.
Multi Theft Auto : San Andreas - 1.3.3
======================================
Goal: Improve 1.3.2 release.
- 0007644: [Client] setElementPosition for players vehicle causes freeze for few seconds (ccw) - resolved.
- 0007396: [Resources] Voice icon doesn't disappear for other players after the speaking have been stopped (ccw) - resolved.
- 0005420: [Server] enter_passenger does not work when using it with serverside toggleControl() (Jusonex) - resolved.
- 0007639: [Client] Crash in ReApplyMoveAnims (ccw) - resolved.
- 0007636: [Client] MTA Hack (ccw) - resolved.
- 0007623: [Server] getPedTotalAmmo sometimes returns 0 while player is aiming (Slot 8) (sbx320) - resolved.
- 0007400: [GUI] HUD elements do not scale correctly for widescreen (Jusonex) - resolved.
- 0006495: [Server] onPlayerDamage has wrong parameters if source on vehicle (sbx320) - resolved.
- 0007627: [Server] "Client triggered serverside event" debug error could show client (ccw) - resolved.
- 0003166: [Scripting] setVehiclePlateText function missing (ccw) - resolved.
- 0003117: [Scripting] Custom vehicle plate text is only set on one of both plates and is reset on damage (ccw) - resolved.
- 0007609: [Server] getVehicleSirens on a sandking (495) crashes the server immediately (ccw) - resolved.
- 0007613: [Client] Download Exploit (ccw) - resolved.
Multi Theft Auto : San Andreas - 1.3.2
======================================
Goal: Improve 1.3.1 release.
- 0007583: [General] Things what need testing in 1.4 before 1.3.2 can be released (ccw) - feedback.
- 0007570: [Client] warpPedIntoVehicle after cancelEvent() of onVehicleStartEnter causes network trouble (Jusonex) - resolved.
- 0007131: [Client] [REQUEST] client-side fetchRemote (ccw) - resolved.
- 0007423: [Client] very slow streaming of Elements (ccw) - resolved.
- 0007584: [Client] freeze deagle and shot (Shot hit animation sometimes doesn't work) (ccw) - resolved.
- 0005950: [General] Turn off sounds when MTASA is minimized (ccw) - resolved.
- 0007600: [Client] createVehicle no longer works in version 1.3.2 (ccw) - resolved.
- 0007586: [Client] Replaced textures are loading incorrectly (ccw) - resolved.
- 0007606: [Client] dxSetRenderTarget messes up all colors (ccw) - resolved.
- 0007588: [Client] Mass crashes in very near area (ccw) - resolved.
- 0007595: [Client] Admin panel customization window broken since 1.3.2 (Jusonex) - resolved.
- 0007592: [Client] getVehicleUpgradeSlotName has broken (Jusonex) - resolved.
- 0007436: [Client] Mouse sensitivity problem (ccw) - resolved.
- 0007593: [Client] MTA freezes if you loose internet connection while connecting to a server (ccw) - resolved.
- 0007471: [Client] Not recorded video in MTA:SA 1.3.1 via Mirillis Action! (ccw) - resolved.
- 0006041: [Server] callRemote should return more informational error codes (ccw) - resolved.
- 0007487: [Client] "getVehicleComponentPosition" returns only "0, 0, 0" for each component (Cazomino05) - resolved.
- 0007579: [Client] Client crash after login and spawn on MTA:DayZ (ccw) - resolved.
- 0007355: [Client] Shaders aren't applicable to skin model 0 (ccw) - resolved.
- 0005839: [Synchronization] cj fat/muscle stats not resetting (ccw) - resolved.
- 0007544: [Client] ignoredElement in processLineOfSight broken (ccw) - resolved.
- 0007547: [Client] guiGetSelectedTab crashes after removing a tab (Jusonex) - resolved.
- 0006496: [Client] Combobox isn't supported by onClientMouseEnter - onClientMouseLeave (Talidan) - resolved.
- 0006969: [Client] GUI Clicking events won't get triggered when clicking at a GUI Scrollpane field. (Talidan) - resolved.
- 0005870: [Scripting] onClientGUIMouseDown and onClientGUIMouseUp do not work for scrollbars (Talidan) - resolved.
- 0006470: [Client] onClientGUIClick and onClientGUIDoubleClick not work with comboBoxes (Talidan) - resolved.
- 0005680: [Server] Trigger onClientGuiClick also for comboboxes (Talidan) - resolved.
- 0005090: [Client] GUI scrollpanes and scrollbars don't trigger onClientMouseEnter/Leave (Talidan) - resolved.
- 0007060: [Server] Server crash 4061 (ccw) - resolved.
- 0006239: [Scripting] getPedTotalAmmo does not return the correct values (Jusonex) - resolved.
- 0006253: [Server] Projectile weapon ammo (slot 8) is not synchronized correctly (Jusonex) - resolved.
- 0007528: [Server] outputChatBox to a invalid player goes to ALL players (ccw) - resolved.
- 0007529: [Server] 16 server crashes (ccw) - resolved.
- 0007521: [Client] Crash after finishing download while MTA is minimized - resolved.
- 0005456: [Synchronization] Synchronise ped traffic lights (x0rh4x) - resolved.
- 0007507: [Client] make setObjectScale except 1 scale value for each axis (x0rh4x) - resolved.
- 0007459: [Client] onClientPlayerWeaponFire hitElement issue (ccw) - resolved.
- 0007501: [Client] Binds that were attached directly to controls are getting reset when loading default binds in settings (Jusonex) - resolved.
- 0007500: [Server] setAccountData / getAccountData (sbx320) - resolved.
- 0006846: [Client] getVehicleType with trailers returns empty string client-side (Jusonex) - resolved.
- 0007484: [Client] Disable the aircraft max velocity limit of 2.25 (Kenix) - resolved.
- 0007496: [Client] Some functions output wrong warnings (Jusonex) - resolved.
- 0006685: [Server] request function getEventHandlers (Kenix) - resolved.
- 0006216: [Server] Add "shared" script type in meta.xml (Kenix) - resolved.
- 0007490: [Server] 1.3.1-4954 Server Crash (ccw) - resolved.
- 0007477: [Client] processLineOfSight doesn't return world object info without ignoredElement being set (ccw) - resolved.
- 0006478: [Client] Add an icon near the player that is speaking in voice chat (Talidan) - resolved.
- 0006570: [Client] Voice chat OFF on client side (Talidan) - resolved.
- 0007478: [Client] MTA r4806 and newer ones do not work under WINE (ccw) - resolved.
- 0003788: [Scripting] Certain ID's passed to setPedWalkingStyle crash all connected clients (ccw) - resolved.
- 0007393: [Server] Server crashes with no apparent reason (ccw) - resolved.
- 0005065: [Client] Disabling controls doesn't disable analog sticks in gamepads (Cazomino05) - resolved.
- 0007461: [Server] Ammo Exploit (ccw) - resolved.
- 0005452: [Client] After updating using the in-game updater, temporary installation files are not automatically deleted (ccw) - resolved.
- 0003484: [GUI / Menus / Console] guiScrollPaneGetVerticalScrollPosition returns strange and stepped values (Jusonex) - resolved.
- 0007450: [Client] Main menu items 'Map Editor'/'Host Game' should ask if you want to disconnect from your current server (ccw) - resolved.
- 0007447: [Client] Moving flare needs to fixed (Cazomino05) - resolved.
- 0007203: [Client] Xbox 360 Controllers, maybe others - Proper Axis Support (ccw) - resolved.
- 0006418: [Client] onClientPlayerVoiceStop doesn't always work (Talidan) - resolved.
- 0005879: [Client] Ability to use gamepad's analog Z-axis to aim and fire a weapon (ccw) - resolved.
- 0006831: [Server] protected option for protecting client side files stops files from loading. (ryden) - resolved.
- 0005810: [Client] If photo made in windowed-mode with in-game camera, it makes screen print (ccw) - resolved.
- 0007399: [Server] setRuleValue crash (ccw) - resolved.
- 0006321: [Server] Account passwords should be salted (ccw) - resolved.
- 0007442: [Client] Element is destroyed client sided when created and parent set in different resource than the parent (ccw) - resolved.
- 0007250: [Client] Crouching does not work (ccw) - resolved.
- 0007410: [Client] Custom dx-fonts do not work on Windows 8 (ccw) - resolved.
- 0007415: [Server] removeWorldModel doesn't work since MTA 1.3.1 (Cazomino05) - resolved.
- 0006475: [Server] Crash after 5 seconds of connecting to a server (ccw) - resolved.
- 0007388: [Client] Crash when destroying the source of onClientColShapeHit event (ccw) - resolved.
- 0007397: [Server] MTA's weapon function usage differs lately (ccw) - resolved.
- 0007398: [Server] giveWeapon problems (ccw) - resolved.
- 0006583: [Client] Double-clicking on another server from server browser list while connecting to a server makes the game exit to desktop (ccw) - resolved.
- 0007392: [Client] If you join a server of mine, you crash. (ccw) - resolved.
- 0001237: [GUI / Menus / Console] Contents of client's console should be logged to a file (kevuwk) - resolved.
- 0007383: [Server] Impossible fixdb ( internal/registy )db (ccw) - resolved.
- 0007376: [Client] Protocol error (8) when starting Map Editor (ccw) - resolved.
- 0006112: [Client] Steam and MTA (ccw) - resolved.
- 0007368: [Server] Same serial can be banned more than one time. (ccw) - resolved.
- 0007361: [Client] setFogDistance is resetted on some positions (ccw) - resolved.
- 0007020: [Client] onClientPlayerWeaponFire returns incorrect hit positions (ccw) - resolved.
- 0007360: [Server] Not working properly "setElementParent" (ccw) - resolved.
- 0007196: [Server] getElementChildren seems not to work on custom element types (ccw) - resolved.
- 0007308: [Map Editor] Locked Time isn't set correctly (arranTuna) - resolved.
- 0007363: [Client] Please make onClientChatMessage cancelable (ccw) - resolved.
- 0006786: [Client] setFarClipDistance messes with water drawing (ccw) - resolved.
- 0007349: [Client] Ped won't move forwards in the rotation set (ccw) - resolved.
- 0007350: [Client] FarClipDistance is reseting each respawn (ccw) - resolved.
- 0007348: [Client] Rotation offset is messed up when using 'clamp' as texture edge (ccw) - resolved.
- 0006482: [Client] In race, Objects of the same model suddenly lose collision (ccw) - resolved.
- 0006635: [Client] Bikes and RC Bandit sometimes randomly bounce off the ground once their wheels touch the surface (roads, water, ground, etc) (ccw) - resolved.
- 0007328: [Client] Pickups don't load in interiors (ccw) - resolved.
- 0007330: [Client] isPlayerHudShown (ccw) - resolved.
- 0007342: [Server] Server crashes randomly and hangs upon close. (ccw) - resolved.
- 0006508: [Scripting] ped rotation while in air goes opposite direction. (ccw) - resolved.
- 0007283: [Server] setElementFrozen() kills player. (ccw) - resolved.
- 0007329: [Client] In some places, at some camera angles, textures dissapear or flicker (ccw) - resolved.
- 0007337: [Client] Can't move left/right. (ccw) - resolved.
- 0007333: [Server] last argument of server side restoreWorldModel (interior) is not optional, breaks backward compatibility (Cazomino05) - resolved.
- 0007301: [Client] "onClientSoundBeat" don't work (ccw) - resolved.
- 0007318: [Server] Adding one more info in "whowas" command (ccw) - resolved.
- 0007306: [Client] setFarClipDistance() causes client crashes (ccw) - resolved.
- 0007321: [Client] Another Hack (ccw) - resolved.
- 0007320: [Client] New Hacks Detected ~ (ccw) - resolved.
- 0007289: [Map Editor] 'team' types in definition (ccw) - resolved.
- 0007290: [Server] (null) in debug messages (ccw) - resolved.
- 0005179: [Scripting] Vehicle drowning event (JoeBullet) - resolved.
- 0005318: [Server] setElementPosition for vehicles on a non streamed in position will make the vehicle spin very quickly (ccw) - resolved.
Resources:
- 0007420: [Resources] Realdriveby driver shooting bug (Talidan) - resolved.
- 0007394: [Resources] Votemanager can't start votekick, votekill or voteban, if the player, who we want to vote, name contains 1 character. (arranTuna) - resolved.
- 0007338: [Resources] [Admin] Selecting players no longer works (arranTuna) - resolved.
- 0007351: [Optional] Hay: Make camera face haystack after player dies for walking away (arranTuna) - resolved.
- 0007353: [Optional] Freeroam: setpos command parameter check (arranTuna) - resolved.
- 0007271: [Resources] Race pickups and checkpoint improvement (ccw) - resolved.
Map Editor:
- 0007550: [Map Editor] Map Editor shouldn't overwrite script lines in meta.xml (arranTuna) - resolved.
- 0007425: [Map Editor] Make objects, created by editor, have LOD model preinstalled (arranTuna) - resolved.
- 0004767: [Map Editor] Race EDF - Can't enter pickup properties GUI (arranTuna) - resolved.
- 0007311: [Map Editor] Map editor doesn't load object properly but race gamemode does. (arranTuna) - resolved.
- 0007509: [Map Editor] Weapon model changes to 1337 after saving/loading some times (arranTuna) - resolved.
- 0007405: [Map Editor] Some settings aren't reset when you start a new map after working in another (arranTuna) - resolved.
Multi Theft Auto : San Andreas - 1.3.1
======================================
Goal: Improve 1.3 release.
- 0006531: [Client] Crash when taking a screenshot and minimizing then restoring (ccw) - resolved.
- 0007281: [Server] Requesting: fileCopy (ccw) - resolved.
- 0007287: [Server] Can't start server in latest nightly (4587) (ccw) - resolved.
- 0007248: [Server] Another server crash (ccw) - resolved.
- 0007073: [Client] onClientFileDownloadComplete get full absolute filenames (x86) - resolved.
- 0007064: [Server] setPlayerNametagColor(player, false) (reset overridecolor) does not work, bad argument - resolved.
- 0003455: [Scripting] Request: Manual control of color/visibility of "player targeted" icon above head (JoeBullet) - resolved.
- 0007244: [Client] Crash on ZHP server (ccw) - resolved.
- 0007280: [Client] getSoundLength returns 0 for sound streams(not radio streams) (ccw) - resolved.
- 0007276: [Server] Make setVehicleIdleRespawnDelay work for non-streamed in vehicles (ccw) - resolved.
- 0007265: [Server] Connect problem when using a domain name that starts with a number (ccw) - resolved.
- 0007209: [Client] Missing weapon recoil and reload animations when bulletsync is enabled (ccw) - resolved.
- 0007237: [Client] [REQUEST] warpPedIntoVehicle client-side (ccw) - resolved.
- 0006988: [Client] guiComboBoxGetItemText crash when the itemid is greater then the combobox row count (ccw) - resolved.
- 0007125: [Server] Teamsay + long name + long message = too long message (ccw) - resolved.
- 0007001: [Server] setWeaponProperty and getWeaponIDFromName use different weapon names (ccw) - resolved.
- 0007259: [Server] Floating vehicles when using SetVehicleIdleRespawnDelay (ccw) - resolved.
- 0007245: [Client] Server crash when towing a clientside vehicle (ccw) - resolved.
- 0007235: [Client] Bullet Sync, won't synchronize bullets if player isn't targeting (ccw) - resolved.
- 0007230: [Server] 'update' command cause crash immediately (ccw) - resolved.
- 0007236: [Server] [REQUEST] ability to disable mysql warnings (ccw) - resolved.
- 0007108: [Client] Crash when disconnecting from server on 4215 (ccw) - resolved.
- 0007194: [Client] processLineOfSight "light" value returns incorrectly (ccw) - resolved.
- 0007160: [Client] Helicopter Blades are collisionless (missing collision). (ccw) - resolved.
- 0007193: [Client] getPedMoveState returning incorrectly (ccw) - resolved.
- 0007191: [Server] MYSQL - float and decimal returning as a string (ccw) - resolved.
- 0004455: [Client] issues remain with custom model streaming/memory (ccw) - resolved.
- 0007184: [Server] MYSQL - tinyint returning as a string (ccw) - resolved.
- 0005637: [Server] Element data of the root element is not synced on join (ccw) - resolved.
- 0007175: [Client] onClientVehicleCollision - it always returns the same velocity before the collision (ccw) - resolved.
- 0004532: [Server] Server-side command binds don't appear to work (ccw) - resolved.
- 0007101: [Client] Changed Weapon.dat and using other ped.ifp file in any servers where this opportunity are blocked (ccw) - resolved.
- 0007158: [Client] cheats, aim-hack and speedhack (ccw) - resolved.
- 0007130: [Client] cheats, injector and wallhack (ccw) - resolved.
- 0007100: [Client] cheats, injector (ccw) - resolved.
- 0007133: [Client] Custom model LOD distance is not reset after quiting (ccw) - resolved.
- 0007076: [Client] engineReplaceCOL only works inside streaming range. (ccw) - resolved.
- 0003962: [Client] "Vehicle attachment bug" (ccw) - resolved.
- 0005373: [Client] peds' bullets origin from wrong position (ccw) - resolved.
- 0006058: [Server] Add functions to check anticheats and game files verification status. (ccw) - resolved.
- 0006984: [Client] getElementMatrix returns non-standard matrix (Cazomino05) - resolved.
- 0006967: [Server] Function to disable GTA sounds - resolved.
- 0007062: [Server] Reverse compatiblity for engineLoadDFF - resolved.
- 0006630: [Server] Request: ability to change sync rates (ccw) - resolved.
- 0007074: [Client] onClientWorldSound not canceled (ccw) - resolved.
- 0006903: [Client] ServerBrowser wrong ordering by server name (ccw) - resolved.
- 0007041: [Server] toJSON and next can both give errors without location and file line (ccw) - resolved.
- 0007046: [Server] Server crash (ccw) - resolved.
- 0007052: [Server] Server crashes 1.3.0-4047 and 4050 (ccw) - resolved.
- 0006985: [Server] 1.3-3968 Server Crash (ccw) - resolved.
- 0007030: [Server] Server crashing after 10 seconds (ccw) - resolved.
- 0006935: [Client] cheat, wallhack (ccw) - resolved.
- 0007009: [Client] Cheat tool #2 for block (ccw) - resolved.
- 0007010: [Client] New wallhack for block (ccw) - resolved.
- 0007013: [Client] Client and all other clients in sight area crashes when leaving Cropduster (VID 512) near wall (ccw) - resolved.
- 0006345: [Client] Update AC 2. New thing. (ccw) - resolved.
- 0006957: [Map Editor] Map editor not saving locations of objects (ccw) - resolved.
- 0007007: [Client] New cheat tool for block (ccw) - resolved.
- 0006941: [Client] guiComboBoxGetItemText crashes when using indexes >= combobox's items count (ccw) - resolved.
- 0006695: [Multi Theft Auto : San Andreas] CheetEngine (ccw) - resolved.
- 0006871: [Server] <map src="" dimension="0"></map> in meta crashes server (kevuwk) - resolved.
- 0006949: [Client] Request: client-side pickup events (ccw) - resolved.
- 0006939: [Server] Expired timers can lead to wrong references (ccw) - resolved.
- 0006901: [Client] playSound3D wrong 3D effect (kevuwk) - resolved.
- 0006919: [Client] Add option to skip Dual Monitor Resolution Select (ccw) - resolved.
- 0006004: [Scripting] Implement getAllAccountData function (kevuwk) - resolved.
- 0005474: [Client] getKeyState does not differentiate between right and left keys (alt, ctrl, shift) (kevuwk) - resolved.
- 0006621: [Client] Using setPedAnimationProgress Incorrectly Yields A Crash + Other Problems (kevuwk) - resolved.
- 0006795: [Server] Downloading resource files breaks often (ccw) - resolved.
- 0006796: [Server] Download freeze MTA 1.3 (ccw) - resolved.
- 0006744: [Server] Possibility to flag (required/optional) the files to download from the servers (kevuwk) - resolved.
- 0004481: [Server] Add more download functionality (kevuwk) - resolved.
- 0005358: [Scripting] Add a "downloadFile" (kevuwk) - resolved.
- 0006874: [Client] Force 'shownetstat' gui to be in front of all guis. (ccw) - resolved.
- 0006888: [Client] Client doesn't try saved password when redirected (ccw) - resolved.
- 0006890: [Server] 1.3-3851 Server crash x2 (ccw) - resolved.
- 0006828: [Resources] Hacking the server is easy if all resources have admin rights (i.e. for kicking) (ccw) - resolved.
- 0006447: [Server] giveWeapon triggers onPlayerWeaponSwitch with setAsCurrent=false (kevuwk) - resolved.
- 0006767: [Client] setRainLevel doesn't reset on disconnect (kevuwk) - resolved.
- 0006885: [Server] Range bans say that everyone is banned (kevuwk) - resolved.
- 0006876: [Server] Map files are downloading very slow (ccw) - resolved.
- 0006812: [Client] Engineless NRG-500 Variant (ccw) - resolved.
- 0005838: [Synchronization] Satchels should be removed on resetMapInfo (kevuwk) - resolved.
- 0006150: [Server] Console can logout, but cannot log back in. (lil_Toady) - resolved.
- 0005432: [Server] Destroying source of onElementStopSync crashes the server (lil_Toady) - resolved.
- 0006826: [Server] Timeout on map change (ccw) - resolved.
- 0006021: [Scripting] should "outputChatBox" and "outputDebugString" automatically "tostring" values that ain't a string? (lil_Toady) - resolved.
- 0006862: [Server] Incorrect information about load module. (kevuwk) - resolved.
- 0004987: [Synchronization] isPedInWater ( ped ) doesnt set back to false if you warp into a vehicle from the water (kevuwk) - resolved.
- 0006869: [Client] triggering events is unreliable with strings > 65535 bytes (ccw) - resolved.
- 0006837: [Client] cheat, speed hack and other (ccw) - resolved.
- 0006838: [Client] cheat, wallhack (ccw) - resolved.
- 0006839: [Client] cheat, speed hack and other (ccw) - resolved.
- 0003160: [General] Add a way to load and unload modules without restarting the server (kevuwk) - resolved.
- 0006835: [Server] Server logic/lua/CLuaFunctionRef.cpp:72 assertion error (ccw) - resolved.
- 0006834: [Server] "Player not found." console spam causes lag (ccw) - resolved.
- 0006833: [Client] getZoneName citiesonly is not working correct (ccw) - resolved.
- 0006793: [Server] setElementDimension dont work for element tree (kevuwk) - resolved.
Resources:
- 0005436: [Resources] Stealth Gamemode Contains Debug After Team Choice (arranTuna) - resolved.
- 0006706: [Resources] Fallout: Fixed Freecam (Patch included) (arranTuna) - resolved.
Map Editor:
- 0007275: [Map Editor] Gamemode Settings are not in Test When no Save Before Test (arranTuna) - resolved.
- 0007277: [General] Add object collisions option (arranTuna) - resolved.
- 0007091: [Map Editor] Map settings change to default after map testing. (arranTuna) - resolved.
- 0006704: [Map Editor] Add a scale option for the map editor (arranTuna) - resolved.
- 0006612: [Map Editor] cannot save data "Invert Mouse Look" (arranTuna) - resolved.
- 0005791: [Map Editor] Placing peds (arranTuna) - resolved.
- 0006723: [General] RGB Color Picker For Vehicles (arranTuna) - resolved.
Multi Theft Auto : San Andreas - 1.3
====================================
Goal: Extend 1.2 and eliminate bugs and introduce features that did not make 1.2.
- 0005147: [General] Problems with corona markers and interiors not appearing (ryden) - resolved.
- 0006780: [Client] Request: Online players count at bottom left corner on server browser (ryden) - resolved.
- 0006589: [Client] Map download breaks often on large transfers (ccw) - resolved.
- 0005891: [Scripting] Several vehicles will not work with vehicle events and functions (Cazomino05) - resolved.
- 0003252: [Synchronization] Heat seekers sync isn't accurate (Cazomino05) - resolved.
- 0004988: [Synchronization] createProjectile() velocity desync between clients (Cazomino05) - resolved.
- 0004295: [Client] Custom imported objects texture is white sometimes (ccw) - resolved.
- 0002501: [General] stopping certain gamemodes causes laffy-taffy cj or textureless player bug (ChrML) - resolved.
- 0001327: [General] Laffy Taffy/Roadkill CJ Model (ccw) - resolved.
- 0006405: [Client] Chinese/Japanese letters doesn't showing (ccw) - resolved.
- 0006789: [Multi Theft Auto : San Andreas] error: kick trainer AC #4 O6IL.ncD2 (ccw) - resolved.
- 0006675: [Client] Warp Glitch (Talidan) - resolved.
- 0006778: [Client] Korean characters are broken only when it was typed in chatbox. (ccw) - resolved.
- 0006299: [Vehicles] [1.1] Always falling off bikes and motorbikes (Cazomino05) - resolved.
- 0006773: [Server] Server crashes when being flooded (ccw) - resolved.
- 0006754: [Server] Crash when turning threadnet off (ccw) - resolved.
- 0006751: [Client] Starting MTA for the first time in some scenarios will cause the client not to receive bikes (ccw) - resolved.
- 0006735: [Server] Localisation support is broken! tonumber("12.12") returns nil! (ccw) - resolved.
- 0006727: [Server] Random extra lines and strange numbers in console (ccw) - resolved.
- 0006726: [Client] Server with more than 300 players or less disappears from server browser and favourites (ccw) - resolved.
- 0006700: [Client] Crash when doing nothing in server browser (ccw) - resolved.
- 0006670: [Client] Objects scaled with setObjectScale aren't rendered when the unscaled bounding box goes off-screen (ryden) - resolved.
- 0006645: [Server] Some vehicles become indestructible when a certain door is open (ryden) - resolved.
- 0006729: [Installer] Installer forces you to install core resources (ccw) - resolved.
- 0005711: [Client] Request for a function: onClientVehicleCollision (Cazomino05) - resolved.
- 0006765: [Server] Add or fix MySQL stored procedures to built-in SQL functions (ccw) - resolved.
- 0005824: [Scripting] [Request] Add function for unloading and reloading San Andreas map (Cazomino05) - resolved.
Resources:
- 0005934: [Optional] Freeroam: Add location bookmarking and store it clientside (arranTuna) - resolved.
- 0006775: [Resources] Freeroam:sorting bug (arranTuna) - resolved.
- 0006522: [Resources] No "Set Nick" ACL right and permission check in "admin" resource (arranTuna) - resolved.
- 0006725: [Resources] Few errors and warnings of resources #2 (arranTuna) - resolved.
Multi Theft Auto : San Andreas - 1.2
====================================
Goal: Fix more obscure issues and implement features that have large applications but not high-priority demand.
- 0006702: [Client] Crash on connect (ccw) - resolved.
- 0006422: [Client] Incorrect width of GUI Tab title with Unicode symbols (while first creating) (ccw) - resolved.
- 0006699: [Client] All vehicles in a mapfile have the same color and variant (ccw) - resolved.
- 0006426: [Server] resetMapInfo sets the level of the predefined water bodies and pools to the sea level (Mr.Hankey) - resolved.
- 0004361: [Scripting] Water elements destroyed through resetMapInfo do not reappear (ccw) - resolved.
- 0005189: [Client] Water/clouds invisible through the vehicles windows (ccw) - resolved.
- 0006561: [Client] Loading system fonts can sometimes fail (ccw) - resolved.
- 0006708: [Client] Loading of CJ clothes causes client pauses (ccw) - resolved.
- 0005236: [Maps] LOD system for custom models (ccw) - resolved.
- 0006694: [Client] Change dual-wielded weapon animations. (Cazomino05) - resolved.
- 0004035: [General] Integrate MySQL into MTA server, and unify interface with SQlite (ccw) - resolved.
- 0006597: [Server] Actually save data to registry.db and internal.db (ccw) - resolved.
- 0005962: [Synchronization] Sawnoff shotgun glitch (Cazomino05) - resolved.
- 0006163: [Synchronization] Fix lightweight sync (Cazomino05) - resolved.
- 0006686: [Resources] It is impossible to get the Hotring racer with ID 502 by typing it's name, (Cazomino05) - resolved.
- 0005982: [Synchronization] Add option to disable/enable very close range extreme damage (Cazomino05) - resolved.
- 0006299: [Vehicles] [1.1] Always falling off bikes and motorbikes (Cazomino05) - resolved.
- 0006439: [Client] Created vehicle suddenly warps to far location (Cazomino05) - resolved.
- 0005625: [Client] [Request] clientside functions toJSON, fromJSON (ccw) - resolved.
- 0006567: [Server] function to rename resource (ccw) - resolved.
- 0006568: [Server] copyResource() function does not function (ccw) - resolved.
- 0005169: [Synchronization] Optimize puresync and keysync broadcasting (ccw) - resolved.
- 0005484: [Server] function to delete resources (ccw) - resolved.
- 0003162: [Scripting] setVehicleIdleRespawnDelay doesn't work (mekorea) - resolved.
- 0006367: [Client] Unicode symbols dont show in "disconnected" window. (Talidan) - resolved.
- 0005423: [Server] [Request] More debug for infinite running script (mekorea) - resolved.
- 0006277: [Client] CEGUI Chat unicode bug (Talidan) - resolved.
- 0005868: [Scripting] [Request] onChatMessage server-side (mekorea) - resolved.
Resources:
- 0006720: [Resources] Few errors and warnings of resources (arranTuna) - resolved.
- 0006698: [Resources] GPS causes errors when path or path2 used incorrectly (arranTuna) - resolved.
Multi Theft Auto : San Andreas - 1.1.1 R2
=========================================
- 0006655: [Client] Text problems (ccw) - resolved.
- 0006657: [Server] Large race maps rocket the CPU usage (ccw) - resolved.
- 0004503: [Synchronization] Glitch for shooting bullets remotely while reloading (Cazomino05) - resolved.
- 0006669: [Server] Request: File and line number for db* warnings - resolved.
- 0006673: [Client] Sometimes possible to shoot though walls (ccw) - resolved.
- 0006665: [Client] Unfinished download size double when a race map is restarted (ccw) - resolved.
- 0006644: [Client] New detailed F11 map (ccw) - resolved.
- 0006124: [Server] Some console messages doesn't make a new line. (ccw) - resolved.
- 0006629: [Server] dbQuery crashes the server if it encounters an empty (NULL) MySQL data field (ccw) - resolved.
- 0006410: [Server] Segmentation fault with latest MTA 1.1 (ccw) - resolved.
- 0006618: [Map Editor] Press F5, CJ spawns and nothing else happens (ccw) - resolved.
- 0005884: [Server] REQUEST: Ability to create/open/delete custom SQLite DBs insteed of using general "registry.db" (ccw) - resolved.
- 0006603: [Server] 1.1.1 Server Crash (ccw) - resolved.
- 0006594: [Client] When connect to notfind server, mta dont check password and say "entering the game..." (ccw) - resolved.
- 0006578: [Client] Colorful shapes flashing all over my screen. (enough to probably cause a siezure) (ccw) - resolved.
- 0006411: [Client] MTA does not recognise UTF-8 without BOM (and luac can't compile UTF-8 files) (ccw) - resolved.
- 0005875: [Scripting] Incorrect usage of guiCreateTab causes crash - resolved.
- 0006549: [Client] Maximizing with roadshine 3 shader causes runtime error (ccw) - resolved.
- 0006539: [Server] setResourceInfo won't update the file, if the attribute is already set (ccw) - resolved.
- 0006532: [Client] Client sounds replaying when restreamed (ccw) - resolved.
- 0006214: [Client] Menu labels issue (ccw) - resolved.
Multi Theft Auto : San Andreas - 1.1.1
======================================
Goal: Interim bugfix release
- 0004457: [General] Replace weapon models (Cazomino05) - resolved.
- 0005770: [Client] [Request] Ped skins model replacement (Cazomino05) - resolved.
- 0006465: [Server] getPedWeapon serverside messes up (Cazomino05) - resolved.
- 0006504: [Server] getValidPedModels returns incomplete table (Cazomino05) - resolved.
- 0006507: [Client] Crash when trying to play sound from the resource that is not running (Cazomino05) - resolved.
- 0006414: [Client] Severe graphical problems (ccw) - resolved.
- 0006427: [Server] pickups created by map file do respawn immediately (Cazomino05) - resolved.
- 0006489: [Client] [r3128] Crashing on connect repeatedly (ccw) - resolved.
- 0006486: [Client] MTA is able to execute code with a buffer overrun (ccw) - resolved.
- 0006466: [Client] 3D sounds (set to element streams) attached to vehicles do not sync for some players (Cazomino05) - resolved.
- 0006425: [Client] clientside getPlayersInTeam returns wrong data (ccw) - resolved.
- 0006077: [GUI / Menus / Console] Crash while changing GUI skin in Settings (ccw) - resolved.
Multi Theft Auto : San Andreas - 1.1
====================================
Goal: Relatively large bugfixes that affect the gameplay and usability of 1.0.
Target:
* Introduction of features that were in development for, but did not ship with 1.0.
- 0006387: [Client] Unable to edit GUI (ccw) - resolved.
- 0005146: [Server] Explosions show in all dimensions (Cazomino05) - resolved.
- 0006373: [Client] Inability to use ' properly on certain keyboards (ccw) - resolved.
- 0006380: [Scripting] fileRead has problems reading a UTF-8 file (ccw) - resolved.
- 0006323: [Server] Weird bandwidth (upload) usage. (ccw) - resolved.
- 0006352: [Client] Editing vehicle handling while NOS is enabled causes the vehicle to act weird (Cazomino05) - resolved.
- 0006384: [Client] getCursorPosition() does not work unless showCursor() is used (ccw) - resolved.
- 0006377: [Server] outputChatBox long unicode strings are not correctly displayed (ccw) - resolved.
- 0006364: [GUI / Menus / Console] [1.1] Auto complete in console adds last pressed button (ccw) - resolved.
- 0006374: [GUI / Menus / Console] Chat doesnt adjust input area for multiple lines in 1.1 (ccw) - resolved.
- 0006368: [Server] addVehicleUpgrade (server-side only) doesn't work on vehicles whose models have been set from bikes to cars (Cazomino05) - resolved.
- 0006369: [Multi Theft Auto : San Andreas] Cars transformed from Andromadas spawn without wheels (Cazomino05) - resolved.
- 0005496: [Server] [REQUEST] setPedAnimationProgress scripting function (ccw) - resolved.
- 0006333: [Scripting] Stop out of range sounds entirely (ccw) - resolved.
- 0006341: [Client] Assertion failure in CMultiplayerSA.cpp (ccw) - resolved.
- 0006316: [Client] [1.1] Certain shaders fail because of d3d9.dll (ccw) - resolved.
- 0006241: [Scripting] getPacketLoss() function request (ccw) - resolved.
- 0006342: [Server] Serverside get/set aircraftMaxHeight (x86) - resolved.
- 0005818: [Client] Crosshair and sniperscope option for showPlayerHudComponent (x86) - resolved.
- 0005763: [Scripting] Fix or remove "explode" argument in blowVehicle (Mr.Hankey) - resolved.
- 0006212: [Client] Make server browser more clear (ccw) - resolved.
- 0006314: [Client] The browser where you type for find a server doesn't work (ccw) - resolved.
- 0006307: [Client] Render targets have a tendency to break with alt+tab (ccw) - resolved.
- 0006297: [Server] triggerClientEvent not resolved (lil_Toady) - resolved.
- 0006047: [Client] Function to check wether a player has used alt+tab (ccw) - resolved.
- 0006293: [Client] Add function to disable/enable water sound (ccw) - resolved.
- 0006301: [Client] guiComboBoxGetItemText(combo, -1) crashes (x86) - resolved.
- 0006189: [Client] Lossy packaging with tables during triggerServerEvent (lil_Toady) - resolved.
- 0005563: [Client] BASS library causes constant Thunderstorm audio bug (Cazomino05) - resolved.
- 0006205: [Client] I cant listen anything exepting in position 0, 0, 0 (Cazomino05) - resolved.
- 0006072: [GUI / Menus / Console] Ensure labels cannot overlap buttons throughout the GUI (Cazomino05) - resolved.
- 0006115: [Vehicles] Jacking a player results in net trouble and can't enter vehicles (Gamesnert) - resolved.
- 0006276: [Client] `host game` not comtatible with new resource folders structure (ccw) - resolved.
- 0005585: [Client] getChatboxLayout().chat_scale returns invalid values (ccw) - resolved.
- 0004919: [Client] Disable GTA Weapon shooting sounds (ccw) - resolved.
- 0006271: [Client] Engine functions not useable (ccw) - resolved.
- 0006222: [Client] Client crash when join a Server (ccw) - resolved.
- 0006248: [Client] playSound accessType parameter missing (ccw) - resolved.
- 0006259: [Server] setAttachedElementOffsets has some form of rotation bug (ccw) - resolved.
- 0005728: [Client] Creating "Brown Streak Carriage" (model 570) crashes the client (ccw) - resolved.
- 0006254: [GUI / Menus / Console] "MTA:SA 1.0 required"-box has a text problem (ccw) - resolved.
- 0006161: [Client] Multi Theft Auto.exe doesn't close (ccw) - resolved.
- 0006249: [Scripting] s/getElementAttachedOffsets don't use degrees (Mr.Hankey) - resolved.
- 0006236: [Client] Restarting a resource containing shaders can fail with "No valid technique" (ccw) - resolved.
- 0006240: [Client] Some shader examples don't work like they should (ccw) - resolved.
- 0003457: [Vehicles] request: Complete handling function set (Cazomino05) - resolved.
- 0005922: [Scripting] [Handling] Add functions for handling and model flags (Cazomino05) - resolved.
- 0005759: [Scripting] [Handling] Limits required on handling properties (Cazomino05) - resolved.
- 0005921: [Synchronization] [Handling] RecalculateSuspension recalculates all vehicles of that model (Arc) - resolved.
- 0005761: [Scripting] [Handling] certain properties don't work or are useless (Cazomino05) - resolved.
- 0005979: [GUI / Menus / Console] Options: Video, audio, and chatbox have no default button (Cazomino05) - resolved.
- 0006065: [Client] 1.1 FPS issues (ccw) - resolved.
- 0006144: [General] 1.1 FPS issue 2: In the Map Editor FPS down to 2 in the color picker. (ccw) - resolved.
- 0006148: [General] 1.1 FPS issue 5: Periods of FPS drops for no apparent reason (ccw) - resolved.
- 0006147: [General] 1.1 FPS issue 4: FPS drop after restarting a resource. (ccw) - resolved.
- 0006060: [Client] 1.1 FPS issue 1: dxscoreboard reduces FPS (much more than in 1.0.5) (ccw) - resolved.
- 0006146: [General] 1.1 FPS issue 3: FPS drops on shoot from "Hunter" (ccw) - resolved.
- 0006181: [Client] Monster truck is impossible to drive in a straight line (Cazomino05) - resolved.
- 0006153: [Client] Crash MTA with refresh (Towncivilian) - resolved.
- 0006173: [Client] Brass knuckle by creating a pickup on your current position (Cazomino05) - resolved.
- 0005858: [Synchronization] Make resetMapInfo take away weapons (Cazomino05) - resolved.
- 0005835: [Scripting] Not possible to simulate satchel detonation (Cazomino05) - resolved.
- 0005988: [Server] If a pickup is created inside the player they will improperly take the pickup (Cazomino05) - resolved.
- 0006190: [Synchronization] [1.1] Ped death Issues - resolved.
- 0006180: [Client] Killing a ped slides you towards him (ryden) - resolved.
- 0006157: [Client] triggerServerEvent isnt useable (ryden) - resolved.
- 0006075: [Client] dxDrawText - Add parameters of X and Y scaling (ccw) - resolved.
- 0006187: [GUI / Menus / Console] [1.1 Beta] 'Server Browser' text hitbox on main menu can become offset (Talidan) - resolved.
- 0005886: [Client] [Editor] Objects' positions gets resetted and setted when moving the camera (ccw) - resolved.
- 0006183: [Client] [1.1 Beta] Often sky mess up in r2797 (ccw) - resolved.
- 0006210: [Client] Creating many fonts can make to objects fade in and out (When restarting a resource several times) (ccw) - resolved.
- 0006207: [Scripting] function name 'areInteriorSoundsEnabled' makes my tummy hurt (ccw) - resolved.
- 0006206: [Client] set(Ped)AnalogControlState (Talidan) - resolved.
- 0005986: [Client] New menu mouse over seems inaccurate (Talidan) - resolved.
- 0006113: [Client] radioID 13 (Cazomino05) - resolved.
- 0005517: [Client] dxDrawText does not always display newlines (\n) (and wordwrap does not work) (ccw) - resolved.
- 0006049: [Client] GUI tab panel tabs won't get added if GUI not visible (lil_Toady) - resolved.
- 0006166: [Client] [1.1 Beta] Moving doors don't move (Gamesnert) - resolved.
- 0005961: [GUI / Menus / Console] Main menu leaves large black sides on widescreen resolutions (Talidan) - resolved.
- 0006078: [GUI / Menus / Console] The Latest News box disappears from main menu after changing the GUI skin (Talidan) - resolved.
- 0006176: [Client] Custom fonts crashes (ccw) - resolved.
- 0006182: [Client] guiBringToFront and guiMoveToBack not working on labels (lil_Toady) - resolved.
- 0005764: [Server] tonumber on floats returns nil (Talidan) - resolved.
- 0006179: [Client] [1.1 Beta] dxCreateScreenSource causes crash with maximize - resolved.
- 0005873: [Client] FPS-Limiter reduces FPS (ccw) - resolved.
- 0006168: [Client] showPlayerHudComponent("all", false) does not hide area names. (x86) - resolved.
- 0006170: [Scripting] New `exports[resourcePointer]:someFunction(...)` syntax for client and server (x86) - resolved.
- 0006174: [Client] ClipBoard lua functionality (lil_Toady) - resolved.
- 0006020: [Scripting] Add account data change event (lil_Toady) - resolved.
- 0006059: [Client] Exported functions break if the owner resource is restarted - resolved.
- 0005832: [Client] Improve the functionality of the loadFont (ccw) - resolved.
- 0005750: [Synchronization] Solve the problem of stacked element ids reusal causing issues with poorly coded scripts (ryden) - resolved.
- 0006096: [General] Increase the available streamer memory (ryden) - resolved.
- 0006126: [Server] Linux 1.1-2700 server crashes with unknown reason (ccw) - resolved.
- 0006128: [Client] Impossible to create directories (ccw) - resolved.
- 0006141: [Client] [1.1 Beta] Label alignment "center" "right" "bottom" are mixed up (ccw) - resolved.
- 0006070: [Server] Allow to start resources from another cataloge than 'resources'/. (ccw) - resolved.
- 0005709: [Server] add on(Player)Command Event (Gamesnert) - resolved.
- 0006085: [Server] fromJSON does not work correctly (Gamesnert) - resolved.
- 0005751: [General] Fix or revert r2146 (Gamesnert) - resolved.
- 0005752: [General] Fix or revert r2145 (Gamesnert) - resolved.
- 0005985: [Server] redirectPlayer() saves password (Cazomino05) - resolved.
- 0006053: [Client] outputDebugString can output random charachters (ccw) - resolved.
- 0006039: [Client] Crash when restarting a resource and crashes when joining from then on (ccw) - resolved.
- 0006052: [Client] All aspect ratio support. (ccw) - resolved.
- 0005958: [GUI / Menus / Console] Implement Bidi and Arabic input for CEGUI (Talidan) - resolved.
- 0005120: [Installer] Require nickname/player name on install (Talidan) - resolved.
- 0004270: [General] Many objects crash the Editor (Talidan) - resolved.
- 0004965: [Synchronization] Gluing on vehicles allows you to fire with infinite ammo (Talidan) - resolved.
- 0005133: [General] GTA's keybinds are not correctly copied after first install. (Talidan) - resolved.
- 0005959: [GUI / Menus / Console] News items get cut off on low resolutions (Talidan) - resolved.
- 0005990: [GUI / Menus / Console] Commands to hide chat and hud are different formats (showchat [0/1], hud[0/1]) (Talidan) - resolved.
- 0003135: [GUI / Menus / Console] guiLabelGetFontHeight does not work for sa-header and gothic font (Talidan) - resolved.
- 0005955: [Scripting] Implement heuristic UTF-8 detection (Talidan) - resolved.
- 0005933: [Client] Clientscript doesn't load (Talidan) - resolved.
- 0006029: [Server] An empty lua file will crash the server (Talidan) - resolved.
- 0005987: [Server] takeWeapon / takeWeaponAmmo can result in having negative ammo (ccw) - resolved.
- 0005975: [Client] Severe performance loss in 1.1 unstables (ccw) - resolved.
- 0006038: [GUI / Menus / Console] 1.1-unstable-2535 to 1.1-unstable-2539 crash when starting the game (x86) - resolved.
- 0005544: [Client] mtasa:// uri's don't prompt for a server password. (Talidan) - resolved.
- 0006017: [GUI] Can't guiBringToFront/MoveToBack gui labels (lil_Toady) - resolved.
- 0005899: [GUI] guiComboBoxAddItem doesn't work with unicode text (Talidan) - resolved.
- 0005972: [Client] Hosting a local server will crash on unstable-2445 (ccw) - resolved.
- 0005796: [Scripting] Request: Gamesnert's world and weather scripting functions server-side (Gamesnert) - resolved.
- 0005584: [Client] [Request] toggle default music in interiors (Gamesnert) - resolved.
- 0003919: [General] Implement support for unicode text (Talidan) - resolved.
- 0005843: [Synchronization] Network trouble when playing on local server (ccw) - resolved.
- 0005616: [Client] can has gui improvements? - resolved.
- 0005648: [Client] Can't copy full text from console in 1.1 (Talidan) - resolved.
- 0005758: [Client] Images in new menu (Talidan) - resolved.
- 0005792: [Scripting] Implement UTF-8 BOM support for Lua (Talidan) - resolved.
- 0005793: [Scripting] Provide a solution to migration from ANSI to Unicode (Talidan) - resolved.
- 0005865: [Client] Brazilian cruzeiro symbol isn't showed right (Talidan) - resolved.
- 0005900: [GUI] guiSetProperty doesn't work with unicode text (Talidan) - resolved.
- 0005863: [GUI / Menus / Console] Scrollbar arrows do not work correctly on some MTA settings (Talidan) - resolved.
- 0005866: [Multi Theft Auto : San Andreas] [Patch] Mip Mapping enable/disable option in video settings tab (Talidan) - resolved.
- 0005638: [Client] setWindSpeed [pre-patch included] (Gamesnert) - resolved.
- 0005654: [Client] MTA:SA 1.0.4 doesn't sync the FPS Limit (ccw) - resolved.
- 0005847: [Client] setVehicleDoorOpenRatio crashes with wrong parameter (ryden) - resolved.
- 0005820: [Client] Characters are multiplied by the amount of skin changes in the chatbox. (Talidan) - resolved.
- 0005560: [Client] Add 'wanted' parameter for showPlayerHudComponent (x86) - resolved.
- 0005802: [GUI / Menus / Console] Changing skins causes a unicode crash (Talidan) - resolved.
- 0005718: [General] Reduce the game loading time (ryden) - resolved.
- 0005783: [Scripting] Request: Export scripting functions to monitorize the network usage. (ryden) - resolved.
- 0001131: [Vehicles] For passengers in a firetruck, the local player camera rotation tries to oversteer the driver's turret rotation (izstas) - resolved.
- 0005767: [General] Incorrect Shift key processing (izstas) - resolved.
- 0005755: [General] The 1.1 datafiles installer default installation path is %PROGRAMFILES%\MTA San Andreas (ccw) - resolved.
- 0005748: [GUI] You can copy passwords etc. from masked gui memos (izstas) - resolved.
- 0005690: [Client] MTA:SA 1.1 r2127 doesn't show cyrillic and I can't copy anything in Console (Talidan) - resolved.
- 0005025: [Client] Serious weapon desynch upon using giveWeaponAmmo on a weapon without ammo (izstas) - resolved.
- 0005261: [Linux] (64 bit) Compile time error relating to TinyXML (impulze) - resolved.
- 0005729: [Scripting] setBlipVisibleDistance function (izstas) - resolved.
- 0005717: [Scripting] createPed() rotation parameter doesn't work (izstas) - resolved.
- 0005253: [General] Remove the old project files. (impulze) - resolved.
- 0005740: [GUI] Crash in CEGUI with unicode characters (ryden) - resolved.
- 0005671: [Multi Theft Auto : San Andreas] Pre-defined global "localPlayer" on client-side (izstas) - resolved.
- 0004215: [General] Standing or walking when dead (ryden) - resolved.
- 0005703: [Scripting] setElementID isn't implemented client-side (izstas) - resolved.
- 0005640: [Server] Mention the help command when starting a server (ccw) - resolved.
- 0005431: [Server] move the autologin option to mtaserver.conf (Gamesnert) - resolved.
- 0005470: [Client] [Request] Improve editbox focus control (Kayl) - resolved.
- 0005682: [Client] Item index 0 doesn't work for guiComboBoxSetSelected (Gamesnert) - resolved.
- 0005659: [Server] onDebugMessage crashes the server (Gamesnert) - resolved.
- 0004145: [Synchronization] Sync vehicle doors open/closed state. (ryden) - resolved.
- 0005655: [Client] setVehicleColor issues (ccw) - resolved.
- 0004821: [Server] [Request] setVehicleRGBColor(element vehicle, int red, int green, int blue) (ccw) - resolved.
- 0005644: [Client] isMTAWindowActive always returning true (x86) - resolved.
- 0004962: [Server] Increase player limit to or past 250 (Cazomino05) - resolved.
- 0005462: [Client] [Request] getCameraView (x86) - resolved.
- 0005542: [Scripting] [Request] server- and clientside getElementAttachedOffsets( element attachedElement ) (Flobu) - resolved.
- 0004600: [Client] Add possibility to hide radio channel text with showPlayerHudComponent (x86) - resolved.
- 0004949: [Client] Add GUI dropdown widgets (Talidan) - resolved.
- 0005601: [Scripting] processLineOfSight should return the normal of the face hit (Kayl) - resolved.
- 0005631: [Client] Inconsistency of setElementRotation/getElementRotation/getElementMatrix (Kayl) - resolved.
- 0004916: [Server] Add daemon mode to server (ryden) - resolved.
- 0005391: [General] Secondary command binds don't function properly (Flobu) - resolved.
- 0004981: [Server] Inconsistent isElementInWater returns (Cazomino05) - resolved.
- 0005183: [Server] setElementCollisionsEnabled() would be nice serverside (Gamesnert) - resolved.
- 0004053: [General] Set whether or not a player can see a goggle effect. (Gamesnert) - resolved.
- 0005501: [Client] Instructions for the "Data files have been modified" message (ccw) - resolved.
- 0005283: [Scripting] playSound3D does not support interiors or dimensions (Gamesnert) - resolved.
- 0005551: [Client] Adding "all" to showPlayerHudComponent (Gamesnert) - resolved.
- 0005446: [Client] getSoundMetaTags returns an empty table from MP3 stream. (Flobu) - resolved.
- 0005239: [Client] [Request]Add a camera view mode parameter to setCameraTarget() (Mr.Hankey) - resolved.
- 0005500: [Client] guiGetSelectedTab on an empty tab panel crashes MTA (Mr.Hankey) - resolved.
- 0005037: [Client] onClientPlayerVehicleExit doesn't trigger on several occasions (Gamesnert) - resolved.
- 0004853: [Client] onClientVehicleEnter(Exit) and onClientPlayerVehicleEnter(Exit) events don't triggered if you jacked other player (Gamesnert) - resolved.
- 0005481: [Client] resetTimer is server-side only (Flobu) - resolved.
- 0004361: [Scripting] Water elements destroyed through resetMapInfo do not reappear (Mr.Hankey) - resolved.
- 0005454: [GUI / Menus / Console] Patch to add a server queue GUI (Talidan) - resolved.
- 0005049: [General] Make knife stealth kills more balanced (Talidan) - resolved.
- 0004120: [Server] Synchronized traffic lights (Peter) - resolved.
- 0001231: [General] Allow use of special skins (Jax) - resolved.
- 0003531: [General] When running a mtasa:// uri, it always tries to start a new instance of gta even if there is already one started (Mr.Hankey) - resolved.
- 0005426: [Server] onColShapeHit doesnt work properly with 3D Cols (ccw) - resolved.
- 0005348: [Client] OnClientDoubleClick not working (Mr.Hankey) - resolved.
- 0005342: [Server] Every resource started creates a guest account (Cazomino05) - resolved.
- 0005135: [General] MTA doesn't send correct data to XFire (Cazomino05) - resolved.
- 0005023: [Server] Keep ASE query version compatible across minor versions - resolved.
- 0005199: [Scripting] Replace irrklang with the BASS audio library (Flobu) - resolved.
- 0004956: [General] Music stops when not looped, on a 64 bit machine (Flobu) - resolved.
- 0005026: [Client] Improve serial algorithm to reduce duplicates (ccw) - resolved.
- 0005360: [Multi Theft Auto : San Andreas] Many General Fixes to SetPedAnimation - Patch - resolved.
- 0005383: [Vehicles] It's impossible to enter a tram or freight as passenger. (x86) - resolved.
- 0005387: [Server] executeSQLUpdate require conditions argument which should be optional (Flobu) - resolved.
Resources:
- 0005916: [Required] resourcebrowser: Add refresh button to check for new resources (arranTuna) - resolved.
- 0006023: [Resources] Run webstats,When click statistic in Firefox,in server write httpWrite, [string "?"] - resolved.
- 0006325: [Resources] Scrollbars missing in web version of resourcebrowser (chrome) (ccw) - resolved.
- 0006319: [Required] Admin panel set blur level does nothing (arranTuna) - resolved.
- 0004993: [Resources] Do not display color codes in nicks in scoreboard (ccw) - resolved.
- 0006305: [Optional] Fix debug warnings/errors in resources (arranTuna) - resolved.
- 0006266: [Resources] CTV: Can capture the vehicle in any teams base (arranTuna) - resolved.
- 0006269: [Scripting] The resource "maplimits" has a bug that eats up more and more resources. (arranTuna) - resolved.
- 0006256: [Resources] [killmessages] Corrupt line 80 of killmessages_server.lua? (arranTuna) - resolved.
- 0006211: [Required] [Freeroam] /cv is missing interior and dimension update. (arranTuna) - resolved.
- 0006221: [Resources] Thumbs.db useless files in resources (ccw) - resolved.
- 0006082: [Resources] performancebrowser: stats for clients does not load (Gamesnert) - resolved.
- 0006106: [Resources] Admin-resource memory usage (ccw) - resolved.
- 0005963: [Optional] Freeroam: Make it easier to close the spawning map window (ccw) - resolved.
- 0005907: [Required] Admin & Admin2: Slap command can be exploited (arranTuna) - resolved.
- 0005720: [Required] [admin] "Give weapon" button doesn't disabled if player has no right to command "giveweapon" (izstas) - resolved.
- 0006324: [Map Editor] duplicating race checkpoints in editor (ccw) - resolved.
- 0004059: [Map Editor] Make test mode only start for the player who pressed F5 or the test button. (arranTuna) - resolved.
- 0006292: [GUI] Progress indicator for loading procedures (arranTuna) - resolved.
- 0004381: [General] Can't change the position of an object any longer. (arranTuna) - resolved.
- 0004793: [Map Editor] You cannot select trains in the map editor (arranTuna) - resolved.
- 0005590: [Map Editor] map settings ignored in test mode (arranTuna) - resolved.
- 0006255: [Multi Theft Auto : Editor] Saving, loading, problems (arranTuna) - resolved.
- 0006090: [General] Cloned objects don't keep the doublesided attribute (arranTuna) - resolved.
- 0006073: [Map Editor] Create vehicle error (Talidan) - resolved.
- 0005643: [Map Editor] I can't open any map (arranTuna) - resolved.
- 0004855: [Map Editor] briefcaserace edf - player spawnpoint looks weird (arranTuna) - resolved.
- 0005246: [General] Race always ends on the first checkpoint when in testing mode (Flobu) - resolved.
- 0005406: [Map Editor] Error in MapEditor, Cant start edit mode anymore. - resolved.
- 0005398: [Map Editor] Mouse messed up on stopping test-mode while in a vehicle (Gamesnert) - resolved.
- 0005463: [Map Editor] Huge maps in the mapeditor don't load completely (Gamesnert) - resolved.
- 0005405: [Map Editor] Joining in the map editor sometimes spawns you in the wrong dimension (Gamesnert) - resolved.
- 0005478: [Map Editor] Slightly oversized patch for the map editor (Gamesnert) - resolved.
- 0005214: [General] Random bug causing Map Editor to delete huge ammounts of your objects in a map (ccw) - resolved.
- 0005237: [General] [EDITOR] Cloned EDF elements are always in interior 0 (Flobu) - resolved.
- 0005238: [EDF] [EDITOR] Client-side EDF scripts aren't loaded on join (Flobu) - resolved.
Multi Theft Auto : San Andreas - 1.0.5
======================================
Goal: Interim bugfix release
Targets:
* Publish all previously made updates for 1.0.4 into a single, convenient release
* Improve anti-cheat system
List of SVN changes:
(r1767) [1.0.4] Fixed accounts database growing very big indeed
(r1768) [1.0.4] Auto-shrink repaired database
(r1777) [1.0.4] Fixed admin commands missing from local editor
(r1782) [1.0.4] Fixed sqlite slowing the server when scripts do lots of table updates
(r1793) [1.0.4] Backported r1790 (Fixed 'CRC mismatch' occurring too often.)
(r1853) [1.0.4] Added a warning for dots in resource names
(r1857) [1.0.4] Backported r1855 (Fixed keybinds crash) 1856 (Fixed misc crash #5)
(r1865) [1.0.4] Backported r1860 (Sped up screenshot saving)
(r1883) [1.0.4] Backported r1881 (Fixed server crash on resource stop (From customer .dmp file))
(r1885) [1.0.4] Added getPerformanceStats()
(r1963) [1.0.4] Backported r1962 (Limit client HTTP connections)
(r1966) [1.0.4] Backported r1876 (resetTimer is server-side only).
(r1967) [1.0.4] Backported r1828 & r1831 (Server queue)
(r1968) [1.0.4] Backported r1776 (Secondary command binds don't function properly)
(r1971) [1.0.4] Backported r1970 (Fixed crash on resource restart. Improved server 'Network module not compatible' message.)
(r1973) [1.0.4] Fixed crash when copying unicode strings from CEGUI. (Patch from rafalhPL)
(r1983) [1.0.4] Backported r1981 (Added file permission fixer. Expanded autoupdater.) r1891 (Fixed a problem when downloading from some http servers)
(r1985) [1.0.4] Backported r1984 (Disabled permissions fixer for XP)
(r1987) [1.0.4] Backported r1986 (Added Linux GetLocalTimeString. Unified SStringReplace and ReplaceSubString. Improved updater in some fashion.)
(r1989) [1.0.4] Backported r1988 (Added better support for Linux nohup)
(r1992) [1.0.4] Backported r1991 (Fixed crash on mtaserver.conf error)
(r2000) [1.0.4] Backported r1999 (Fixed 'serverip' setting.)
(r2001) [1.0.4] Backported r1993 (Fixed getVehicleOccupants freezing when used on certain vehicles (now returns false for those vehicles))
(r2002) [1.0.4] Updated updater. Sped up install.
(r2010) [1.0.4] Added manual update check button. Changed the way the 'Player' default name can be changed by servers.
(r2013) [1.0.4] Made ban messages more helpful
(r2020) [1.0.4] Enabled and refactored error reporter.
(r2033) [1.0.4] Improved on-line help
(r2034) [1.0.4] Split the fastmove and crouchbug glitch
(r2035) [1.0.4] Lua sdk and updater update
(r2040) [1.0.4] Added cache to server browser to decrease scanning time.
(r2043) [1.0.4] Sped up server browser some more. Backported r2038 (Removed a stupid check.)
(r2045) [1.0.4] Fixed HTTP server freezing
(r2046) [1.0.4] Test for possible fix of invalid model crashes.
(r2047) [1.0.4] Added signing for updates
(r2048) [1.0.4] Added crash fix
(r2049) [1.0.4] Sped up accounts access when there are many accounts
(r2050) [1.0.4] Added HTTP DoS protection
(r2051) [1.0.4] Fixed water incongruities
(r2056) [1.0.4] Sped up disconnect
(r2057) [1.0.4] Added list speed ups
(r2058) [1.0.4] List speed ups fix from ryden
(r2060) [1.0.4] Loading crash fix
(r2062) [1.0.4] Fixed crash on explosion
(r2071) [1.0.4] Backported r2065 (Added support to daemonize the Linux server.)
(r2073) [1.0.4] Added backup master server support
(r2074) [1.0.4] Added open ports tester for the server
(r2085) [1.0.4] Backported: r1796 (Added CSettingsSA::Set/Get MouseSensivity.)
(r2101) [1.0.4] Added server browser improvements: GUI visible servers queried first. IP sort works. Server name sort ignores case and punctuation. Browser can see other versions and launch them. Also: GUI speed ups. MOTY 'advice' dialog.
(r2102) [1.0.4] Fixed open URL bug. Tweaked server browser settings.
(r2142) [1.0.4] Backported r2136 (Removed dependency on libpcre for Linux)
(r2144) [1.0.4] Fixed crash with unbind command
(r2147) [1.0.4] Fixed crash. Fixed textures missing with some motherboards. Fixed FPS bug.
(r2156) [1.0.4] Fixed older clients overloading external web server
(r2161) [1.0.4] Backported r2160 (Fixed delay when connecting to a local server)
(r2166) [1.0.4] Backported r2163 (Added option to block servers) r2164 (Added news headlines) r2165 (Addendum to r2164)
(r2172) [1.0.4] Backported r2167 (Fixed incorrect AC kick with onClientPlayerDamage)
(r2173) [1.0.4] Backported r2174 (Modified main menu layout) r2197 (Fixed news window being open at the wrong time)
(r2200) [1.0.4] Backported r2162 (Implemented SharedUtil::tolower and SharedUtil::toupper so it can be inlined.)
(r2228) [1.0.4] Backported r2226 (Sped up joining servers with huge element counts) | r2227 (Modified updater in mysterious ways)
(r2321) [1.0.4] Backported r2318 (Removed unused drawing code) r2320 (Added more error checking at launch)
(r2345) [1.0.4] Backported r2328 (Sped up getElementsByType and others) r2338 (Huge commit of doom) r2340 (Renamed MemCpy8) r2344 (Fixed some crashes)
(r2348) [1.0.4] Backported r2346 (Reverted r2344 (Fixed some crashes)) r2347 (Fixed some crashes #2)
(r2356) [1.0.4] Backported r2353 (Removed a direct memory access from the data files checker. Fixed a crash patch for Euro exe's. Fixed a compiler warning.)
(r2357) [1.0.4] Backported r2355 (Fixed 'cane' weapon slot. Fixed a cause of network trouble.)
(r2367) [1.0.4] Backported r2360 (Fixed installer not removing the gta_sa.exe from the installation directory)
(r2376) [1.0.4] Backported r2371 (Incremented net module version). Added non automatic Aero fix (Requires manual copying of gta_sa.exe). Tweaked report filter
(r2382) [1.0.4] Backported r2379 (Conformed some settings). r2380 (Fixed FileExists() not working properly on some PCs).
(r2383) [1.0.4] Modified non automatic Aero fix to use gta_sa_aero.exe
(r2395) [1.0.4] Backported r2384 (Fixed chat scroller smoothness, and possible some other things.)
(r2397) [1.0.4] Backported r2386 (Fixed low server fps if GTA not running) Backported r2387 (Added error check to account saving)
(r2410) [1.0.4] Backported r2407 (Fixed a crash when resolving host names.)
(r2418) [1.0.4] Backported r2414 (Fixed upgrader skipping files) r2415 (Fixed resource sometimes using zip file when it shouldn't) r2416(partial) (Fixed a crash in upgrader)
(r2420) [1.0.4] Backported r2417 (Added Lua client performance stats. Uses updated performancebrowser resource.) r2419 (Updated Lua client performance stats.)
(r2423) [1.0.4] Backported r2421 (Added option for volumetric shadows)
(r2436) [1.0.4] Backported r2430 partial (Added updater cache cleaner.) r2435 (Fixed a logging problem)
(r2459) [1.0.4] Disabled /load and /unload
(r2465) [1.0.4] Backported r2460 (Fixed minclientversion fussiness) r2462 (Added cache reuse for the updater) r2463 (Fixed jerky burnout donuts) r2464 (Fixed #5871 (Cars goes inside the ground when streamingout/in)))
(r2479) [1.0.4] Backported r2478 (Possible fix to crash on server join)
(r2482) [1.0.4] Backported r2481 (Fixed not finding already running gta_sa.exe)
(r2484) [1.0.4] Backported r2483 (Fixed message spam at new server startup)
---
Updates made on 3. April:
(r2488) [1.0.5] Backported r2487 (Changed default async loading setting to on. Moved async status star code to a more logic place.)
(r2492) [1.0.5] Backported r2466 (Moved something important to see if it helps with animation crashes.)
(r2494) [1.0.5] Backported r2493 (Fixed invisible radar map and display text introduced in r2492)
(r2509) [1.0.5] Backported r2505 (Made performance stats more modular) r2507 (Added advanced option for code added in r2492 (Moved something important to see if it helps with animation crashes.)) r2508 (Possible fix for recent low FPS)
(r2519) [1.0.5] Backported r2518 (Re-blocked some unwanted Lua functions. Added more fix for low FPS.)
List of resolved Mantis issues:
- 0005942: [Client] ASI aka Cleo cheats in MTA 1.0.4 and 1.1 (ccw) - resolved.
- 0005941: [Client] Auto-aim for MTA 1.0.4 (ccw) - resolved.
- 0005952: [Client] Wallhack for MTA 1.0.4 and 1.1 (ccw) - resolved.
- 0005577: [Scripting] Some functions break coroutines (ccw) - resolved.
- 0004829: [Vehicles] Trains slow down in curves (ryden) - resolved.
- 0005396: [GUI / Menus / Console] F11 Map has no texture (ccw) - resolved.
- 0005390: [Weapons] Infrared and Nightvision mode turns off when a player respawns (Talidan) - resolved.
- 0005871: [Vehicles] Cars goes inside the ground when streamingout/in. (ccw) - resolved.
- 0005960: [GUI / Menus / Console] Dates do not behave properly for news items (ccw) - resolved.
- 0004948: [General] Keys stuck after alt-tabbing out of the game (x86) - resolved.
- 0005920: [Scripting] Crash when attachElements on the resource start event (ccw) - resolved.
- 0005738: [Multi Theft Auto : San Andreas] Client hangs up on update check (inc. news update) if DNS server is not available (izstas) - resolved.
- 0005727: [GUI / Menus / Console] Antialiasing option in Video tab (izstas) - resolved.
- 0005734: [General] Pressing ALT+SPACEBAR lets you pause the game (ryden) - resolved.
- 0005712: [General] Protocol 38 Error. (ccw) - resolved.
- 0005674: [Scripting] Creation and destruction of peds seem to crash the client (ccw) - resolved.
- 0005669: [Scripting] onPlayerWeaponSwitch does not always work (Gamesnert) - resolved.
- 0005650: [General] Sound problems after r2087 update (x86) - resolved.
- 0005562: [GUI / Menus / Console] More options in Audio tab (Radio and Usertrack options) (x86) - resolved.
- 0005504: [GUI / Menus / Console] Mouse settings aren't loading on "Load defaults" click (x86) - resolved.
- 0005359: [GUI / Menus / Console] [Request] Mouse sensitivity isn't added. (x86) - resolved.
- 0005617: [Scripting] MTA:SA 1.0.4 has bug with Race Pick-Ups (ccw) - resolved.
- 0005421: [Scripting] guiStaticImageLoadImage prone to crash? (ccw) - resolved.
- 0005626: [GUI / Menus / Console] Players list isn't updated on some servers (ccw) - resolved.
- 0005587: [Server] Server crashes x2 (ccw) - resolved.
- 0005530: [General] Crash when I was playing (ccw) - resolved.
- 0005574: [Scripting] Useless debug messages (ccw) - resolved.
- 0005576: [General] CTD when hitting air with vibrator (ccw) - resolved.
- 0005468: [Client] Crash dumps (ccw) - resolved.
- 0005466: [General] MTA Crash (ccw) - resolved.
- 0005465: [General] Crashes - the next one part (ccw) - resolved.
- 0005487: [Server] Server sometimes quits without warning (ccw) - resolved.
- 0005476: [Server] Server consumes memory over time (ccw) - resolved.
- 0005455: [General] MTA crash dumps (ccw) - resolved.
- 0005445: [General] MTA is crashing every 30-60 minutes (ccw) - resolved.
- 0005162: [Server] Download timeouts caused by temporary internal web server failure (ccw) - resolved.
- 0005388: [Scripting] projectiles can exist forever (ccw) - resolved.
- 0005395: [GUI / Menus / Console] bind configurations are discarded on exit (Flobu) - resolved.
- 0005392: [Server] Banlist gets reset after "ERROR: Could not start HTTP server on interface" message (ccw) - resolved.
- 0005994: [Security] small sync anomalies bug (ccw) - resolved.
Resources:
- 0005954: [Resources] admin: lags server (ccw) - resolved.
- 0005795: [Required] Admin: Temporary hang on switch to "Resources" tab if you've got a lot of resources (arranTuna) - resolved.
- 0005692: [Required] [spawnmanager] Invalid code in spawn.lua (izstas) - resolved.
- 0005880: [Optional] Wrong parameter in stealth (arranTuna) - resolved.
- 0005691: [Required] [killmessages] Warnings in killmessages_server.lua (lines 53 and 90) (ccw) - resolved.
- 0005422: [Optional] [race] Checkpoint colshapes aren't created after player dies (ccw) - resolved.
- 0005943: [Optional] [patch] freeroam: Players can avoid "disallowed" weapon/vehicle check by typing in commands - float values (arranTuna) - resolved.
- 0005974: [Optional] mapmanager: "is not a valid map" output is misleading (arranTuna) - resolved.
- 0005946: [Required] play: Some crucial gameplay elements are not defaulted (arranTuna) - resolved.
- 0005969: [Optional] freeroam: add optional rotation argument to setpos (aka sp) (arranTuna) - resolved.
- 0005917: [Required] resourcebrowser: popup spam when server shuts down unexpectedly (ccw) - resolved.
- 0005915: [Required] resourcebrowser: Get rid of popup when using restart button (arranTuna) - resolved.
- 0005894: [Optional] Freeroam getpos and setpos are different formats (arranTuna) - resolved.
Multi Theft Auto : San Andreas - 1.0.4
======================================
Goal: Gameplay bugfix release
Targets:
* Fixes for issues and crashes that are present in 1.0.3 and are degrading the stability of the software
* High priority gameplay and UI fixes
- 0005612: [Client] guiStaticImageLoadImage causes crash. (ccw) - resolved.
- 0005088: [Client] Download error when downloading files (ccw) - resolved.
- 0005041: [Client] Cursor is showing while loading the game. (x86) - resolved.
- 0005176: [Client] MTA does not always save the favourites list. (x86) - resolved.
- 0004282: [Scripting] GUI overlays MTA menu (Talidan) - resolved.
- 0005640: [Server] Mention the help command when starting a server (ccw) - resolved.
- 0005424: [Server] [Request] Additional resource monitoring functions (ccw) - resolved.
- 0005391: [General] Secondary command binds don't function properly (Flobu) - resolved.
- 0004368: [GUI / Menus / Console] server is added to recently played list when not being fully connected (Cazomino05) - resolved.
- 0005444: [Server] getVehicleOccupants crashes the side it's called on when used on a truck trailer or any train (Gamesnert) - resolved.
- 0005437: [Server] Several Network problems - resolved.
- 0005559: [Client] Weird Network Trouble Behavior - resolved.
- 0005084: [Client] Connecting to server using the server browser doesn't work. (ccw) - resolved.
- 0005435: [Server] Download Error still occurs (ccw) - resolved.
- 0005197: [Server] Dots in resource file names can cause issues (ccw) - resolved.
- 0005372: [Client] MTA Nightlys stopped working with Wine (ccw) - resolved.
- 0005394: [Server] Many accounts delays server to be ready (ccw) - resolved.
- 0005389: [Server] Download Resources not allocatable (ccw) - resolved.
- 0005026: [Client] Improve serial algorithm to reduce duplicates (ccw) - resolved.
- 0005371: [Client] guiGridListSetItemText doesn't remove the section row type (Flobu) - resolved.
- 0005368: [General] Opening a local server after disconnection causes a net.dll VS Runtime Error (ccw) - resolved.
- 0005370: [Scripting] Script error output does not always return the valid filename. (Flobu) - resolved.
- 0005369: [Installer] Previous editor_acl.xml files are invalid, and must be replaced. (Talidan) - resolved.
- 0005362: [Multi Theft Auto : San Andreas] Extra Head Movement Duration For SetPedLookAt - Patch (eAi) - resolved.
- 0005361: [Multi Theft Auto : San Andreas] engineLoadTXD - Filtering Is Now Togglable, Perfect For Mario Kart Maps - Patch (Flobu) - resolved.
- 0005331: [Server] Anti-cheat is broken - resolved.
- 0005336: [Optional] Create possibility to switch off the anticheat (ccw) - resolved.
- 0005330: [Client] Animation Problem with async loading objects (ccw) - resolved.
- 0005329: [Client] Performance problems due to async object loading (ccw) - resolved.
- 0005351: [Server] After accounts.xml conversion MTA Server became unstable (ccw) - resolved.
- 0005356: [General] Add the ability to switch off Radio (ccw) - resolved.
- 0005263: [Client] Destroying a GUI-Button while it's being pressed down causes a client crash (ccw) - resolved.
- 0005165: [Server] Server freezes if too many entries in accounts.xml (Cazomino05) - resolved.
- 0005161: [Server] Connecting players cause huge amount of CPU usage (Cazomino05) - resolved.
- 0004429: [Client] [server browser] The window is not centered. (ccw) - resolved.
- 0004723: [Client] Players cant hear the player play the ice cream song of the mrwhoopee vehicle (ryden) - resolved.
- 0005227: [Scripting] onClientPlayerWeaponFire returns "nil" for hitElement on destroyable objects (ryden) - resolved.
- 0005241: [Scripting] severe fps drop related to attached markers (ccw) - resolved.
- 0005326: [Client] Crash when using 1920x1080 resolution (ccw) - resolved.
- 0005083: [Client] Press on 'a' in nick-field will delete other characters (ccw) - resolved.
- 0005168: [General] Optimize colshapes (ccw) - resolved.
- 0005167: [General] Make model loading asynchronous (ccw) - resolved.
- 0005297: [GUI / Menus / Console] Saving browse servers filters does still not work. (Cazomino05) - resolved.
- 0004374: [Client] singleplayer is started when minimizing mta on loading screen (x86) - resolved.
- 0004458: [Scripting] isPedInVehicle delay (IJs) - resolved.
- 0005302: [Scripting] Not working correctly function getCancelReason (Cazomino05) - resolved.
- 0005307: [Server] the "onElementClicked" event seems to be broken (mabako) - resolved.
- 0005304: [Scripting] [Request] client- and serverside isVehicleDamageProof ( vehicle ) (Flobu) - resolved.
- 0005298: [Scripting] [Request] clientside getCommandsBoundToKey, getKeyBoundToCommand (Flobu) - resolved.
- 0005267: [Server] [Request] serverside set/getElementRotation (Flobu) - resolved.
- 0005301: [Scripting] Not working correctly function xmlCopyFile (Cazomino05) - resolved.
- 0004989: [Weapons] cancelEvent() has no effect on rear knife kills (Cazomino05) - resolved.
- 0003742: [General] setElementRotation doesn't work for peds while in ground (Flobu) - resolved.
- 0005272: [Server] [request] getTimer (Flobu) - resolved.
- 0005292: [Client] setPed/ElementRotation on the local player doesn't work during an animation - resolved.
- 0005291: [General] Events can freeze the client (ccw) - resolved.
- 0005284: [Client] Crash on click on a button... (ccw) - resolved.
- 0005258: [Client] Drawing part of an image using dxDrawImage (ccw) - resolved.
- 0005093: [GUI / Menus / Console] chatbox/debugview scrolling keys should be bindable (Flobu) - resolved.
- 0005164: [Server] TEAMCHAT log line on cancelled onPlayerChat event. (x86) - resolved.
- 0004525: [Scripting] Request: getVehiclePassengers() (Flobu) - resolved.
- 0005275: [Server] [Request] a function to set the ASE player score (ccw) - resolved.
- 0005269: [Client] 1.0.4 Custom - Flobu's Build: Default Handling Is Incorrect. (Flobu) - resolved.
- 0005259: [GUI / Menus / Console] dxGetTextWidth returns text width if it was one line, not the longest line's width (mabako) - resolved.
- 0005264: [Scripting] [Request and Patch] a function to set the sound speed (Flobu) - resolved.
- 0005265: [GUI / Menus / Console] [request and patch] remember dynamic hosts (Flobu) - resolved.
- 0004917: [Server] Memory does not seem to be freed on resource restart (ccw) - resolved.
- 0005262: [Server] [REQUEST] fileExist function (Flobu) - resolved.
- 0005250: [GUI / Menus / Console] Pressing Ok in the settings panel causes the main menu to look darker (ccw) - resolved.
- 0005247: [GUI / Menus / Console] guiGridListSetItemColor doesn't work immediately (ccw) - resolved.
- 0005249: [Scripting] Only 1 timer can elapse per frame (mabako) - resolved.
- 0005232: [Scripting] Objects missing after being created (ccw) - resolved.
- 0005252: [Server] Using cancelEvent(true) in event onResourceStart not removed event handler after implementation. (ccw) - resolved.
- 0005251: [Scripting] setAccountPassword doesn't check for password length (mabako) - resolved.
- 0005223: [Synchronization] CJ Clothes not synced on connect (mabako) - resolved.
- 0005114: [Server] Disappearing blips (ccw) - resolved.
- 0005225: [Scripting] Binding to identical commands in different resources breaks the bind (Flobu) - resolved.
- 0004639: [General] Support for negative gravity. (mabako) - resolved.
- 0005234: [GUI / Menus / Console] [Request] Saving the "Server browser" filters (mabako) - resolved.
- 0005089: [Scripting] guiProgressBarGetProgress doesnt always return the correct value (mabako) - resolved.
- 0005173: [Scripting] isPlayerMapVisible return false when used with forcePlayerMap (mabako) - resolved.
- 0005213: [Scripting] [Request] resetTimer() function (mabako) - resolved.
- 0005118: [GUI / Menus / Console] Keyboard shortcuts only work on very few menu windows (mabako) - resolved.
- 0005206: [Server] ml_base doesn't compile (mabako) - resolved.
- 0003957: [Scripting] XML functions sometimes return bad root node (mabako) - resolved.
- 0005134: [GUI / Menus / Console] Sorting in server browser is not done properly when sorting by 'host' (mabako) - resolved.
- 0004080: [GUI / Menus / Console] More settings in the Video tab (x86) - resolved.
- 0005244: [Vehicles] vehicle change pickup loads default vehicle models instead of custom models randomly (Flobu) - resolved.
- 0005248: [GUI] Make the recently played servers in chronological order (Flobu) - resolved.
- 0005166: [Server] scriptdebuglogfile and acl settings in mtaserver.conf are ignored (ccw) - resolved.
- 0005245: [General] Master server list errors block players from finding servers (ccw) - resolved.
- 0004947: [General] Allow switching to disabled resolutions for all graphics cards (BrophY) - resolved.
- 0001714: [GUI / Menus / Console] Splash logo distorted on 120 DPI (mabako) - resolved.
- 0004480: [Client] Add color argument to guiGridListSetItemText() (mabako) - resolved.
- 0005180: [Server] Would it be more logical to have the server compile to the same place as the client? (ccw) - resolved.
- 0005086: [Client] Functions to get an idea of the chatbox layout. (Flobu) - resolved.
- 0005194: [Client] Disable Auto-Refreshing When Clicked On "Browse Servers" (x86) - resolved.
- 0005220: [Server] isPedDoingGangDriveby returns 1 and 0 in server-side instead of 'true' and 'false' (x86) - resolved.
- 0005178: [Client] Dual Monitors Delivers Dialog For Resolutions (ccw) - resolved.
- 0005209: [Client] GUI buttons stop to work (onClientGUIClick event dont work AT ALL) (ccw) - resolved.
- 0005193: [Vehicles] Fatal Error (6) caused by vehicle ID 611 (ccw) - resolved.
- 0005202: [GUI / Menus / Console] GUI grid list construction in Lua is slow (ccw) - resolved.
- 0004927: [Client] unbindKey with command binds not unbinding correctly (multiple keys, same command with different params) (mabako) - resolved.
- 0005185: [Server] nick command can set invalid (too long) nicks (ccw) - resolved.
- 0005081: [General] 1920x1080 resultion not available (Arc) - resolved.
- 0005145: [Server] createMarker crashes the server if called within a collision event handler (ccw) - resolved.
- 0004937: [Client] Stealth kill victims turn to south (IJs) - resolved.
- 0005031: [Server] 1.0.1 Linux build fails during json-c compilation (IJs) - resolved.
- 0005082: [General] Reenable the vid command (ccw) - closed.
Resources:
- 0004880: [Map Editor] Race gamemode checkpoints not working in Map editor's test mode - resolved.
- 0005315: [Resources] Race: ghostmode if spectate was started during kill (Flobu) - resolved.
- 0005339: [Optional] freeroam: add setJetpackMaxHeight 9001 (Flobu) - resolved.
- 0005153: [Required] Admin: 'Add Object' button in acl editor does not work (Flobu) - resolved.
- 0005321: [Resources] Race: Lag in spectator after respawn allows to hit other players checkpoints (ccw) - resolved.
- 0005286: [Server] User's chat input suddenly stops outputting to server console. (ccw) - resolved.
- 0005322: [Resources] Race: Manual spectator 'forgets' velocity (Flobu) - resolved.
- 0004517: [Required] Admin: server-triggered client event aPermissions missing clientside (ccw) - resolved.
Multi Theft Auto : San Andreas - 1.0.3
======================================
Goal: Gameplay bugfix release
Targets:
* Fixes for issues and crashes that are present in 1.0.2 and are degrading the stability of the software