Re: what's wrong with this bgt code?

2019-02-06 Thread AudioGames . net Forum — Developers room : pool via Audiogames-reflector


  


Re: what's wrong with this bgt code?

I have made these much alert boxes just to ensure that user is going step by step

URL: https://forum.audiogames.net/post/409814/#p409814




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-02-05 Thread AudioGames . net Forum — Developers room : mahdi-abedi via Audiogames-reflector


  


Re: what's wrong with this bgt code?

hias guys sed your coad's problem, i'm here just to say, it have more alert alert alertsif you could put all in one alert, that can be better

URL: https://forum.audiogames.net/post/409591/#p409591




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-24 Thread AudioGames . net Forum — Developers room : pool via Audiogames-reflector


  


Re: what's wrong with this bgt code?

thanks,it worked

URL: https://forum.audiogames.net/post/407173/#p407173




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-23 Thread AudioGames . net Forum — Developers room : Trajectory via Audiogames-reflector


  


Re: what's wrong with this bgt code?

The last sequence of +"" is unnecessary.alert("answer","your answer is"+result);is sufficient.Unless of course you want to add a period at the end of the sentence:alert("answer","your answer is"+result+".");and I don't think that BGT is stupid.It's dated, it needs to be updated to support more than just Windows, but it is a great tool for teaching programming to beginners because it can make you feel that you are accomplishing big things fairly quickly. It's all psychological, but I should think that being able to do something fairly significant like play an audio file or even have a character moving around on a game map with just a few lines is something that helps keep motivation up while learning.If it could run on Mac and supported HRTF it would more or less be cutting edge technology again.

URL: https://forum.audiogames.net/post/407077/#p407077




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : rory-games via Audiogames-reflector


  


Re: what's wrong with this bgt code?

like this:alert("answer","your answer is"+result+"");

URL: https://forum.audiogames.net/post/406903/#p406903




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector


  


Re: what's wrong with this bgt code?

Add one more quuotation mark after the plus sign.

URL: https://forum.audiogames.net/post/406862/#p406862




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : pool via Audiogames-reflector


  


Re: what's wrong with this bgt code?

On line: 11 (46)Line: alert("answer", "your answer is "+PlusResult+");Error: Non-terminated string literal

URL: https://forum.audiogames.net/post/406859/#p406859




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector


  


Re: what's wrong with this bgt code?

BGT is stupid but I will do an exception and help ya with this sshit.Here is the fixed code, and I have commented the lines that I have fixed.void main(){//The definition for a variable is as follows: type space name equals sign value. You forgot to open the brace and you forgot to add semicolon at the end of your statement.. You also need to create a second variable which will hold the result. It will look as followsint plus = random (1, 100);int PlusResult = plus /2;alert("hello", "lets play maths game");alert("lets start", "think about any random number");alert("then", "multiply that number with 2");alert("then", "add "+plus+" to it");alert("then", "divide the product with 2");alert("then", "subtract the number which you thought first time");alert("answer", "your answer is "+PlusResult+");}

URL: https://forum.audiogames.net/post/406843/#p406843




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


Re: what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : nuno69 via Audiogames-reflector


  


Re: what's wrong with this bgt code?

BGT is stupid but I will do an exception and help ya with this sshit.Here is the fixed code, and I have commented the lines that I have fixed.void main(){//The definition for a variable is as follows: type space name equals sign value. You forgot to open the brace and you forgot to add semicolon at the end of your statement.. You also need to create a second variable which will hold the result. It will look as followsint plus = random (1, 100);int PlusResult = plus /2;alert("hello", "lets play maths game");alert("lets start", "think about any random number");alert("then", "multiply that number with 2");alert("then", "add "plus"+ to it");alert("then", "divide the product with 2");alert("then", "subtract the number which you thought first time");alert("answer", "your answer is "+PlusResult+");}

URL: https://forum.audiogames.net/post/406843/#p406843




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : pool via Audiogames-reflector


  


what's wrong with this bgt code?

hello guys,so, I have written a code regarding the program of which I told in my previous post.and, the code is.void main(){int= plus random 1, 100)alert("hello", "lets play maths game");alert("lets start", "think about any random number");alert("then", "multiply that number with 2");alert("then", "add "plus"+ to it");alert("then", "divide the product with 2");alert("then", "subtract the number which you thought first time");alert("answer", "your answer is "plus" /2);}please help me.

URL: https://forum.audiogames.net/post/406836/#p406836




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector


what's wrong with this bgt code?

2019-01-22 Thread AudioGames . net Forum — Developers room : pool via Audiogames-reflector


  


what's wrong with this bgt code?

hello guys,so, I have written a code regarding the program of which I told in my previous code.and, the code is.void main(){int= plus random 1, 100)alert("hello", "lets play maths game");alert("lets start", "think about any random number");alert("then", "multiply that number with 2");alert("then", "add "plus"+ to it");alert("then", "divide the product with 2");alert("then", "subtract the number which you thought first time");alert("answer", "your answer is "plus" /2);}please help me.

URL: https://forum.audiogames.net/post/406836/#p406836




-- 
Audiogames-reflector mailing list
Audiogames-reflector@sabahattin-gucukoglu.com
https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames-reflector