×

Langue

Fermer
Atelier 801
  • Forums
  • Dev Tracker
  • Connexion
    • English Français
      Português do Brasil Español
      Türkçe Polski
      Magyar Română
      العربية Skandinavisk
      Nederlands Deutsch
      Bahasa Indonesia Русский
      中文 Filipino
      Lietuvių kalba 日本語
      Suomi עברית
      Italiano Česky
      Hrvatski Slovensky
      Български Latviešu
      Estonian
  • Langue
  • Tribus
  • /
  • Onde Fracos Nao Tem Vez'
  • /
  • Scripts [ Module ]
  • /
  • ↦ x1 - 4 Times - Racing / Vanilla / Mapasmix (Script)
↦ x1 - 4 Times - Racing / Vanilla / Mapasmix (Script)
Duduzinha
« Citoyen »
1592164620000
    • Duduzinha#3570
    • Profil
    • Derniers messages
#1
  0

x1 - 4 Times - Racing / Vanilla / Mapasmix


Vá para o seu cafofo e digite /lua. Cole o script no seu /lua e altere as seguintes configurações:
local Admin = "Duduzinha#3570" -- Poe seu nome para ser o ADMINISTRADOR // → Substitua o Duduzinha#3570 pelo seu nick no Transformice com #.



Código LUA
Code Lua

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
local Admin = "Duduzinha#3570" -- Poe seu nome para ser o ADMINISTRADOR
-----------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
local WINS = 20 -- Pontuação para ganhar.
------------------------------------------------------------------------------------
system.disableChatCommandDisplay("np", true)
system.disableChatCommandDisplay("pause", true)
system.disableChatCommandDisplay("saltar", true)
system.disableChatCommandDisplay("puntaje", true)
tfm.exec.disablePhysicalConsumables()
tfm.exec.disableAutoShaman()
tfm.exec.disableAutoNewGame()
tfm.exec.disableAutoTimeLeft()
local teams = {
[1] = {},
[2] = {},
[3] = {},
[4] = {},
}
local points = {
[1] = 0,
[2] = 0,
[3] = 0,
[4] = 0,
}
local equipos = {}
local puntos = {}
local modob = "racing"
local modo = "Vanilla"
local modo2 = "Sozinho"
local modo2b = "normal"
local tiempo = 60
tonumber(tiempo)
local isfirst = true
local gameRunning = false
local winTime = false
local playersInGame = {}
local distanciax = 30
local distanciay = 80
local textarealugar = 300
local textareaid = 0
local mapasmix = {7102662,157805,157004,156720,6640846,151655,150651,149422,124000,203664,375455,394132,170514,173816,171776,199210,562897,172951,171148,166430,169076,330933,179488,172621,168754,159145,163596,152733,410040,158909,261814,195453,281985,191205,159932,2176211,586901,285589,257324,236768,303151,270924,1324259,1225867,563436,424604,523270,172547,2693587,168204,2693344,193662,1788490,305680,149451,176253,342035,2466489,292808,176615,438333,394125,162482,304861,458528,159298,184648,268915,329318,373105,261298,302080,449496,159187,176710,161023,366260,1852910,201172,549759,257715,397478,261298,177652,408643,447805,155606,176619,460961,455271,172512,320607,166271,299942,186066,152260,155628,166805,178297,313138,167903,223947,191177,113156,150664,157203,163159,197229,204647,163531,232675,216173,166361,169059,271411,277824,306365,172520,247329,250610,2118599,445133,149853,212903,220737,397296,2617003,629731,329627,221767,422655,417816,164931,245152,371072,2458243,214788,274963,2439335,269534,8679,321268,398041,5591416,5650343,5650250,161730,4273207,4091580,5650303,5172709,5650469,214660,3579335,4003729,508451,314205,156510,5545443,606723,3946626,332467,1665516,1614563,3679884,414899,1531388,905496,3834905,3821104,1851411,3816991,2331474,313245,266854,193588,2141379,3738767,232791,285752,278506,406266,1976857,301315,180469,3693822,280896,403698,259604,418022,323366,594883,477603,437860,590641,3688419,3682405,645288,419374,664949,704015,398942,195720,314159,613985,3683383,3683201,3680223,3680221,363625,1693705,319524,3667358,1718723,1490438,3630433,3620542,3617674,3556489,3548406,3548376,3408247,2953315,2883986,2683170,2645615,2536577,2453022,2372538,2287914,2286056,2223685,2150335,2150335,2101747,2018511,2007205,1975684,1964752,1964700,1956555,1923785,1862800,1716949,1674534,1658171,1659639,1657360,1657021,1654105,1651658,1643157,1634741,1632706,1622737,1619934,1618110,1613550,1612796,1612436,1608638,6212895,1602654,1601492,1586439,1588884,1573997,1567620,1542618,1539791,1513407,1509474,1503393,1487161,1450554,1425101,1394120,1393405,1373000,1371239,1368222,1359797,1358446,1352534,1346440,1321664,1321417,1281981,1255130,1222899,1214182,1195842,1143815,1132357,1058681,979179,829657,813156,798953,749102,737841,627609,624721,608459,616373,594049,606719,586688,580031,564033,558790,551126,545493,536235,528428,511275,508106,501711,496945,496091,483924,472665,472379,447556,445133,444490,441047,438154,436447,436107,431373,430145,429822,428517,427300,425806,424795,422361,421302,420956,420806,418658,418600,416142,412316,410813,412211,410565,410532,410230,407457,407455,407230,407165,406982,406881,406486,405295,403910,401995,401945,401778,397938,397812,397296,396861,396645,391625,387270,387180,386046,385295,386029,379745,378826,379866,364998,359055,352885,352710,350251,344952,340069,339896,339643,337774,323600,319841,317754,309029,308711,308435,306213,292348,278916,277784,275514,270819,1017676,160762,2089069,234039,267187,263163,262144,330590,403698,396105,6538564,396105,419735,6547536,355658,6607378,191716,292348,6456247,5326916,6077025,356722,2564883,1450554,494706,254291,1503393,6467947,6263285,2953315,6114281,412752,4038817,5461992,319841,359901,191716,452016,1450554,397296,250610,499684,5848412,238791,2283,232274,1716693,330590,459349,6583596,455167,6460747,251459,244888,5755208,240973,235501,235034,234039,233398,232274,230510,216735,216439,216505,214037,212542,211565,198715,193936,191716,186604,180274,176263,178657,146801,145020,3154,2283,5382692,5249500,4412890,5163891,789128,2245005,2030343,5712914,372401,5087373,4953687,2369254,4853690,226069,422509,5436200,732880,4038817,400866,3730656,3985806,355658,5175727,5699298,5588646,3921436,3639993,3984750,508796,1985019,4734427,1703617,289068,197219,333666,6077025,5710586,322321,331572,4741601,158128,6310411,6312498,6310396,6312188,6473912,6389619,6854536,6854539,6312173,6315208,6312203,6310370,6310383,6853060,6310440,6547670,7062105,6545742,6985344,960547}
local mapasVanilla= { 2, 11, 12, 14, 19, 24, 26, 28, 29, 40, 42, 41, 44, 45, 55, 57, 58, 62, 63, 64, 67, 69, 70, 71, 73, 74, 75, 78, 79, 80, 85, 86, 96, 100, 112, 113, 117, 119, 121, 123, 127, 138, 142, 145, 148, 149, 1507699979, 7700322, 7714833}
local mapasracing = {7102662,7046282,7047612,7102662,7053504,2283,2806,3154,72339,166705,237281,349389,103182,107544,112790,114122,7149567,120152,122911,124359,130763,136966,138036,138678,7132532,144468,144677,7102662,277731,147436,148424,150692,152299,155168,156685,156847,6583596,7149567,160762,161730,163682,164802,165112,165747,165843,5848412,167941,168776,380417,169892,171152,175205,176263,177236,177813,178545,178657,180191,7149567,180274,180469,180509,180619,181312,184110,563303,185760,185774,186604,190026,191201,7149567,191753,7132532,7149567,193009,193588,7149567,195720,196433,196468,197219,197501,198549,198715,199219,201323,3679666,206810,208058,208162,208914,209315,209708,209799,210188,211528,211565,211885,212542,213331,213697,213933,214037,214660,214775,215938,216439,216505,216553,216735,217282,217881,217900,219548,220500,222098,223293,223810,223986,224441,225017,226069,7132532,226883,227417,227851,228462,229814,229827,229830,229834,229835,229944,230510,230741,231254,231694,231905,232140,232274,232451,232699,232791,233230,233345,233398,233687,234039,234502,234959,235034,235501,235651,236146,237000,237041,237263,237269,237278,237321,237744,238380,238791,239626,239880,240544,240548,7149567,241211,241295,242708,243279,244006,244699,244888,245223,246790,246973,247815,247818,248098,250610,251459,252759,252806,7149567,254291,255098,255542,255893,258717,259604,259716,259833,260024,260292,260338,260377,260384,260678,261078,261172,261720,261959,262144,262212,262239,263163,263182,263624,263907,264132,264232,264348,235221,266704,266765,7149555,266854,266913,266930,267187,267597,269337,270668,270819,271523,273434,274321,275017,275514,277687,277784,278506,278916,279100,279256,280382,280896,281730,282101,282434,282694,283526,283715,283874,284299,285752,286333,287268,289821,7149555,292348,292614,293065,294522,294943,299002,299503,29971,300055,301315,302936,304356,305677,306213,308280,308435,308694,308711,308992,309029,309057,309169,7149567,312713,313245,314159,314205,315801,316289,317696,317754,317779,318378,318813,319524,319841,321339,321712,321814,321906,322771,323115,323366,323600,7149567,326585,327254,327266,330441,332210,332290,332467,333277,7149567,333837,335507,337581,337774,339272,339418,339643,339896,340069,340901,341116,341239,344361,344865,344952,345257,245312,345943,348479,348801,349140,4581354,349984,350251,350519,352381,352710,352885,354616,354878,355658,355676,355769,355957,356722,356982,357328,357428,359055,359521,359901,360201,7149567,360273,360365,361382,362549,363411,363625,363638,363822,364186,364998,1512355,365464,365652,365774,365464,365652,365774,367520,369160,369230,370444,370850,371076,371078,372970,373511,375381,378826,379326,379550,379745,379866,381043,381287,381305,381569,381669,382977,384206,384869,385203,385295,386029,7149555,386959,387012,387180,387270,387290,387638,388447,389582,391625,391693,391831,391868,391990,392446,392492,392913,393675,393851,394890,395459,395585,395607,396223,396332,396347,396645,396861,397296,397501,397812,397938,398011,398041,398081,398942,399633,399673,400429,400666,400866,5886096,401778,401945,401995,402214,402239,402453,402936,403698,403910,404440,404590,405075,405295,405339,405497,7149567,405833,405955,406266,406486,406881,406982,407165,407230,407294,407455,407457,407488,407495,6127809,407686,407746,408978,409199,410230,410532,410565,410608,410736,410813,412211,412316,412657,412752,413408,414188,414460,414899,416015,416142,416552,418022,418196,418265,418293,418323,418337,418600,418606,418658,419374,419735,420806,420956,421302,421717,422361,422509,422580,422939,423062,423449,423517,423672,424361,424786,424795,425030,425044,425215,425349,425548,425600,425771,425797,425806,426638,7149555,428517,429262,429822,429897,430145,430219,430736,431142,431373,431887,433937,434887,436041,436107,436447,437860,438154,440676,441047,441376,441598,443309,444490,444830,7149567,445133,445219,447556,448281,452016,455167,459349,463195,463977,465205,468260,470687,470727,471053,472379,472665,475151,475790,477370,477603,480023,483924,484992,494706,496091,496945,499109,499682,499684,499687,500074,501428,501711,501916,504409,504461,504704,504951,505109,505963,506215,507308,507325,508106,508451,508796,509082,510194,511187,511275,512927,512291,514412,514510,514982,517005,517697,523046,528428,531569,536235,537776,538116,545493,549470,551126,556253,556426,558790,563183,563484,564033,566347,566438,571144,580031,583056,586622,586688,587458,590641,594049,594883,595447,603381,606719,606723,608459,610137,611320,613985,616373,616433,620996,624098,624721,627609,634945,645288,646800,658464,664949,667920,669031,670226,694900,704015,732880,734476,1445160,737841,749102,759128,763371,763378,789058,792062,798953,813156,824082,829657,838069,846805,849224,879616,905496,972616,976721,976786,979179,982242,1015436,1015582,1019378,1033170,1034035,1051378,1051384,1058681,1085530,1102815,1130728,1132639,1142116,1143815,1144548,1162611,1167734,1172426,1174107,1195842,1208798,1208979,1210037,1214182,1216253,1221661,1222899,1229246,1231216,1234914,1249601,1252122,1253523,1255130,1255148,1256845,1281700,1281981,1286910,1307880,1311059,1321417,1321664,1341396,1346440,1351308,1352534,1358446,1359797,1364063,1368222,1368233,1371239,1371294,1372941,1373000,1373748,1375345,1378209,1393405,1394120,1398732,1405249,1405496,1416040,1425101,1428436,1448760,1450554,1453667,1471124,1483155,1487161,1490438,1491022,1492120,1495344,1503393,1504586,1506007,1509474,1513407,1525272,1531388,1538895,1539515,1539791,1542618,1542736,1555532,1555862,1556661,1564762,1567620,1573213,1571997,1580508,1583655,1586439,1587904,1588884,1589026,1591471,1592767,1595600,1597594,1600443,1601492,1601786,1601857,1602654,1603050,1605364,1608259,1608638,1609978,1611631,1612436,1612796,1613550,1613927,1614563,1618110,1619934,1621611,1622737,1623300,1628732,1629164,1632294,1632541,1632706,1632746,1634741,1637638,1639996,1643157,1644638,1646120,1648583,1651658,1654096,1654105,1654841,1654903,1657021,1657360,1658171,1659639,1659716,1661852,1663380,1663415,1665249,1665516,1665775,1669046,1673174,1674534,1675083,1687268,1689382,1692628,1693705,1694602,1702169,1703617,1705316,1716693,1716949,1718723,1724289,1728943,1749434,1751944,1759287,1768347,1778687,1787232,1787239,1794287,1802907,1841744,1845710,1848032,1851411,1851568,1851968,1856349,1857829,1862800,1862823,1873736,1923785,1924227,1926831,1927270,1932796,1951856,1952851,1954369,1954898,1956002,1956555,1964700,1964752,1965819,1973574,1975275,1975286,1975684,1975753,1976007,1976857,1979131,1982476,1985019,1987990,2005559,2007170,2007205,2012147,2018511,2023552,2030343,3691622,2047177,2048474,2068543,2070768,2076632,2079190,2089069,2098621,2101747,2106576,2118599,2134537,2138401,2141379,2144010,2149382,2150335,2174319,2176620,2180790,2185089,2214661,2219308,2223685,2228834,2245005,2286056,2287914,2331474,2347666,2372538,2378820,2393139,2417713,2453022,2509175,2536577,2538131,2557885,2564883,2577060,2582610,2586491,2588032,2592421,5712914,2645615,2682985,2683170,2725924,2726034,5834732,2796001,2813487,2816067,2840770,2854246,2868414,2883986,2894072,3816991,2953315,2989266,2991507,3005251,3008155,3029580,3036416,3120368,3123384,3142015,3156569,3175920,3209087,3213562,6041399,3267620,3347209,3408247,3444803,3447108,3453351,3469987,3504036,3517347,3518418,3535192,3537419,3544895,3548376,3548378,3548406,3549484,3549840,3556405,3556489,3556690,3572407,3574927,3575034,3575108,3575170,3575216,3575293,3575425,3575463,3579335,3579476,3582577,3584275,3584689,3592471,3595900,3603799,3603802,3603809,3604799,3607846,3611702,3611885,3613029,3617674,3620542,3630433,3631748,3637041,3638794,3639993,3644272,3652003,3652102,3654416,3662698,3667358,3668754,3670084,3676141,3676555,3679397,3778128,3679884,3680180,3680220,3680221,3680223,3682405,3683201,3683224,3683294,3683383,3683393,3683520,3683600,3684229,3684455,3684457,3684465,3684784,6300149,3685352,3685382,3685486,3688419,3690578,3691609,3693822,3696662,3700684,3702767,3705931,3706599,3712183,3716560,3721990,3727755,3728013,3737576,3738767,3778389,3799507,3799857,3799951,3801780,3816622,3818249,3821104,3834905,3845214,3847244,3854268,3857914,3889414,3901403,3909339,3912540,3946626,3948683,3953320,3953425,3967150,3967250,3970909,3984750,3985806,3999981,3992276,3992671,3994471,4003729,5628991,4035194,4049042,6063528,4088129,4091580,6069537,4148332,4174318,4174320,1250021,5249500,6070140,4234556,4238784,5495901,4323335,4344186,5579236,5557858,4489653,4508416,4551993,4612295,3211576,4666540,4681759,5246345,4685111,2571671,4707191,5867478,6091192,4734427,5813480,4747722,4758350,5717620,4815404,6076351,4836483,4902526,5024682,6066715,5030579,5032745,5028454,5044309,5045485,5053907,6629634,6114281,5029395,5000090,2423312,289068,5242039,4953687,4946442,4118659,4914476,4911122,4853690,5972342,4778991,4645670,4477124,4468155,4412890,4273207,4220406,3631534,2951766,2700958,2546484,2369254,2263004,2113318,1999967,1132357,996947,789128,529844,5096937,345290,6152426,237297,5886041,116630,5087373,330590,5552418,2166693,5172709,571512,445167,156510,1330800,5272513,3921436,6456247,3746280,5813783,3669435,5922046,3699155,4488954,5710582,5833401,5309288,5810931,5339441,372401,4469588,5346212,4834093,4813927,2522826,5382687,5382692,1913728,3272722,5379646,5846953,4870958,5861874,5067265,5349806,5699298,4469627,1431107,4895634,3574879,4915220,5436200,4038817,5710586,5303681,5408572,5590554,3468601,1449069,5797575,5747655,5405469,3730656,5472330,2776889,3636268,4993931,5434934,5045922,5452432,5422102,5488573,5776685,5766011,5517312,5590592,646968,2464807,3397865,1242669,3530855,325172,2221510,5635990,1310092,5054601,5545443,5654008,5580742,5580210,5515862,5592108,5591416,5591545,5624841,5630711,6124317,6120147,6114810,6112855,6112594,6103361,6087539,6087537,6084110,6538564,6070592,6043771,6249811,5948714,6063434,327130,441339,4000001,6069526,6160319,6180353,6172897,3065912,744038,4945098,1017676,2252884,343971,6050338,4102732,329246,2580114,5258125,265354,326904,6226519,6100000,201442,6300594,6276662,6263285,5805021,6321670,6607378,6087548,6438169,1395321,5525195,5643435,5593912,6077025,6460747,396105,1000023,1003924,2412062,2918866,3734489,3822290,3873444,3972690,4120986,4221819,4379212,4394100,4559040,4741601,4775829,5106003,5126174,5128083,5219686,5326916,5461992,5519925,5755208,6149243,6172480,6212895,6271125,6287479,6292735,6292737,6305122,6326640,6371592,6467947,6520153,6572872,6530523,6532371,6542858,6547536,6561094,6563851,6571336,6580361,6147642,1220496,532300,6730473,313091,640766,3399991,6356583,6727662,6771291,6827953,7026694,6665146,6777679,6835898,195765,6814065,6906753,179339,6916252,6918114,128522,6606660,6612138,6972430,6975166,630046,1867520,5541145,6186416,6800926,158128,6310411,6312498,6310396,6312188,6473912,6389619,6854536,6854539,6312173,6315208,6312203,6310370,6310383,6853060,6310440,6547670,7062105,6545742,6985344,960547}
local maps = mapasracing
local equipoc= {}
local colors = {
[1] = "FFFFFF",
[2] = "0000FF",
[3] = "FEFF00",
[4] = "FF0000",
}
local queue = {}
local nteam = 1
local Sair = {}
local posicion = {}
local numeroposicion = 1
function newMap()
local mapcode = maps[math.random(#maps)]
if #queue > 0 then
mapcode = queue[1]
table.remove(queue, 1)
end
tfm.exec.newGame(mapcode)
for player, data in pairs(tfm.get.room.playerList) do
if not playersInGame[player] then
tfm.exec.killPlayer(player)
end
end
tfm.exec.setGameTime(tiempo)
borrarScoreSozinho()
end
function eventPlayerWon(player)
if not isfirst then
isfirst = true
tfm.exec.setGameTime(3)
if modo2b == "Sozinho" then
if puntos[player] >= WINS - 1 then
gameRunning = false
winTime = os.time()
ui.addTextArea(29, string.format("<p align='center'><font size='37' color='#000000'>%s ganó\nLos otros son perdedores xdxdxd", player), nil, 3, 168, 800, 500, 0, 0, 0, true)
ui.addTextArea(30, string.format("<p align='center'><font size='37'><font color='#cecece'><font color='#ff0000'>%s </font>ganó\nLos otros son perdedores xdxdxd", player), nil, 1, 170, 800, 500, 0, 0, 0, true)
end
tfm.exec.setGameTime(3)
for i = 0, 3 do
defaultEffect(9, {13}, math.random(800), math.random(400), 20)
end
puntos[player] = puntos[player]+1
equipoc[player] = "0x115b17"
displayScoreSozinho()
end
if modo2b == "normal" then
if table.contains(teams[1], player) then
tfm.exec.setGameTime(3)
for i = 0, 3 do
defaultEffect(9, {13}, math.random(800), math.random(400), 20)
end
points[1] = points[1]+1
elseif table.contains(teams[2], player) then
tfm.exec.setGameTime(3)
for i = 0, 3 do
defaultEffect(9, {9}, math.random(800), math.random(400), 20)
end
points[2] = points[2]+1
elseif table.contains(teams[3], player) then
tfm.exec.setGameTime(3)
for i = 0, 3 do
defaultEffect(9, {9}, math.random(800), math.random(400), 20)
end
points[3] = points[3]+1
elseif table.contains(teams[4], player) then
tfm.exec.setGameTime(3)
for i = 0, 3 do
defaultEffect(9, {9}, math.random(800), math.random(400), 20)
end
points[4] = points[4]+1
else
isfirst = false
end
winner = false
if points[1] >= WINS then
winner = 1
elseif points[2] >= WINS then
winner = 2
elseif points[3] >= WINS then
winner = 3
elseif points[4] >= WINS then
winner = 4
end
if winner then
gameRunning = false
winTime = os.time()
local names = {
"Time Branco",
"Time Azul",
"Time Amarelo",
"Time Vermelho",
}
ui.addTextArea(26, string.format("<p align='center'><font size='37' color='#000000'GJ para o Time Branco ganharam o x1", names[winner]), nil, 0, 171, 800, 500, 0, 0, 0, true)
ui.addTextArea(27, string.format("<p align='center'><font size='37' color='#000000'>GJ para o %s ganharam o x1", names[winner]), nil, 1, 170, 800, 500, 0, 0, 0, true)
ui.addTextArea(28, string.format("<p align='center'><font size='37' color='#000000'>GJ para o %s ganharam o x1", names[winner]), nil, 2, 169, 800, 500, 0, 0, 0, true)
ui.addTextArea(29, string.format("<p align='center'><font size='37' color='#000000'>GJ para o %s ganharam o x1", names[winner]), nil, 3, 168, 800, 500, 0, 0, 0, true)
ui.addTextArea(30, string.format("<p align='center'><font size='37'><font color='#cecece'>GJ para o <font color='#%s'>%s</font> ganharam o x1", colors[winner], names[winner]), nil, 1, 170, 800, 500, 0, 0, 0, true)
end
displayScore()
end
end
end
function eventLoop(elapsed, remain)
if gameRunning then
remain = remain/1000
if remain < 0 then
remain = 100
newMap()
end
else
if winTime then
if winTime > os.time()-30000 then
for i = 0, 2 do
defaultEffect(9, {11, 9, 0, 13}, math.random(800), math.random(400), 80)
end
else
winTime = false
ui.removeTextArea(26)
ui.removeTextArea(27)
ui.removeTextArea(28)
ui.removeTextArea(29)
ui.removeTextArea(30)
displayTeams()
teams = {
[1] = {},
[2] = {},
[3] = {},
[4] = {},
}
points = {
[1] = 0,
[2] = 0,
[3] = 0,
[4] = 0,
}
playersInGame = {}
end
end
end
end
function string.title(s)
return string.gsub(s, "%a", function(c)
return string.upper(c)
end, 1)
end
function resetarmostrarjugadoresSozinho()
distanciax = 30
distanciay = 80
textarealugar = 302
textareaid = 0
end
function eventChatCommand(player, command)
if modo2b == "Sozinho" then
args = string.split(command, " ")
if args[1] == "puntaje" then
resetarmostrarjugadoresSozinho()
ui.addTextArea(300, "<p align='center'><V><a href='event:cerrarpuntaje'>X", player, 30, 50, 30, 16, FF0000, FF0000, 1, true)
ui.addTextArea(301, string.format("<p align='center'><V>Sozinho a %s puntos",WINS), player, 80, 45, 180, 18, FF0000, FF0000, 1, true)
for k,players in pairs(tfm.get.room.playerList) do
if puntos[k] then
equipos[k] = k
playersInGame[k] = true
if textareaid >= 32 then
else
ui.addTextArea(textarealugar, string.format("<p align='center'><V>%s - %s",k,puntos[k]), player, distanciax, distanciay, 140, 18, FF0000, FF0000, 1, true)
distanciay = distanciay + 37
textareaid = textareaid + 1
textarealugar = textarealugar + 1
if textareaid == 8 then
distanciax = distanciax + 190
distanciay = 80
textareaid = 0
end
end
end
end
end
end
if player:lower() == Admin:lower() then
args = string.split(command, " ")
if args[1] == "team1" then
if modo2b == "normal" then
table.remove(args, 1)
teams[1] = {}
points[1] = 0
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[1], player)
playersInGame[player] = true
end
displayTeams()
end
elseif args[1] == "team2" and modo2b == "normal" then
table.remove(args, 1)
teams[2] = {}
points[2] = 0
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[2], player)
playersInGame[player] = true
end
displayTeams()
elseif args[1] == "team3" and modo2b == "normal" then
table.remove(args, 1)
teams[3] = {}
points[3] = 0
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[3], player)
playersInGame[player] = true
end
displayTeams()
elseif args[1] == "team4" and modo2b == "normal" then
table.remove(args, 1)
teams[4] = {}
points[4] = 0
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[4], player)
playersInGame[player] = true
end
displayTeams()
elseif args[1] == "prox" then
newMap()
elseif args[1] == "np" then
if args[2] then
table.insert(queue, args[2])
end
elseif args[1] == "d" then
if args[2] then
WINS = tonumber(args[2])
displayScore()
end
elseif args[1] == "adicionar" and modo2b == "Sozinho" then
if args[2] then
table.remove(args, 1)
for index, player in pairs(args) do
equipos[player] = player
puntos[player] = 0
playersInGame[player] = true
end
end
elseif args[1] == "adicionar" and modo2b == "normal" then
if args[2] and args[3] then
if args[2] == "team1" and modo2b == "normal" then
table.remove(args, 1)
table.remove(args, 1)
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[1], player)
playersInGame[player] = true
end
end
if args[2] == "team2" and modo2b == "normal" then
table.remove(args, 1)
table.remove(args, 1)
for index, player in pairs(args, 3) do
player = string.title(player)
table.insert(teams[2], player)
playersInGame[player] = true
end
end
if args[2] == "team3" and modo2b == "normal" then
table.remove(args, 1)
table.remove(args, 1)
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[3], player)
playersInGame[player] = true
end
end
if args[2] == "team4" and modo2b == "normal" then
table.remove(args, 1)
table.remove(args, 1)
for index, player in pairs(args) do
player = string.title(player)
table.insert(teams[4], player)
playersInGame[player] = true
end
end
end
elseif args[1] == "expulsar" then
if args[2] then
for index, player in pairs(args) do
player = string.title(player)
playersInGame[player] = false
end
end
elseif args[1] == "resetar" then
teams[1] = {}
points[1] = 0
teams[2] = {}
points[2] = 0
teams[3] = {}
points[3] = 0
teams[4] = {}
points[4] = 0
displayTeams()
elseif args[1] == "pontos" and modo2b == "normal" then
if args[2] and args[3] then
local team = tonumber(args[2]:match("team(%d+)") or 0)
if team > 0 and team < 5 then
local newScore = tonumber(args[3]) or points[team]
points[team] = newScore
displayScore()
end
end
elseif args[1] == "pausa" then
gameRunning = not gameRunning
if not gameRunning then
ui.addTextArea(90, "", nil, 235, 200, 302, 22, FF0000, FF0000, 1, true)
ui.addTextArea(91, "<p align='center'><V> Juego pausado ", nil, 235, 200, 300, 20, 0x324650, 0x324650, 1, true)
tfm.exec.disableAutoTimeLeft(true)
else
ui.removeTextArea(90)
ui.removeTextArea(91)
tfm.exec.disableAutoTimeLeft(false)
end
end
end
end
function eventNewGame()
if modo2b == "normal" then
if gameRunning then
isfirst = false
for i, p in pairs(teams[1]) do
tfm.exec.setNameColor(p, "0x"..colors[1])
end
for i, p in pairs(teams[2]) do
tfm.exec.setNameColor(p, "0x"..colors[2])
end
for i, p in pairs(teams[3]) do
tfm.exec.setNameColor(p, "0x"..colors[3])
end
for i, p in pairs(teams[4]) do
tfm.exec.setNameColor(p, "0x"..colors[4])
end
displayScore()
end
end
if modo2b == "Sozinho" then
if gameRunning then
isfirst = false
for k,players in pairs(tfm.get.room.playerList) do
tfm.exec.setNameColor(k, "FF0000")
equipoc[k] = "FF0000"
end
displayScore()
end
end
end
function displayScore()
if modo2b == "normal" then
ui.addTextArea(25, string.format("<p align='center'><font size='20'><font color='#%s'>%s<N> x <font color='#%s'>%s <N> x <font color='#%s'>%s <N> x <font color='#%s'>%s <N> / <font color='FF0000'>%s", colors[1], points[1], colors[2], points[2], colors[3], points[3], colors[4], points[4], WINS), nil, 0, 22, 800, 30, 0, 0, 0, true)
end
end
function displayScoreSozinho()
resetarmostrarjugadoresSozinho()
ui.addTextArea(300, string.format("<p align='center'><V>Sozinho a %s puntos",WINS), nil, 80, 45, 180, 18, FF0000, FF0000, 1, true)
for k,players in pairs(tfm.get.room.playerList) do
if puntos[k] then
equipos[k] = k
playersInGame[k] = true
if textareaid >= 32 then
else
ui.addTextArea(textarealugar, string.format("<p align='center'><V>%s - %s",k,puntos[k]), nil, distanciax, distanciay, 140, 18, equipoc[k], FF0000, 1, true)
distanciay = distanciay + 37
textareaid = textareaid + 1
textarealugar = textarealugar + 1
if textareaid == 8 then
distanciax = distanciax + 190
distanciay = 80
textareaid = 0
end
end
end
end
end
function borrarScoreSozinho()
for i = 300, 340 do
ui.removeTextArea(i)
end
end
function displayTeams()
ui.addTextArea(38, "", nil, 235, 30, 302, 22, FF0000, FF0000, 1, true)
ui.addTextArea(37, "<p align='center'><V>Admin: "..Admin, nil, 235, 30, 300, 20, FF0000, FF0000, 1, true)
--ui.addTextArea(1, "", nil, 400, 69, 400, 260, FF0000, FF0000, 1, true)
ui.addTextArea(2, "", nil, 0, 71, 800, 290, FF0000, FF0000, 1, true)
--ui.addTextArea(3, "", nil, 331, 70, 400, 260, FF0000, FF0000, 1, true)
ui.addTextArea(4, "", nil, 57, 79, 142, 22, FF0000, FF0000, 1, true)
ui.addTextArea(5, "<p align='center'><V>Time 1", nil, 58, 80, 140, 20, FF0000, FF0000, 1, true)
ui.addTextArea(6, "", nil, 227, 79, 142, 22, FF0000, FF0000, 1, true)
ui.addTextArea(7, "<p align='center'><V>Time 2", nil, 228, 80, 140, 20, FF0000, FF0000, 1, true)
ui.addTextArea(8, "", nil, 417, 79, 142, 22, FF0000, FF0000, 1, true)
ui.addTextArea(9, "<p align='center'><V>Time 3", nil, 418, 80, 140, 20, FF0000, FF0000, 1, true)
ui.addTextArea(10, "", nil, 587, 79, 142, 22, FF0000, FF0000, 1, true)
ui.addTextArea(11, "<p align='center'><V>Time 4", nil, 588, 80, 140, 20, FF0000, FF0000, 1, true)
ui.addTextArea(12, "<p align='center'><font color='#FF0000'>|</font>", nil, 210, 102, 140, 200, 0, 0, 0, true)
ui.addTextArea(39, "<p align='center'><font color='#FF0000'>|</font>", nil, 450, 102, 140, 200, 0, 0, 0, true)
ui.addTextArea(40, "", nil, 59, 120, 140, 200, FF0000, FF0000, 1, true)
ui.addTextArea(31, "<p align='center'><font color='#"..colors[1].."'>"..table.concat(teams[1], "\n"), nil, 60, 121, 138, 198, FF0000, FF0000, 1, true)
ui.addTextArea(32, "", nil, 419, 120, 140, 200, FF0000, FF0000, 1, true)
ui.addTextArea(33, "<p align='center'><font color='#"..colors[3].."'>"..table.concat(teams[3], "\n"), nil, 420, 121, 138, 198, FF0000, FF0000, 1, true)
ui.addTextArea(34, "", nil, 589, 120, 140, 200, FF0000, FF0000, 1, true)
ui.addTextArea(35, "<p align='center'><font color='#"..colors[4].."'>"..table.concat(teams[4], "\n"), nil, 590, 121, 138, 198, FF0000, FF0000, 1, true)
ui.addTextArea(36, "", nil, 229, 120, 140, 200, FF0000, FF0000, 1, true)
ui.addTextArea(13, "<p align='center'><font color='#"..colors[2].."'>"..table.concat(teams[2], "\n"), nil, 230, 121, 138, 198, FF0000, FF0000, 1, true)
ui.addTextArea(14, "<p align='center'><font color='#FF0000'>____ ____</font>", nil, 325, 197, 140, 200, 0, 0, 0, true)
ui.addTextArea(15, "", nil, 374, 202, 40, 20, FF0000, FF0000, 1, true)
ui.addTextArea(16, "<p align='center'><V>VS", nil, 375, 203, 38, 18, FF0000, FF0000, 1, true)
ui.addTextArea(42, "", Admin, 749, 81, 40, 20, FF0000, FF0000, 1, true)
ui.addTextArea(41, "<p align='center'><V><a href='event:salir'>X", Admin, 750, 82, 38, 18, FF0000, FF0000, 1, true)
ui.addTextArea(45, "", Admin, 744, 139, 52, 20, FF0000, FF0000, 1, true)
ui.addTextArea(46, "<p align='center'><V><a href='event:resetar'>resetar", Admin, 745, 140, 50, 18, FF0000, FF0000, 1, true)
ui.addTextArea(47, "", Admin, 741, 173, 57, 20, FF0000, FF0000, 1, true)
ui.addTextArea(54, "", Admin, 741, 209, 57, 20, FF0000, FF0000, 1, true)
if modo2 == "Sozinho" then
ui.addTextArea(51, "<p align='center'><V><a href='event:Sozinho'><font size='12'>"..modo2, Admin, 742, 210, 55, 18, FF0000, FF0000, 1, true)
end
verificarmodo()
ui.addTextArea(53, "", Admin, 741, 245, 57, 20, FF0000, FF0000, 1, true)
ui.addTextArea(52, "<p align='center'><V><a href='event:Sair'><font size='12'>Sair", Admin, 742, 246, 55, 18, FF0000, FF0000, 1, true)
ui.addTextArea(55, "", Admin, 741, 279, 57, 20, FF0000, FF0000, 1, true)
ui.addTextArea(56, "<p align='center'><V><a href='event:Times'><font size='12'>Times", Admin, 742, 280, 55, 18, FF0000, FF0000, 1, true)
ui.addTextArea(16, "<p align='center'><V><a href='event:iniciarJogo'><font size='12'>GO", Admin, 375, 203, 38, 18, FF0000, FF0000, 1, true)
end
function verificarmodo()
ui.addTextArea(50, string.format("<p align='center'><V>Modo %s - %s ",modob,modo2b),nil, 235, 375, 300, 17, FF0000, FF0000, 1, true)
if modo2 == "normal" then
ui.addTextArea(51, "<p align='center'><V><a href='event:normal'><font size='8'>"..modo2, Admin, 742, 210, 55, 18, FF0000, FF0000, 1, true)
end
if modo == "Vanilla" then
ui.addTextArea(48, "<p align='center'><V><a href='event:Vanilla'><font size='9'>"..modo, Admin, 742, 174, 55, 18, FF0000, FF0000, 1, true)
end
if modo == "racing" then
ui.addTextArea(48, "<p align='center'><V><a href='event:racing'><font size='9'>"..modo, Admin, 742, 174, 55, 18, FF0000, FF0000, 1, true)
end
if modo == "mix" then
ui.addTextArea(48, "<p align='center'><V><a href='event:mix'><font size='9'>"..modo, Admin, 742, 174, 55, 18, FF0000, FF0000, 1, true)
end
end
function contarjugadores()
local players=0
function eventNewPlayer(name)--Cuando un jugador entre a la sala...
players=players+1--Sumamos 1 a nuestra tabla
end
function eventPlayerLeft(name)--Cuando un jugador salga de la sala...
players=players-1--Restamos 1 a nuestra tabla
end
for name in pairs(tfm.get.room.playerList) do--Por cada jugador que esté en la sala...
eventNewPlayer(name)--Le ejecutamos la función eventNewPlayer
end
end
function eventTextAreaCallback(id, player, callback)
if callback == 'iniciarJogo' then
gameRunning = true
for i = 1, 20 do
ui.removeTextArea(i)
end
for i = 31, 56 do
ui.removeTextArea(i)
end
borrarScoreSozinho()
defaultEffect(9, {9}, 400, 212, 80)
newMap()
end
if callback == 'salir' then
tfm.system.exit()
end

