Advanced

Change History

New api methods will be announced here. Changes in our data that is relevant to checkers scripts/tags will also be announced here.

Message: Re: Big boring changes incoming (PHP7)

Changed By: magma1447
Change Date: March 08, 2018 10:27PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


[s]https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
[/s]
[s]
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
[/s]
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.
Fixed with server side patch.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


[s]https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[/s]
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
Fixed with server side patch.


[s]https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik[/s]
[s]https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)[/s]
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Fixed with server side patch.


[s]https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.[/s]
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
Fixed with server side patch. (wasn't a typecast issue)


[s]https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96[/s]
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Fixed with server side patch.


[s]https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96[/s]
[s]https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96[/s]
[s]Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.[/s]
There was a tab character in a key in the JSON (FIXED).
The scripts output is faulty on my name though, because of 0-based indexes and this code:
local north = poly.rect[1]
local south = poly.rect[2]
local east = poly.rect[3]
local west = poly.rect[4]
Fixed with server side patch.



[s]
https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
[/s]
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
Fixed with server side patch.


[s]https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz[/s]
[s]https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz[/s]
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
Fixed with server side patch.


[s]https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96[/s]
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1
Fixed with server side patch.


Scripts destroying the class table (scriptId:tagId):
[s]603:2079, 735:5985, 743:6151, 837:9830, 845:10031, 857:10800, 940:12285, 937:12987, 1007:13527, 1021:13839, 1065:14494, 1098:15162, 1109:15561, 1131:15958, 1165:16268, 1315:20367, 1363:20877, 1397:21440, 1503:23224, 1508:23316, 1518:23541, 1524:23672, 1525:23684, 1553:24296, 1466:24856, 1685:25130, 1989:26860, 1538:27817, 2245:28296, 2292:28663, 2385:29146, 2467:29749, 2513:30397, 2514:30511, 2535:30568, 2558:30693, 2581:30849, 2582:30857, 2624:31203, 2704:32366, 2602:32368[/s]


Scripts destroying the class pairs:
[s]https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik[/s]


[s]When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.[/s]
Scripts can now be edited via GitLab.com.

All 0-based index issues was a server side issue, it was fixed (thanks arisoft for making me realize). That also fixed most of the broken scripts actually.
Changed By: magma1447
Change Date: March 08, 2018 09:25PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
[s]Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.
[/s]
There was a tab character in a key in the JSON.
(FIXED).
The scripts output is faulty on my name though, because of 0-based indexes and this code:
local north = poly.rect[1]
local south = poly.rect[2]
local east = poly.rect[3]
local west = poly.rect[4]



https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table (scriptId:tagId):
[s]603:2079, 735:5985, 743:6151, 837:9830, 845:10031, 857:10800, 940:12285, 937:12987, 1007:13527, 1021:13839, 1065:14494, 1098:15162, 1109:15561, 1131:15958, 1165:16268, 1315:20367, 1363:20877, 1397:21440, 1503:23224, 1508:23316, 1518:23541, 1524:23672, 1525:23684, 1553:24296, 1466:24856, 1685:25130, 1989:26860, 1538:27817, 2245:28296, 2292:28663, 2385:29146, 2467:29749, 2513:30397, 2514:30511, 2535:30568, 2558:30693, 2581:30849, 2582:30857, 2624:31203, 2704:32366, 2602:32368[/s]


Scripts destroying the class pairs:
[s]https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik[/s]


[s]When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.[/s]
Scripts can now be edited via GitLab.com.
Changed By: magma1447
Change Date: March 05, 2018 08:14PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.
There was a tab character in a key in the JSON.
The scripts output is faulty on my name because of 0-based indexes and this code:
local north = poly.rect[1]
local south = poly.rect[2]
local east = poly.rect[3]
local west = poly.rect[4]



https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table (scriptId:tagId):
[s]603:2079, 735:5985, 743:6151, 837:9830, 845:10031, 857:10800, 940:12285, 937:12987, 1007:13527, 1021:13839, 1065:14494, 1098:15162, 1109:15561, 1131:15958, 1165:16268, 1315:20367, 1363:20877, 1397:21440, 1503:23224, 1508:23316, 1518:23541, 1524:23672, 1525:23684, 1553:24296, 1466:24856, 1685:25130, 1989:26860, 1538:27817, 2245:28296, 2292:28663, 2385:29146, 2467:29749, 2513:30397, 2514:30511, 2535:30568, 2558:30693, 2581:30849, 2582:30857, 2624:31203, 2704:32366, 2602:32368[/s]


Scripts destroying the class pairs:
[s]https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik[/s]


[s]When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.[/s]
Scripts can now be edited via GitLab.com.
Changed By: magma1447
Change Date: March 05, 2018 08:00PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
+----------+-------+
| scriptId | tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 | FIXED
| 743 | 6151 | FIXED
| 837 | 9830 | FIXED
| 845 | 10031 | FIXED
| 857 | 10800 | FIXED
| 940 | 12285 | FIXED
| 937 | 12987 | FIXED (most this far had an unused local
table = ""
|
(scriptId:tagId):
[s]603:2079, 735:5985, 743:6151, 837:9830, 845:10031, 857:10800, 940:12285, 937:12987,
1007 | :13527 | FIXED
|
, 1021 | :13839 | FIXED
|
, 1065 | :14494 | FIXED
|
, 1098 | :15162 | FIXED
|
, 1109 | :15561 | FIXED
|
, 1131 | :15958 | FIXED
|
, 1165 | :16268 | FIXED
|
, 1315 | :20367 | FIXED
|
, 1363 | :20877 | FIXED
|
, 1397 | :21440 | FIXED
|
, 1503 | :23224 | FIXED
|
, 1508 | :23316 | FIXED
|
, 1518 | :23541 | FIXED
|
, 1524 | :23672 | FIXED
|
, 1525 | :23684 | FIXED
|
, 1553 | :24296 | FIXED
|
, 1466 | :24856 | FIXED
|
, 1685 |:25130, 1989:26860, 1538:27817, 2245:28296, 2292:28663, 2385:29146, 2467:29749, 25130 | FIXED
| 1989 | 26860 | FIXED
| 1538 | 27817 | FIXED
| 2245 | 28296 | FIXED
| 2292 | 28663 | FIXED
| 2385 | 29146 | FIXED
| 2467 | 29749 | FIXED
| 2513 |
:30397 | FIXED
|
, 2514 | :30511 | FIXED
|
, 2535 | :30568 | FIXED
|
, 2558 | :30693 | FIXED
|
, 2581 | :30849 | FIXED
|
, 2582 | :30857 | FIXED
|
, 2624 | :31203 | FIXED
|
, 2704 | :32366 | FIXED
|
, 2602 | :32368 | FIXED
+----------+-------+
[/s]


Scripts destroying the class pairs:
[s]https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik
FIXED
[/s]


[s]When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.[/s]
Scripts can now be edited via GitLab.com.
Changed By: magma1447
Change Date: March 05, 2018 07:58PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
+----------+-------+
| scriptId | tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 | FIXED
| 743 | 6151 | FIXED
| 837 | 9830 | FIXED
| 845 | 10031 | FIXED
| 857 | 10800 | FIXED
| 940 | 12285 | FIXED
| 937 | 12987 | FIXED (most this far had an unused local table = ""
| 1007 | 13527 | FIXED
| 1021 | 13839 | FIXED
| 1065 | 14494 | FIXED
| 1098 | 15162 | FIXED
| 1109 | 15561 | FIXED
| 1131 | 15958 | FIXED
| 1165 | 16268 | FIXED
| 1315 | 20367 | FIXED
| 1363 | 20877 | FIXED
| 1397 | 21440 | FIXED
| 1503 | 23224 | FIXED
| 1508 | 23316 | FIXED
| 1518 | 23541 | FIXED
| 1524 | 23672 | FIXED
| 1525 | 23684 | FIXED
| 1553 | 24296 | FIXED
| 1466 | 24856 | FIXED
| 1685 | 25130 | FIXED
| 1989 | 26860 | FIXED
| 1538 | 27817 | FIXED
| 2245 | 28296 | FIXED
| 2292 | 28663 | FIXED
| 2385 | 29146 | FIXED
| 2467 | 29749 | FIXED
| 2513 | 30397 | FIXED
| 2514 | 30511 | FIXED
| 2535 | 30568 | FIXED
| 2558 | 30693 | FIXED
| 2581 | 30849 | FIXED
| 2582 | 30857 | FIXED
| 2624 | 31203 | FIXED
| 2704 | 32366 | FIXED
| 2602 | 32368 | FIXED
+----------+-------+


Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.
FIXED

[s]When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.[/s]
Scripts can now be edited via GitLab.com.
Changed By: magma1447
Change Date: March 05, 2018 07:55PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
+----------+-------+
| scriptId | tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 | FIXED
| 743 | 6151 | FIXED
| 837 | 9830 | FIXED
| 845 | 10031 | FIXED
| 857 | 10800 | FIXED
| 940 | 12285 | FIXED
| 937 | 12987 | FIXED (most this far had an unused local table = ""
| 1007 | 13527 | FIXED
| 1021 | 13839 | FIXED
| 1065 | 14494 | FIXED
| 1098 | 15162 | FIXED
| 1109 | 15561 | FIXED
| 1131 | 15958 | FIXED
| 1165 | 16268 | FIXED
| 1315 | 20367 | FIXED
| 1363 | 20877 | FIXED
| 1397 | 21440 |
|
| FIXED
|
1503 | 23224 |
|
| FIXED
|
1508 | 23316 |
|
| FIXED
|
1518 | 23541 |
|
| FIXED
|
1524 | 23672 |
|
| FIXED
|
1525 | 23684 |
|
| FIXED
|
1553 | 24296 |
|
| FIXED
|
1466 | 24856 |
|
| FIXED
|
1685 | 25130 |
|
| FIXED
|
1989 | 26860 |
|
| FIXED
|
1538 | 27817 |
|
| FIXED
|
2245 | 28296 |
|
| FIXED
|
2292 | 28663 |
|
| FIXED
|
2385 | 29146 |
|
| FIXED
|
2467 | 29749 |
|
| FIXED
|
2513 | 30397 |
|
| FIXED
|
2514 | 30511 |
|
| FIXED
|
2535 | 30568 |
|
| FIXED
|
2558 | 30693 |
|
| FIXED
|
2581 | 30849 |
|
| FIXED
|
2582 | 30857 |
|
| FIXED
|
2624 | 31203 |
|
| FIXED
|
2704 | 32366 |
|
| FIXED
|
2602 | 32368 |
| FIXED
+----------+-------+


Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.
Changed By: magma1447
Change Date: March 05, 2018 05:34PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
+----------+-------+
| scriptId | tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 | FIXED
| 743 | 6151 | FIXED
| 837 | 9830 | FIXED
| 845 | 10031 | FIXED
| 857 | 10800 | FIXED
| 940 | 12285 | FIXED
| 937 | 12987 | FIXED (most this far had an unused local table = ""
| 1007 | 13527 |
|
| FIXED
|
1021 | 13839 |
|
| FIXED
|
1065 | 14494 |
|
| FIXED
|
1098 | 15162 |
|
| FIXED
|
1109 | 15561 |
|
| FIXED
|
1131 | 15958 |
|
| FIXED
|
1165 | 16268 |
|
| FIXED
|
1315 | 20367 |
|
| FIXED
|
1363 | 20877 |
| FIXED
| 1397 | 21440 |
| 1503 | 23224 |
| 1508 | 23316 |
| 1518 | 23541 |
| 1524 | 23672 |
| 1525 | 23684 |
| 1553 | 24296 |
| 1466 | 24856 |
| 1685 | 25130 |
| 1989 | 26860 |
| 1538 | 27817 |
| 2245 | 28296 |
| 2292 | 28663 |
| 2385 | 29146 |
| 2467 | 29749 |
| 2513 | 30397 |
| 2514 | 30511 |
| 2535 | 30568 |
| 2558 | 30693 |
| 2581 | 30849 |
| 2582 | 30857 |
| 2624 | 31203 |
| 2704 | 32366 |
| 2602 | 32368 |
+----------+-------+


Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.
Changed By: magma1447
Change Date: March 05, 2018 05:19PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
+----------+-------+
| scriptId | tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 |
|
| FIXED
|
743 | 6151 |
|
| FIXED
|
837 | 9830 |
|
| FIXED
|
845 | 10031 |
|
| FIXED
|
857 | 10800 |
|
| FIXED
|
940 | 12285 |
|
| FIXED
|
937 | 12987 |
| FIXED (most this far had an unused local table = ""
| 1007 | 13527 |
| 1021 | 13839 |
| 1065 | 14494 |
| 1098 | 15162 |
| 1109 | 15561 |
| 1131 | 15958 |
| 1165 | 16268 |
| 1315 | 20367 |
| 1363 | 20877 |
| 1397 | 21440 |
| 1503 | 23224 |
| 1508 | 23316 |
| 1518 | 23541 |
| 1524 | 23672 |
| 1525 | 23684 |
| 1553 | 24296 |
| 1466 | 24856 |
| 1685 | 25130 |
| 1989 | 26860 |
| 1538 | 27817 |
| 2245 | 28296 |
| 2292 | 28663 |
| 2385 | 29146 |
| 2467 | 29749 |
| 2513 | 30397 |
| 2514 | 30511 |
| 2535 | 30568 |
| 2558 | 30693 |
| 2581 | 30849 |
| 2582 | 30857 |
| 2624 | 31203 |
| 2704 | 32366 |
| 2602 | 32368 |
+----------+-------+


Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.
Changed By: magma1447
Change Date: March 05, 2018 04:05PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all scripts that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
https://project-gc.com/Challenges//10031+----------+-------+
|
scriptId: , creator:
https://project-gc.com/Challenges//
| tagId |
+----------+-------+
| 603 | 2079 | FIXED
| 735 | 5985 |
| 743 | 6151 |
| 837 |
9830 scriptId: , creator:
https://project-gc.com/Challenges//6
|
| 845 | 10031 |
| 857 | 10800 |
| 940 | 12285 |
| 937 | 12987 |
| 1007 | 13527 |
| 1021 | 13839 |
| 1065 | 14494 |
| 1098 |
151 scriptId: , creator:
https://project-gc.com/Challenges//5985 scriptId: , creator:
https://project-gc.com/Challenges//2079 scriptId: , creator:
https://project-gc.com/Challenges//
62 |
| 1109 | 15561 |
| 1131 | 15958 |
| 1165 | 16268 |
| 1315 | 20367 |
| 1363 | 20877 |
| 1397 | 21440 |
| 1503 | 23224 |
| 1508 | 23316 |
| 1518 | 23541 |
| 1524 | 23672 |
| 1525 | 23684 |
| 1553 | 24296 |
| 1466 | 24856 |
| 1685 | 25130 |
| 1989 | 26860 |
| 1538 | 27817 |
| 2245 | 28296 |
| 2292 | 28663 |
| 2385 | 29146 |
| 2467 | 29749 |
| 2513 | 30397 |
| 2514 | 30511 |
| 2535 | 30568 |
| 2558 | 30693 |
| 2581 | 30849 |
| 2582 | 30857 |
| 2624 | 31203 |
| 2704 | 32366 |
| 2602 |
32368 scriptId: , creator:
https://project-gc.com/Challenges//10800 scriptId: , creator:
https://project-gc.com/Challenges//12285 scriptId: , creator:
https://project-gc.com/Challenges//12987 scriptId: , creator:
https://project-gc.com/Challenges//13527 scriptId: , creator:
https://project-gc.com/Challenges//13839 scriptId: , creator:
https://project-gc.com/Challenges//14494 scriptId: , creator:
https://project-gc.com/Challenges//15162 scriptId: , creator:
https://project-gc.com/Challenges//15561 scriptId: , creator:
https://project-gc.com/Challenges//15958 scriptId: , creator:
https://project-gc.com/Challenges//16268 scriptId: , creator:
https://project-gc.com/Challenges//20367 scriptId: , creator:
https://project-gc.com/Challenges//20877 scriptId: , creator:
https://project-gc.com/Challenges//21440 scriptId: , creator:
https://project-gc.com/Challenges//23224 scriptId: , creator:
https://project-gc.com/Challenges//23316 scriptId: , creator:
https://project-gc.com/Challenges//23541 scriptId: , creator:
https://project-gc.com/Challenges//23672 scriptId: , creator:
https://project-gc.com/Challenges//23684 scriptId: , creator:
https://project-gc.com/Challenges//24296 scriptId: , creator:
https://project-gc.com/Challenges//24856 scriptId: , creator:
https://project-gc.com/Challenges//25130 scriptId: , creator:
https://project-gc.com/Challenges//26860 scriptId: , creator:
https://project-gc.com/Challenges//27817 scriptId: , creator:
https://project-gc.com/Challenges//28296 scriptId: , creator:
https://project-gc.com/Challenges//28663 scriptId: , creator:
https://project-gc.com/Challenges//29146 scriptId: , creator:
https://project-gc.com/Challenges//29749 scriptId: , creator:
https://project-gc.com/Challenges//30397 scriptId: , creator:
https://project-gc.com/Challenges//30511 scriptId: , creator:
https://project-gc.com/Challenges//30568 scriptId: , creator:
https://project-gc.com/Challenges//30693 scriptId: , creator:
https://project-gc.com/Challenges//30849 scriptId: , creator:
https://project-gc.com/Challenges//30857 scriptId: , creator:
https://project-gc.com/Challenges//31203 scriptId: , creator:
https://project-gc.com/Challenges//32366 scriptId: , creator:
scriptIds: 603, 735, 743, 837, 845, 857, 940, 937, 1007, 1021, 1065, 1098, 1109, 1131, 1165, 1315, 1363, 1397, 1503, 1508, 1518, 1524, 1525, 1553, 1466, 1685, 1989, 1538, 2245, 2292, 2385, 2467, 2513, 2514, 2535, 2558, 2581, 2582, 2624, 2704, 2602
|
+----------+-------+


Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.
Changed By: magma1447
Change Date: March 02, 2018 08:26PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all script s that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
https://project-gc.com/Challenges//10031 scriptId: , creator:
https://project-gc.com/Challenges//9830 scriptId: , creator:
https://project-gc.com/Challenges//6151 scriptId: , creator:
https://project-gc.com/Challenges//5985 scriptId: , creator:
https://project-gc.com/Challenges//2079 scriptId: , creator:
https://project-gc.com/Challenges//32368 scriptId: , creator:
https://project-gc.com/Challenges//10800 scriptId: , creator:
https://project-gc.com/Challenges//12285 scriptId: , creator:
https://project-gc.com/Challenges//12987 scriptId: , creator:
https://project-gc.com/Challenges//13527 scriptId: , creator:
https://project-gc.com/Challenges//13839 scriptId: , creator:
https://project-gc.com/Challenges//14494 scriptId: , creator:
https://project-gc.com/Challenges//15162 scriptId: , creator:
https://project-gc.com/Challenges//15561 scriptId: , creator:
https://project-gc.com/Challenges//15958 scriptId: , creator:
https://project-gc.com/Challenges//16268 scriptId: , creator:
https://project-gc.com/Challenges//20367 scriptId: , creator:
https://project-gc.com/Challenges//20877 scriptId: , creator:
https://project-gc.com/Challenges//21440 scriptId: , creator:
https://project-gc.com/Challenges//23224 scriptId: , creator:
https://project-gc.com/Challenges//23316 scriptId: , creator:
https://project-gc.com/Challenges//23541 scriptId: , creator:
https://project-gc.com/Challenges//23672 scriptId: , creator:
https://project-gc.com/Challenges//23684 scriptId: , creator:
https://project-gc.com/Challenges//24296 scriptId: , creator:
https://project-gc.com/Challenges//24856 scriptId: , creator:
https://project-gc.com/Challenges//25130 scriptId: , creator:
https://project-gc.com/Challenges//26860 scriptId: , creator:
https://project-gc.com/Challenges//27817 scriptId: , creator:
https://project-gc.com/Challenges//28296 scriptId: , creator:
https://project-gc.com/Challenges//28663 scriptId: , creator:
https://project-gc.com/Challenges//29146 scriptId: , creator:
https://project-gc.com/Challenges//29749 scriptId: , creator:
https://project-gc.com/Challenges//30397 scriptId: , creator:
https://project-gc.com/Challenges//30511 scriptId: , creator:
https://project-gc.com/Challenges//30568 scriptId: , creator:
https://project-gc.com/Challenges//30693 scriptId: , creator:
https://project-gc.com/Challenges//30849 scriptId: , creator:
https://project-gc.com/Challenges//30857 scriptId: , creator:
https://project-gc.com/Challenges//31203 scriptId: , creator:
https://project-gc.com/Challenges//32366 scriptId: , creator:
scriptIds: 603, 735, 743, 837, 845, 857, 940, 937, 1007, 1021, 1065, 1098, 1109, 1131, 1165, 1315, 1363, 1397, 1503, 1508, 1518, 1524, 1525, 1553, 1466, 1685, 1989, 1538, 2245, 2292, 2385, 2467, 2513, 2514, 2535, 2558, 2581, 2582, 2624, 2704, 2602

Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.

Original Message

Author: magma1447
Date: March 02, 2018 08:26PM

Re: Big boring changes incoming (PHP7)
[b]I'll summarize all script that needs to be fixed here:[/b]

https://project-gc.com/Challenges//20319 scriptId: 1307, creator: famv17
Typecasting issue in fixed_length_right
Fix: string = tostring(string)


https://project-gc.com/Challenges//984 scriptId: 2486, creator: arisoft
https://project-gc.com/Challenges//9533 scriptId: 826, creator: vogelbird
local cache = list[word.codes[word.select]]
word.select becomes 1 and word.codes[word.select] becomes GC1T3TV. However, that gccode does not exist in the variable list.


https://project-gc.com/Challenges//2580 scriptId: 528, creator: the Seagnoid
< if TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then
> if TGrid[Letter] ~= nil and TGrid[Letter][CacheType] ~= nil and TResultsTypes[CacheType] == nil then


https://project-gc.com/Challenges//7295 scriptId: 767, creator: hampf
https://project-gc.com/Challenges//24234 scriptId: 1550, creator: jpavlik
https://project-gc.com/Challenges//25085 scriptId: 1679, creator: sloth96
Prints a table, need to remove that print for now


https://project-gc.com/Challenges//11986 scriptId: 919, creator: Target.
[string ""]:115: attempt to index field '?' (a nil value)


https://project-gc.com/Challenges//14305 scriptId: 971, creator: jpavlik
https://project-gc.com/Challenges//18169 scriptId: 1226, creator: vogelbird (fork of the above)
[string ""]:26: attempt to compare nil with number


https://project-gc.com/Challenges//21705 scriptId: 1287, creator: Target.
Typecast issue
[string ""]:207: attempt to perform arithmetic on field 'radius' (a string value)
local latadd=point.radius/1000*latconv
local lonadd=point.radius/1000*lonconv


https://project-gc.com/Challenges//25004 scriptId: 1623, creator: sloth96
[string ""]:284: bad argument #2 to 'min' (number expected, got nil)
map.outboundBox[2]=math.min(map.outboundBox[2],list[2])


https://project-gc.com/Challenges//25151 scriptId: 1690, creator: sloth96
https://project-gc.com/Challenges//27426 scriptId: 1690, creator: sloth96
Uses a json file (US_State_Capitals) that works in PHP 5.6 but not in 7.0. Most likely invalid in some way.


https://project-gc.com/Challenges//14410 scriptId: 1061, creator: SeekerSupreme
0-based index issue?
[string ""]:26: attempt to index field '?' (a nil value)
hides[1] can be nil at line 26
FIX: if hides[0] ~= nil then .. else .. end


https://project-gc.com/Challenges//26424 scriptId: 1914, creator: AnnaMoritz
https://project-gc.com/Challenges//26933 scriptId: 1996, creator: AnnaMoritz
0-based index issue?
[string ""]:1423: attempt to index global 'lastFind' (a nil value)


https://project-gc.com/Challenges//26726 scriptId: 1609, creator: sloth96
0-based index issue?
map.outboundBox[1]=math.min(map.outboundBox[1],list[1])
map.outboundBox[3]=math.max(map.outboundBox[3],list[1])
map.outboundBox[2]=math.min(map.outboundBox[2],list[2]) <----- 296
map.outboundBox[4]=math.max(map.outboundBox[4],list[2])
I assume this is also a 0-based index issue. In that case, it should be 0, 0, 1, 1


Scripts destroying the class table:
https://project-gc.com/Challenges//10031 scriptId: , creator:
https://project-gc.com/Challenges//9830 scriptId: , creator:
https://project-gc.com/Challenges//6151 scriptId: , creator:
https://project-gc.com/Challenges//5985 scriptId: , creator:
https://project-gc.com/Challenges//2079 scriptId: , creator:
https://project-gc.com/Challenges//32368 scriptId: , creator:
https://project-gc.com/Challenges//10800 scriptId: , creator:
https://project-gc.com/Challenges//12285 scriptId: , creator:
https://project-gc.com/Challenges//12987 scriptId: , creator:
https://project-gc.com/Challenges//13527 scriptId: , creator:
https://project-gc.com/Challenges//13839 scriptId: , creator:
https://project-gc.com/Challenges//14494 scriptId: , creator:
https://project-gc.com/Challenges//15162 scriptId: , creator:
https://project-gc.com/Challenges//15561 scriptId: , creator:
https://project-gc.com/Challenges//15958 scriptId: , creator:
https://project-gc.com/Challenges//16268 scriptId: , creator:
https://project-gc.com/Challenges//20367 scriptId: , creator:
https://project-gc.com/Challenges//20877 scriptId: , creator:
https://project-gc.com/Challenges//21440 scriptId: , creator:
https://project-gc.com/Challenges//23224 scriptId: , creator:
https://project-gc.com/Challenges//23316 scriptId: , creator:
https://project-gc.com/Challenges//23541 scriptId: , creator:
https://project-gc.com/Challenges//23672 scriptId: , creator:
https://project-gc.com/Challenges//23684 scriptId: , creator:
https://project-gc.com/Challenges//24296 scriptId: , creator:
https://project-gc.com/Challenges//24856 scriptId: , creator:
https://project-gc.com/Challenges//25130 scriptId: , creator:
https://project-gc.com/Challenges//26860 scriptId: , creator:
https://project-gc.com/Challenges//27817 scriptId: , creator:
https://project-gc.com/Challenges//28296 scriptId: , creator:
https://project-gc.com/Challenges//28663 scriptId: , creator:
https://project-gc.com/Challenges//29146 scriptId: , creator:
https://project-gc.com/Challenges//29749 scriptId: , creator:
https://project-gc.com/Challenges//30397 scriptId: , creator:
https://project-gc.com/Challenges//30511 scriptId: , creator:
https://project-gc.com/Challenges//30568 scriptId: , creator:
https://project-gc.com/Challenges//30693 scriptId: , creator:
https://project-gc.com/Challenges//30849 scriptId: , creator:
https://project-gc.com/Challenges//30857 scriptId: , creator:
https://project-gc.com/Challenges//31203 scriptId: , creator:
https://project-gc.com/Challenges//32366 scriptId: , creator:
scriptIds: 603, 735, 743, 837, 845, 857, 940, 937, 1007, 1021, 1065, 1098, 1109, 1131, 1165, 1315, 1363, 1397, 1503, 1508, 1518, 1524, 1525, 1553, 1466, 1685, 1989, 1538, 2245, 2292, 2385, 2467, 2513, 2514, 2535, 2558, 2581, 2582, 2624, 2704, 2602

Scripts destroying the class pairs:
https://project-gc.com/Challenges//24247 scriptId: 1552, creator: jpavlik

When I am more ready, there will be a way for certain users to edit ANY script to help us through this. I'll get back with more details later, might not be today. Quite tired now, been working double time for a few days.