-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1102 lines (1094 loc) · 69.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" type="text/css" href="https://www.syntaxbomb.com/Themes/OrangeLine/css/index.css?fin20" />
<script type="text/javascript" src="https://www.syntaxbomb.com/Themes/default/scripts/script.js?fin20"></script>
<script type="text/javascript" src="https://www.syntaxbomb.com/Themes/OrangeLine/scripts/theme.js?fin20"></script>
<script type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "https://www.syntaxbomb.com/Themes/OrangeLine";
var smf_default_theme_url = "https://www.syntaxbomb.com/Themes/default";
var smf_images_url = "https://www.syntaxbomb.com/Themes/OrangeLine/images";
var smf_scripturl = "https://www.syntaxbomb.com/index.php";
var smf_iso_case_folding = false;
var smf_charset = "UTF-8";
var ajax_notification_text = "Loading...";
var ajax_notification_cancel_text = "Cancel";
// ]]></script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="description" content="Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021" />
<title>Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</title>
<!-- Bad Behavior 2.2.20 run time: 0.000 ms -->
<a href="http://forums.holdemmanager.com/gatheringgrouchy.php?jsp=015&qlvc=bc197896ac0de4c2ae04c3d05231952f"><img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" alt="Ooops" border="0" height="0" width="1" /></a><script type="text/javascript">
<!--
function bb2_addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}
bb2_addLoadEvent(function() {
for ( i=0; i < document.forms.length; i++ ) {
if (document.forms[i].method == 'post') {
var myElement = document.createElement('input');
myElement.setAttribute('type', 'hidden');
myElement.name = 'bb2_screener_';
myElement.value = '1637514753 207.241.233.159';
document.forms[i].appendChild(myElement);
}
}
});
// --></script>
<link rel="canonical" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/" />
<link rel="help" href="https://www.syntaxbomb.com/help/" />
<link rel="search" href="https://www.syntaxbomb.com/search/" />
<link rel="contents" href="https://www.syntaxbomb.com/index.php" />
<link rel="alternate" type="application/rss+xml" title="SyntaxBomb - Indie Coders - RSS" href="https://www.syntaxbomb.com/.xml/?type=rss" />
<link rel="prev" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=prev" />
<link rel="next" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=next" />
<link rel="index" href="https://www.syntaxbomb.com/game-coding-competitions/" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function(){
var cookieSet = document.cookie.indexOf("eu_cookie=") != -1;
if(!cookieSet) {
jQuery("#cookie_button").click(function(){
var expire = new Date();
expire.setDate(expire.getDate() + 30);
document.cookie = "eu_cookie=1; path=/; expires=" + expire.toUTCString();
jQuery(".cookie_wrap").fadeOut("fast");
});
jQuery(".cookie_wrap").css("visibility", "visible");
}
});
</script>
<link rel="stylesheet" type="text/css" href="https://www.syntaxbomb.com/Themes/default/css/BBCode-YouTube2.css" />
<link rel="stylesheet" type="text/css" id="portal_css" href="https://www.syntaxbomb.com/Themes/default/css/portal.css" />
<script type="text/javascript" src="https://www.syntaxbomb.com/Themes/default/scripts/portal.js?236"></script>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var sp_images_url = "https://www.syntaxbomb.com/Themes/OrangeLine/images/sp";
var sp_script_url = "https://www.syntaxbomb.com/index.php";
function sp_collapseBlock(id)
{
mode = document.getElementById("sp_block_" + id).style.display == "" ? 0 : 1;
document.cookie = "sp_block_" + id + "=" + (mode ? 0 : 1);
document.getElementById("sp_collapse_" + id).src = smf_images_url + (mode ? "/collapse.gif" : "/expand.gif");
document.getElementById("sp_block_" + id).style.display = mode ? "" : "none";
}
window.addEventListener("load", sp_image_resize, false);
// ]]></script>
<script type="text/javascript" src="https://www.syntaxbomb.com/Themes/default/scripts/captcha.js"></script><style type="text/css">.vv_special { display:none; }</style>
</head>
<body>
<div id="wrapper" style="width: 90%">
<div id="topper">
<div id="newsbar">
<span class="ticktock">November 21, 2021, 17:12:33</span>
</div>
</div>
<div id="header">
<div id="userarea" class="smalltext">
<script type="text/javascript" src="https://www.syntaxbomb.com/Themes/default/scripts/sha1.js"></script>
<form id="guest_form" action="https://www.syntaxbomb.com/login2/" method="post" accept-charset="UTF-8" onsubmit="hashLoginPassword(this, '1bab8e92a5c6768cbbf3e0f503ae1a2b');">
<div class="info">Welcome, <strong>Guest</strong>. Please <a href="https://www.syntaxbomb.com/login/">login</a> or <a href="https://www.syntaxbomb.com/register/">register</a>.<br />Did you miss your <a href="https://www.syntaxbomb.com/activate/">activation email</a>?</div>
<input type="text" name="user" size="10" class="input_text" />
<input type="password" name="passwrd" size="10" class="input_password" />
<select name="cookielength">
<option value="60">1 Hour</option>
<option value="1440">1 Day</option>
<option value="10080">1 Week</option>
<option value="43200">1 Month</option>
<option value="-1" selected="selected">Forever</option>
</select>
<input type="submit" value="Login" class="button_submit" /><br />
<div class="info">Login with username, password and session length</div>
<input type="hidden" name="hash_passwrd" value="" /><input type="hidden" name="a3156220c" value="1bab8e92a5c6768cbbf3e0f503ae1a2b" />
</form>
</div>
<div id="logo">
<a href="https://www.syntaxbomb.com/index.php"><img src="https://www.syntaxbomb.com/images/logoSyntaxBomb.png" alt="SyntaxBomb - Indie Coders" title="SyntaxBomb - Indie Coders" /></a>
</div>
</div>
<div id="toolbar">
<div id="topnav">
<ul>
<li id="button_home">
<a class="firstlevel" href="https://www.syntaxbomb.com/index.php">
<span class="last firstlevel">Home</span>
</a>
</li>
<li id="button_forum">
<a class="active firstlevel" href="https://www.syntaxbomb.com/forum/">
<span class="firstlevel">Forum</span>
</a>
</li>
<li id="button_help">
<a class="firstlevel" href="https://www.syntaxbomb.com/help/">
<span class="firstlevel">Help</span>
</a>
</li>
<li id="button_gallery">
<a class="firstlevel" href="https://www.syntaxbomb.com/gallery/">
<span class="firstlevel">Gallery</span>
</a>
</li>
<li id="button_login">
<a class="firstlevel" href="https://www.syntaxbomb.com/login/">
<span class="firstlevel">Login</span>
</a>
</li>
<li id="button_register">
<a class="firstlevel" href="https://www.syntaxbomb.com/register/">
<span class="last firstlevel">Register</span>
</a>
</li>
</ul>
</div>
</div>
<div id="content_section"><div class="frame">
<div id="main_content_section">
<div class="navigate_section">
<ul>
<li>
<a href="https://www.syntaxbomb.com/forum/"><span>SyntaxBomb - Indie Coders</span></a> »
</li>
<li>
<a href="https://www.syntaxbomb.com/forum/#c1"><span>General Category</span></a> »
</li>
<li>
<a href="https://www.syntaxbomb.com/game-coding-competitions/"><span>Game Coding Competitions</span></a> »
</li>
<li class="last">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/"><span>Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</span></a>
</li>
</ul>
</div>
<table id="sp_main">
<tr>
<td id="sp_center">
<a id="top"></a>
<a id="msg347051929"></a>
<div class="pagesection">
<div class="nextlinks"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=prev#new">« previous</a> <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=next#new">next »</a></div>
<div class="buttonlist floatright">
<ul>
<li><a class="button_strip_print" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?action=printpage" rel="new_win nofollow"><span class="last">Print</span></a></li>
</ul>
</div>
<div class="pagelinks floatleft">Pages: [<strong>1</strong>] <a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/15/">2</a> <a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/30/">3</a> <span style="font-weight: bold;" onclick="expandPages(this, 'https://www.syntaxbomb.com/index.php?topic=8599.%1$d', 45, 135, 15);" onmouseover="this.style.cursor='pointer';"> ... </span><a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/135/">10</a> <a href="#lastPost"><strong>Go Down</strong></a></div>
</div>
<div id="forumposts">
<div class="cat_bar">
<h3 class="catbg">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/topic/veryhot_post.gif" align="bottom" alt="" />
<span id="author">Author</span>
Topic: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021 (Read 9607 times)
</h3>
</div>
<form action="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?action=quickmod2" method="post" accept-charset="UTF-8" name="quickModForm" id="quickModForm" style="margin: 0;" onsubmit="return oQuickModify.bInEditMode ? oQuickModify.modifySave('1bab8e92a5c6768cbbf3e0f503ae1a2b', 'a3156220c') : false">
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/Qube/" title="View the profile of Qube">Qube</a>
</h4>
<ul class="reset smalltext" id="msg_347051929_extra_info">
<li class="membergroup">Administrator</li>
<li class="postgroup">Hero Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/Qube/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=4309;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 2798</li>
<li class="blurb">I mostly code at night... Mostly.</li>
<li class="profile">
<ul>
<li><a href="https://www.syntaxbomb.com" title="SyntaxBomb - Indie Coders" target="_blank" rel="noopener noreferrer" class="new_win"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/www_sm.gif" alt="SyntaxBomb - Indie Coders" /></a></li>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051929">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051929/#msg347051929" rel="nofollow">Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong> on:</strong> August 14, 2021, 01:47:14 »</div>
<div id="msg_347051929_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051929">Welcome to our 13th Code a Game Competition.<br /><br /><img src="https://www.syntaxbomb.com/GameComps/Banners/SBGC-TCBOO2021.png" alt="" class="bbc_img" /><br /><br /><strong>Competition Length :</strong> August 14th 2021 to October 24th 2021 @ 23:59:59 ( GMT )<br /><br /><strong>Theme :</strong> There Can Be Only ONE.<br /><br /><strong>Detailed description:</strong><br /><ul class="bbc_list"><li>Make a game where the only control you can use is one key.</li></ul><br /><strong>Limits :</strong><br /><br />The main game must only be controlled with one key.<br /><br />You can use a mouse or joystick / joypad but only one button can be used. You can not use any other features of that device.<br /><br />You can use any control system for any other part of your game for example main menu, options screen and to pause / resume / load / save your game.<br /><br />No other limits.<br /><br /><strong>Prize fund : </strong><br /><br />The prize fund will consist of £100 per competition entry up to a maximum of £1000.<br /><br /><strong>Allocation of the prize fund will be :</strong><br /><br />1st, 2nd and 3rd place will all receive an equal share of the prize fund.<br /><br /><strong>Rules :</strong><br /><br />1.. No copyright media or modified pre-built game templates allowed.<br />2.. Game frameworks are allowed as are free / purchased media. <br />3.. Individuals and teams are allowed to enter.<br />4.. Provide a download with at least a Windows executable ( or link if a web browser game only ). Include other OS's too if you want.<br />5.. Choice of language is totally up to you. You do not have to provide the source code.<br />6.. One entry per person / team.<br />7.. SyntaxBomb has zero rights to any work posted here. You / your team hold total control.<br />8.. Prize to the winners payable via PayPal only.<br />9.. No extensions to the deadline will be granted.<br />10.. Games must be in a completed state and not merely a demo / proof of concept.<br />11.. No remakes / clones of commercial games are allowed for example Donkey Kong which may lead to copyright infringement. A game my be done "in the style of" but must use original media and not a copy in a manner to which may infringe on a 3rd party copyright.<br />12.. There will be a one week gap after the comp ends before voting starts to allow members to play the games and for developers to fix any bugs in their game ( no new / additional features ) and re-upload. Once voting commences then no further bug fixes can be submitted until after voting has been completed.<br /><br /><strong>How to submit your game :</strong><br /><br />Game submissions must be made in this thread. You may link to your external webpage or showcase post about your game. If you have no means of hosting your game then please PM Qube and arrangements will be made.<br /><br /><strong>When submitting your game please adhere to the following format ( if relevant ) :</strong><br /><br />Game Title<br />Download link and OS requirements<br />Required dependancies<br />Brief info about your game<br />Any screen shots or video's<br />Media information ( If using free / purchased media, please state where you obtained said media. )<br /><br /><strong>How are the winners picked :</strong><br /><br />Voting will take place after ( see rule 12 ). Voters will state their three favourite games. A dedicated thread will be made and relevant voting information provided.<br /><br /><strong>Now what?</strong><br /><br />Get coding and good luck <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/grin.gif" alt=";D" title="Grin" class="smiley" /><br /><br /><strong>Games submitted ( in order )</strong><br /><br />1.. MrmediamanX - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052771/#msg347052771" class="bbc_link" target="_blank">Extreme pro tray surfer</a><br />2.. Rosy - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052793/#msg347052793" class="bbc_link" target="_blank">ROKART</a><br />3.. iWasAdam - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052795/#msg347052795" class="bbc_link" target="_blank">Neon Overdrive</a><br />4.. hosch - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052796/#msg347052796" class="bbc_link" target="_blank">RhythZard</a><br />5.. ricardo_sdl - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052802/#msg347052802" class="bbc_link" target="_blank">One-Button TETRIS</a><br />6.. metamorpho - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052804/#msg347052804" class="bbc_link" target="_blank">Robotekus</a><br />7.. statto - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052806/#msg347052806" class="bbc_link" target="_blank">Next Train to Mernda</a><br />8.. therevills - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052814/#msg347052814" class="bbc_link" target="_blank">CapeMan in Nightmare Realm</a><br />9.. Morpheus - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052821/#msg347052821" class="bbc_link" target="_blank">Dexter</a><br />10.. STEVIE G - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052835/#msg347052835" class="bbc_link" target="_blank">Super Grouper</a><br />11.. Qube - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052853/#msg347052853" class="bbc_link" target="_blank">Darts Night</a><br />12.. DottyGame - <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347052845/#msg347052845" class="bbc_link" target="_blank">ONE slap</a><br /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051929">
« <em>Last Edit: October 25, 2021, 03:36:18 by Qube</em> »
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051929_signature">Mac mini ( 2018 / 2020 ), 3 GHz 6-Core Intel Core i5, 16 GB 2667 MHz DDR4, 1TB NVMe, eGPU Radeon Pro 580 8 GB, LG Ultragear 27GL83A-B 27 Inch<br />Mac mini (2020 ), M1 SoC, 8 GB LPDDR4, 512GB NVMe <br />Commodore VIC-20, 1.1Mhz MOS 6502 CPU, 5KB RAM, VIC ( 6560 ) GPU<br /><br />Until the next time.</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051932"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/Amon./" title="View the profile of Amon.">Amon.</a>
</h4>
<ul class="reset smalltext" id="msg_347051932_extra_info">
<li class="postgroup">Sr. Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/Amon./">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=446;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 256</li>
<li class="blurb">What? There's no ceiling outside?</li>
<li class="profile">
<ul>
<li><a href="https://amon.pro" title="Amon.Pro" target="_blank" rel="noopener noreferrer" class="new_win"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/www_sm.gif" alt="Amon.Pro" /></a></li>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051932">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051932/#msg347051932" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #1 on:</strong> August 14, 2021, 06:51:03 »</div>
<div id="msg_347051932_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051932">I'm going to enter this competition. I'll start a worklog now. <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051932">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051932_signature">Windows 11 Pro - 64GB DDR4 RAM - GEFORCE RTX 3080 TI 12GB - AMD RYZEN 9 3950X</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051933"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/MikeHart/" title="View the profile of MikeHart">MikeHart</a>
</h4>
<ul class="reset smalltext" id="msg_347051933_extra_info">
<li class="postgroup">Hero Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 827</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051933">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051933/#msg347051933" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #2 on:</strong> August 14, 2021, 06:56:10 »</div>
<div id="msg_347051933_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051933">Question: does one feature of a controlling device include an axxis of a Mouse or a Stick on a gamepad, an analog button on a gamepad? Or are we bound to Buttons with 2 states, on and off?</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051933">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051934"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/MrmediamanX/" title="View the profile of MrmediamanX">MrmediamanX</a>
</h4>
<ul class="reset smalltext" id="msg_347051934_extra_info">
<li class="postgroup">Sr. Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/MrmediamanX/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=1458;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 293</li>
<li class="profile">
<ul>
<li><a href="https://mrmediamanx.itch.io/" title="3MX Digital" target="_blank" rel="noopener noreferrer" class="new_win"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/www_sm.gif" alt="3MX Digital" /></a></li>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051934">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051934/#msg347051934" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #3 on:</strong> August 14, 2021, 08:04:45 »</div>
<div id="msg_347051934_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051934">I'm in ... I already have a crap ton of tests which use only one button.<br />I'll most likely end up doing something super simple in the end. <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/undecided.gif" alt=":-\" title="Undecided" class="smiley" /> </div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051934">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051937"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/BasicBoy/" title="View the profile of BasicBoy">BasicBoy</a>
</h4>
<ul class="reset smalltext" id="msg_347051937_extra_info">
<li class="postgroup">Full Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 170</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051937">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051937/#msg347051937" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #4 on:</strong> August 14, 2021, 08:38:38 »</div>
<div id="msg_347051937_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051937">I'm currently thinking a (mono-) rail type game - you're a tank or something moving along a twisty-turny rail surrounded by enemies and you shoot at things. Long press to rotate turret, short press to fire. The usual *RSI inducing stuff. <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/grin.gif" alt=";D" title="Grin" class="smiley" /><br /><br />I have no idea yet if the idea will work well enough in practice.<br /><br />Not an original idea of course, it's bound to have been done before, but what is original nowadays?<br /><br />I'm seriously thinking of adding some extra spice: regardless of how well/badly it performs in this contest, there will be the <em>opportunity</em> to win very modest cash prizes for those that complete the game! Just an idea I'm toying with.<br /><br /><br />* RSI = Repetitive Strain Injury<br /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051937">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051942"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/Qube/" title="View the profile of Qube">Qube</a>
</h4>
<ul class="reset smalltext" id="msg_347051942_extra_info">
<li class="membergroup">Administrator</li>
<li class="postgroup">Hero Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/staradmin.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/Qube/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=4309;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 2798</li>
<li class="blurb">I mostly code at night... Mostly.</li>
<li class="profile">
<ul>
<li><a href="https://www.syntaxbomb.com" title="SyntaxBomb - Indie Coders" target="_blank" rel="noopener noreferrer" class="new_win"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/www_sm.gif" alt="SyntaxBomb - Indie Coders" /></a></li>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051942">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051942/#msg347051942" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #5 on:</strong> August 14, 2021, 10:27:04 »</div>
<div id="msg_347051942_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051942"><div class="quoteheader"><div class="topslice_quote"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051933/#msg347051933">Quote from: MikeHart on August 14, 2021, 06:56:10</a></div></div><blockquote class="bbc_standard_quote">Question: does one feature of a controlling device include an axxis of a Mouse or a Stick on a gamepad, an analog button on a gamepad? Or are we bound to Buttons with 2 states, on and off?<br /></blockquote><div class="quotefooter"><div class="botslice_quote"></div></div>Single on / off state be it a key on a keyboard, click on a mouse, button on a joystick / joypad ( X Y etc ). No analog input for main gameplay.<br /><br />Edit : Just to be clear, you can not use one key and one mouse click. The main game must be assigned to a single on/off input from one device.</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051942">
« <em>Last Edit: August 14, 2021, 10:29:52 by Qube</em> »
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051942_signature">Mac mini ( 2018 / 2020 ), 3 GHz 6-Core Intel Core i5, 16 GB 2667 MHz DDR4, 1TB NVMe, eGPU Radeon Pro 580 8 GB, LG Ultragear 27GL83A-B 27 Inch<br />Mac mini (2020 ), M1 SoC, 8 GB LPDDR4, 512GB NVMe <br />Commodore VIC-20, 1.1Mhz MOS 6502 CPU, 5KB RAM, VIC ( 6560 ) GPU<br /><br />Until the next time.</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051943"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/DaiHard/" title="View the profile of DaiHard">DaiHard</a>
</h4>
<ul class="reset smalltext" id="msg_347051943_extra_info">
<li class="postgroup">Jr. Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 44</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051943">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051943/#msg347051943" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #6 on:</strong> August 14, 2021, 10:29:31 »</div>
<div id="msg_347051943_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051943">I'm torn between two ideas - a space invaders variant, or a "space flight" game with a tumbling spacecraft... BasicBoy, maybe not unlike the "gravity well" games we both wrote a while back...<br /><br />..."Fire when ready!" - or at least when you are facing the right way....</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051943">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051945"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/DaiHard/" title="View the profile of DaiHard">DaiHard</a>
</h4>
<ul class="reset smalltext" id="msg_347051945_extra_info">
<li class="postgroup">Jr. Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 44</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051945">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051945/#msg347051945" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #7 on:</strong> August 14, 2021, 10:31:06 »</div>
<div id="msg_347051945_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051945">So the "line graphics only" constraint is gone? Raises the bar, but makes some things easier...</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051945">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051946"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/BasicBoy/" title="View the profile of BasicBoy">BasicBoy</a>
</h4>
<ul class="reset smalltext" id="msg_347051946_extra_info">
<li class="postgroup">Full Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 170</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051946">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051946/#msg347051946" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #8 on:</strong> August 14, 2021, 10:37:24 »</div>
<div id="msg_347051946_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051946"><div class="quoteheader"><div class="topslice_quote"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051945/#msg347051945">Quote from: DaiHard on August 14, 2021, 10:31:06</a></div></div><blockquote class="bbc_standard_quote">So the "line graphics only" constraint is gone? Raises the bar, but makes some things easier...<br /></blockquote><div class="quotefooter"><div class="botslice_quote"></div></div><br />I'm going to stick with line graphics anyhow <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/smiley.gif" alt=":)" title="Smiley" class="smiley" /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051946">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051948"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useron.gif" alt="Online" />
<a href="https://www.syntaxbomb.com/profile/Aurel/" title="View the profile of Aurel">Aurel</a>
</h4>
<ul class="reset smalltext" id="msg_347051948_extra_info">
<li class="postgroup">Sr. Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="postcount">Posts: 358</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051948">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051948/#msg347051948" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #9 on:</strong> August 14, 2021, 10:55:39 »</div>
<div id="msg_347051948_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051948">I can do that <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/grin.gif" alt=";D" title="Grin" class="smiley" /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051948">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051948_signature">(Y)</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051950"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/Steve%20Elliott/" title="View the profile of Steve Elliott">Steve Elliott</a>
</h4>
<ul class="reset smalltext" id="msg_347051950_extra_info">
<li class="postgroup">Hero Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/Steve%20Elliott/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=4787;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 3245</li>
<li class="blurb">elgol</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051950">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051950/#msg347051950" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #10 on:</strong> August 14, 2021, 11:19:02 »</div>
<div id="msg_347051950_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051950"><div class="quoteheader"><div class="topslice_quote">Quote</div></div><blockquote class="bbc_standard_quote">So the "line graphics only" constraint is gone? Raises the bar, but makes some things easier...<br /></blockquote><div class="quotefooter"><div class="botslice_quote"></div></div><br />I think one restriction is enough, so it was a good move.</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051950">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051950_signature">Windows 10 64-bit, 16Gb RAM, Intel i5 3.2 GHz, Nvidia GeForce GTX 1050 (2Gb)<br />MacOS Big Sur 64-bit, 8Gb RAM, Intel i5 2.3 Ghz, Intel Iris Plus Graphics 640 1536 MB<br />Linux Mint 19.3 64-bit, 16Gb RAM, Intel i5 3.2 GHz, Nvidia GeForce GTX 1050 (2Gb)<br />Raspberry pi 3, pi 4, pi 400, BBC B, C64, ZX Spectrum</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051952"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/hosch/" title="View the profile of hosch">hosch</a>
</h4>
<ul class="reset smalltext" id="msg_347051952_extra_info">
<li class="postgroup">Full Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/hosch/">
<img class="avatar" src="https://www.syntaxbomb.com/avatars/Actors/Bruce_Campbell.jpg" alt="" />
</a>
</li>
<li class="postcount">Posts: 126</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051952">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051952/#msg347051952" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #11 on:</strong> August 14, 2021, 13:24:17 »</div>
<div id="msg_347051952_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051952"><div class="quoteheader"><div class="topslice_quote"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051950/#msg347051950">Quote from: Steve Elliott on August 14, 2021, 11:19:02</a></div></div><blockquote class="bbc_standard_quote">I think one restriction is enough, so it was a good move.<br /></blockquote><div class="quotefooter"><div class="botslice_quote"></div></div>+1 on that. I will enter the competition as well!</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051952">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051953"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/hosch/" title="View the profile of hosch">hosch</a>
</h4>
<ul class="reset smalltext" id="msg_347051953_extra_info">
<li class="postgroup">Full Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/hosch/">
<img class="avatar" src="https://www.syntaxbomb.com/avatars/Actors/Bruce_Campbell.jpg" alt="" />
</a>
</li>
<li class="postcount">Posts: 126</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051953">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051953/#msg347051953" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #12 on:</strong> August 14, 2021, 13:26:02 »</div>
<div id="msg_347051953_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051953"><div class="quoteheader"><div class="topslice_quote"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051937/#msg347051937">Quote from: BasicBoy on August 14, 2021, 08:38:38</a></div></div><blockquote class="bbc_standard_quote">The usual *RSI inducing stuff. <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/grin.gif" alt=";D" title="Grin" class="smiley" /><br /><br />* RSI = Repetitive Strain Injury<br /></blockquote><div class="quotefooter"><div class="botslice_quote"></div></div>I've tested my rough prototype this morning and I can barely click anything anymore <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/laugh.gif" alt=":))" title="Laugh" class="smiley" /></div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051953">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051957"></a>
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/Scaremonger/" title="View the profile of Scaremonger">Scaremonger</a>
</h4>
<ul class="reset smalltext" id="msg_347051957_extra_info">
<li class="postgroup">Full Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/Scaremonger/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=4580;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 234</li>
<li class="profile">
<ul>
<li><a href="http://www.itspeedway.net" title="ITSpeedway - Ramblings of a geek!" target="_blank" rel="noopener noreferrer" class="new_win"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/www_sm.gif" alt="ITSpeedway - Ramblings of a geek!" /></a></li>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051957">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051957/#msg347051957" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #13 on:</strong> August 14, 2021, 15:20:09 »</div>
<div id="msg_347051957_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051957">Sadly, I'm going to have to give this one a miss. <br /><br />I'm working on a BlitzMax language server and building a 3D printer from scratch at the moment, plus I have a holiday booked in the middle and some scheduled weekend overtime..<br /><br />Good luck to everyone who enters.</div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051957">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051957_signature">Follow me at <a href="http://www.itspeedway.net" class="bbc_link" target="_blank">ITSpeedway.net</a>.<br /><br /><a href="https://tekkieramblings.blogspot.com/?m=1" class="bbc_link" target="_blank">Tekkie Ramblings Blog</a></div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
<a id="msg347051958"></a>
<div class="windowbg">
<span class="topslice"><span></span></span>
<div class="post_wrapper">
<div class="poster">
<h4>
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/useroff.gif" alt="Offline" />
<a href="https://www.syntaxbomb.com/profile/3DzForMe/" title="View the profile of 3DzForMe">3DzForMe</a>
</h4>
<ul class="reset smalltext" id="msg_347051958_extra_info">
<li class="postgroup">Hero Member</li>
<li class="stars"><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /><img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/star.gif" alt="*" /></li>
<li class="avatar">
<a href="https://www.syntaxbomb.com/profile/3DzForMe/">
<img class="avatar" src="https://www.syntaxbomb.com/index.php?action=dlattach;attach=110;type=avatar" alt="" />
</a>
</li>
<li class="postcount">Posts: 1286</li>
<li class="profile">
<ul>
</ul>
</li>
</ul>
</div>
<div class="postarea">
<div class="flow_hidden">
<div class="keyinfo">
<div class="messageicon">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/post/xx.gif" alt="" />
</div>
<h5 id="subject_347051958">
<a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/msg347051958/#msg347051958" rel="nofollow">Re: Code a game comp - There Can Be Only ONE - Aug 14th to Oct 24th 2021</a>
</h5>
<div class="smalltext">« <strong>Reply #14 on:</strong> August 14, 2021, 15:25:09 »</div>
<div id="msg_347051958_quick_mod"></div>
</div>
</div>
<div class="post">
<div class="inner" id="msg_347051958">Hmmm, what key to use.....?<br /><br /><div class="quoteheader"><div class="topslice_quote">Quote</div></div><blockquote class="bbc_standard_quote">building a 3D printer from scratch at the moment, </blockquote><div class="quotefooter"><div class="botslice_quote"></div></div>. Sounds fun! Which one? </div>
</div>
</div>
<div class="moderatorbar">
<div class="smalltext modified" id="modified_347051958">
</div>
<div class="smalltext reportlinks">
<img src="https://www.syntaxbomb.com/Themes/OrangeLine/images/ip.gif" alt="" />
Logged
</div>
<div class="signature" id="msg_347051958_signature">happy coding <img src="https://www.syntaxbomb.com/Smileys/SMF-EmojiOne/wink.gif" alt=";)" title="Wink" class="smiley" /><br /><br /><a href="http://www.gpsrunner.co.uk/8bitfun.html" class="bbc_link" target="_blank">http://www.gpsrunner.co.uk/8bitfun.html</a></div>
</div>
</div>
<span class="botslice"><span></span></span>
</div>
<hr class="post_separator" />
</form>
</div>
<a id="lastPost"></a>
<div class="pagesection">
<div class="buttonlist floatright">
<ul>
<li><a class="button_strip_print" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?action=printpage" rel="new_win nofollow"><span class="last">Print</span></a></li>
</ul>
</div>
<div class="pagelinks floatleft">Pages: [<strong>1</strong>] <a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/15/">2</a> <a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/30/">3</a> <span style="font-weight: bold;" onclick="expandPages(this, 'https://www.syntaxbomb.com/index.php?topic=8599.%1$d', 45, 135, 15);" onmouseover="this.style.cursor='pointer';"> ... </span><a class="navPages" href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/135/">10</a> <a href="#top"><strong>Go Up</strong></a></div>
<div class="nextlinks_bottom"><a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=prev#new">« previous</a> <a href="https://www.syntaxbomb.com/game-coding-competitions/code-a-game-comp-there-can-be-only-one-aug-14th-to-oct-24th-2021/?prev_next=next#new">next »</a></div>
</div>
<div class="navigate_section">
<ul>
<li>
<a href="https://www.syntaxbomb.com/forum/"><span>SyntaxBomb - Indie Coders</span></a> »
</li>
<li>