if callback == 'Times' then
nteam = 1
Sair = {}
playersInGame = {}

teams = {
[1] = {},
[2] = {},
[3] = {},
[4] = {},
}
contarjugadores()
for k,players in pairs(tfm.get.room.playerList) do
if nteam > 4 then
nteam = 1
end
table.insert(teams[nteam], k)
playersInGame[k] = true
nteam = nteam + 1
displayTeams()
end
end

if callback == 'Sair' then
nteam = 1
Sair = {}
playersInGame = {}

teams = {
[1] = {},
[2] = {},
[3] = {},
[4] = {},
}
contarjugadores()

for k,players in pairs(tfm.get.room.playerList) do
Sair[k] = k
playersInGame[k] = true
end

for k,players in pairs(tfm.get.room.playerList) do
if nteam > 4 then
nteam = 1
end
if Sair[k] == k then
jugador = Sair[math.random(#Sair)]
table.insert(teams[players], jugador)
Sair[k] = ""
nteam = nteam + 1
displayTeams()
end
end

end

if callback == 'resetar' then
teams[1] = {}
points[1] = 0
teams[2] = {}
points[2] = 0
teams[3] = {}
points[3] = 0
teams[4] = {}
points[4] = 0
displayTeams()
end
if callback == 'Vanilla' then
tiempo = 150
modob = "Vanilla"
modo = "mix"
verificarmodo()
maps = mapasVanilla
end
if callback == 'racing' then

tiempo = 60
modob = "racing"
modo = "Vanilla"
verificarmodo()
maps = mapasracing
end
if callback == 'mix' then
tiempo = 90
modob = "mix"
modo = "racing"
verificarmodo()
maps = mapasmix
end
if callback == 'Sozinho' then
modo2b = "Sozinho"
modo2 = "normal"
displayTeams()
for i = 4, 15 do
ui.removeTextArea(i)
end
for i = 31, 36 do
ui.removeTextArea(i)
end
for i = 39, 40 do
ui.removeTextArea(i)
end
contarjugadores()
for k,players in pairs(tfm.get.room.playerList) do
equipos[k] = k
puntos[k] = 0
equipoc[k] = "0x324650"
playersInGame[k] = true
if textareaid >= 32 then
else
ui.addTextArea(textarealugar, "<p align='center'><V>"..k, nil, distanciax, distanciay, 140, 18, FF0000, FF0000, 1, true)
distanciay = distanciay + 37
textareaid = textareaid + 1
textarealugar = textarealugar + 1
if textareaid == 8 then
distanciax = distanciax + 190
distanciay = 80
textareaid = 0
end
ui.addTextArea(16, "<p align='center'><V><a href='event:iniciarJogo'>GO", Admin, 375, 203, 38, 18, FF0000, FF0000, 1, true)
end
end
end
if callback == 'normal' then
modo2b = "normal"
modo2 = "Sozinho"
resetarmostrarjugadoresSozinho()
displayTeams()
end
if callback == 'cerrarpuntaje' then
borrarScoreSozinho()
end
end
function string.split(s, pattern, n)
local st = {}
for sb in string.gmatch(s, "[^"..pattern.."]+") do
if not n or n > -1 then
table.insert(st,sb)
else
st[#st] = st[#st]..pattern..sb
end
n = n and n-1 or false
end
return st
end
function table.contains(tableT, element)
for _, value in pairs(tableT) do
if value == element then
return true
end
end
return false
end
defaultEffect=function(id,p,x,y,rand)
local minDist = 1
local outerBorder = 20
local maxDist = 30
local totalParticles = rand and 40 or (id == -1 and 35 or 75)
for i = 1, totalParticles do
if rand then
id = p[math.random(#p)]
end
local dist = math.min(math.random(minDist, maxDist), outerBorder)
local angle = math.random(0, 360)
local r = math.rad(angle)
local dx = math.cos(r)
local dy = math.sin(r)
local vx = dist * dx / 10
local vy = dist * dy / 10
local ax = -vx / dist / 15
local ay = (-vy / dist / 15) + 0.05
if id == -1 then
tfm.exec.displayParticle(9, x + dx, y + dy, vx, vy, ax, ay, nil)
tfm.exec.displayParticle(1, x + dx, y + dy, vx, vy, ax, ay, nil)
else
tfm.exec.displayParticle(id, x + dx, y + dy, vx, vy, ax, ay, nil)
end
end
end
displayTeams()
function eventPlayerDied()
local alive = 0
for k,v in pairs(tfm.get.room.playerList) do
if not v.isDead then
alive = alive+1
end
end
if alive == 0 then
newMap()
end
end



Use o comando !prox - Para pular de mapa.
Use o comando !pontos - Para trocar de pontos do time, ex: "!pontos team1 5" para definir a pontuação 5 para o time1.
Use o comando !np @codigo - Para executar qualquer mapa.
Use o comando !pausa - Para pausar o jogo.
Use o comando !time - Para atribuir jogadores a uma equipe, ex: "!time Duduzinha#3570".
Use o comando !d NUMERO - para escolher a pontuação para ganhar, ex: "!d 20" Para que a pontuação final seja 20.
Use o comando !adicionar team nick - Para adicionar um jogador à equipe especifica ex: "!adicionar team3 Duduzinha#3570" para adicionar a Dudu no time3 ^-^.
Use o comando !resetar - Para resetar o jogo.
Use o comando !expulsar team nick - Para expulsar um jogador de algum time. "!expulsar team3 Duduzinha#3570" para expulsar a Dudu do time3 e.e ^-^.
Use o comando !ponto - para ver a pontuação [Somente no modo Sozinho].


Atenção:
Certifique-se que seu cargo na tribo possui a permissão Pode carregar um mapa (/np @code).


Dernière modification le 1598051820000
Opy
« Citoyen »
Running
1623545220000
    • Opy#1181
    • Profil
    • Derniers messages
    • Tribu
#2
  0
Ajha
  • Tribus
  • /
  • Onde Fracos Nao Tem Vez'
  • /
  • Scripts [ Module ]
  • /
  • ↦ x1 - 4 Times - Racing / Vanilla / Mapasmix (Script)
© Atelier801 2018

Equipe Conditions Générales d'Utilisation Politique de Confidentialité Contact

Version 1.27