SmileBASIC コミュニティプレイ日記Chickens32 Chickens322016/11/12 10:46:19Why won't this work? It acts as if I'm touching the screen and keeps repeating. What am I doing wrong?3そうだね 5返信プレイ済み2017/11/04 02:43:30に取得
SmileBASIC コミュニティ返信[1]親投稿★ωαггïøř★ Warrior3922016/11/12 11:01Your not finishing you IF THEN statement.0そうだね プレイ済み2017/11/04 02:43:30に取得
SmileBASIC コミュニティ返信[2]親投稿Chickens32 Chickens322016/11/12 11:12I'm using IF THEN ENDIF statements. My ENDIFs are below.0そうだね プレイ済み2017/11/04 02:43:30に取得
SmileBASIC コミュニティ返信[3]親投稿Nathaniel natboy2016/11/12 21:49The "STTM" variable is equal to zero, until you touch the screen. then it increases by 60 units per second until you stop touching the screen. So, instead of using "IF STTM!=1 THEN", you should use "IF STTM>0 THEN". This should fix the problem.0そうだね プレイ済み2017/11/04 02:43:30に取得
SmileBASIC コミュニティ返信[4]親投稿Chickens32 Chickens322016/11/12 22:03O.K. I did that. How do I make it so that when they touch a specific location it performs action?0そうだね プレイ済み2017/11/04 02:43:30に取得
SmileBASIC コミュニティ返信[5]親投稿Nathaniel natboy2016/11/12 23:02Use the same technique for the TX and TY variables. Ex: IF TX<10 AND TY<10 THEN ?10そうだね プレイ済み2017/11/04 02:43:30に取得