Re: what is the problem with this bgt code

2019-10-20 Thread AudioGames . net Forum — Developers room : patrickthepatshit via Audiogames-reflector
Re: what is the problem with this bgt code I wanted to help him out, because I was board and had nothing else to do. URL: https://forum.audiogames.net/post/469699/#p469699 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: what is the problem with this bgt code

2019-10-20 Thread AudioGames . net Forum — Developers room : redfox via Audiogames-reflector
Re: what is the problem with this bgt code lmfao, was trying to see if he could figure it out on his own, but that works too. URL: https://forum.audiogames.net/post/469681/#p469681 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin

Re: what is the problem with this bgt code

2019-10-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: what is the problem with this bgt code And you could also make it a bit more secure like this:void notepad() { string ntitle=v.input("enter the title of your note."); if (ntitle=="") { mainmenu(); } string ntext=v.input("enter the text of your note.&quo

Re: what is the problem with this bgt code

2019-10-20 Thread AudioGames . net Forum — Developers room : Ethin via Audiogames-reflector
Re: what is the problem with this bgt code And you could also make it a bit more secure like this:void notepad() { string ntitle=v.input("enter the title of your note."); if (ntitle=="") { mainmenu(); } string ntext=v.input("enter the text of your note.&quo

Re: what is the problem with this bgt code

2019-10-19 Thread AudioGames . net Forum — Developers room : rory-games via Audiogames-reflector
Re: what is the problem with this bgt code correct, you would want them global. here is the actual correct versionstring ntext;file f;string ntitle;void notepad(){ntitle=v.input("enter the title of your note.");if (ntitle=="") mainmenu();ntext=v.input("en

Re: what is the problem with this bgt code

2019-10-19 Thread AudioGames . net Forum — Developers room : redfox via Audiogames-reflector
Re: what is the problem with this bgt code @3, the same error would occur because of the locally stated variable in the input boxes. URL: https://forum.audiogames.net/post/469594/#p469594 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https

Re: what is the problem with this bgt code

2019-10-19 Thread AudioGames . net Forum — Developers room : patrickthepatshit via Audiogames-reflector
Re: what is the problem with this bgt code Another thing is you don't have to have else and the extra braces going with it.Here is the correct version of you're code.file f;void notepad(){string ntitle=v.input("enter the title of your note.");if (ntitle=="") mainmenu();

Re: what is the problem with this bgt code

2019-10-19 Thread AudioGames . net Forum — Developers room : redfox via Audiogames-reflector
Re: what is the problem with this bgt code Your issue is that the string you created is only alive while that function is alive.Variables come in two fashions: personal and global. Personal isn't the right term for it but I'm tired ok?Personal variables are variables created in the midst

what is the problem with this bgt code

2019-10-19 Thread AudioGames . net Forum — Developers room : bopitmaster34 via Audiogames-reflector
what is the problem with this bgt code Hi guys. So I know that bgt basically doesn't exist, but I am using it anyway. I am making a suite of programs, and rite now, I am trying to make a notepad where it lets you write some text and it puts it in a file in a folder called notes. here

Re: What is the problem with this bgt code

2019-10-05 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: What is the problem with this bgt code this error normally indicates, that curly brackets get messed somewhere.In your case, it's in the main function, just check its bottom boundary. There is one condition with its own codeblock and then immediately other function begins without

Re: What is the problem with this bgt code

2019-10-05 Thread AudioGames . net Forum — Developers room : marko via Audiogames-reflector
Re: What is the problem with this bgt code What is wrong with this code again? Please someone help me quickly. Here is the code and the error:#include "dynamic_menu.bgt"sound bat;sound batkil;sound idi;sound weapon;dynamic_menu menu;tts_voice voice;timer batti;timer apua;int bat_

Re: What is the problem with this bgt code

2019-10-01 Thread AudioGames . net Forum — Developers room : kianoosh via Audiogames-reflector
Re: What is the problem with this bgt code wait(50)? Oh man that will add a big lag. URL: https://forum.audiogames.net/post/465533/#p465533 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo

Re: What is the problem with this bgt code

2019-10-01 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: What is the problem with this bgt code wait(5) will do nicely, though I just fixed his code, I am certaninly not gonna add stuff to it URL: https://forum.audiogames.net/post/465517/#p465517 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https

Re: What is the problem with this bgt code

2019-10-01 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: What is the problem with this bgt code heh, may be I'm embarrassing with it, but I would also add wait(5); or wait(50); to end of the while loop to save cpu.Best regardsRastislav URL: https://forum.audiogames.net/post/465468/#p465468 -- Audiogames-reflector mailing list

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: What is the problem with this bgt code Yeah, that's exactly what I'd have done to that code.I would have done it sometime today anyway, but thank you for doing it sooner, this way I needn't overstress my poor laptop from it's first day in a long period of repair, change components

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : amerikranian via Audiogames-reflector
Re: What is the problem with this bgt code I believe I fixed most of these issues:#include "dynamic_menu.bgt" sound bat; sound batkil; sound idi; dynamic_menu menu; tts_voice voice; timer batti; int bat_hp=100; void main() { bat.load("bat.wav"); batkil.load("batki

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: What is the problem with this bgt code Sorry to say this, but you applyed them wrongly.Wait untill tomorrow and I'll correct your code properly with my computer, so stay tooned. URL: https://forum.audiogames.net/post/465361/#p465361 -- Audiogames-reflector mailing list Audiogames

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : marko via Audiogames-reflector
Re: What is the problem with this bgt code Hello! At 3, sorry, but your tips didn't work. Here is my modified code. The problem i have now, is that the sound won't play at all. Can someone help me?Here is the code:#include "dynamic_menu.bgt"void main(){sound bat;sound batkil;dy

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : bgt lover via Audiogames-reflector
Re: What is the problem with this bgt code Note that I can not provide you with any code example because my computer is mallfunctioning again, so I have to post on my iphone, but if you don't understand my indications below, please wait untill tomorrow when I get my computer back

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : kianoosh via Audiogames-reflector
Re: What is the problem with this bgt code Hi. So you're declaring a timer inside a while loop? That's exactly what you should not do. Of course it won't work because it keeps making the timer everytime it iterates through the loop. So it even doesn't get to 1000. You should declare

Re: What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : kianoosh via Audiogames-reflector
Re: What is the problem with this bgt code Hi. So you're declaring a timer inside a while loop? That's exactly what you should not do. Of course it won't work because it keeps making the timer everytime it iterates through the loop. So it even don't get to 1000. You should declare

What is the problem with this bgt code

2019-09-30 Thread AudioGames . net Forum — Developers room : marko via Audiogames-reflector
What is the problem with this bgt code Hello! I am trying to create a game where you'll have to kill an enemy, and you have 1 minute time to kill it before you die. But my problem is, when i start the game it works fine, but the die function never comes. The sound i set just keeps playing

Re: What is the problem with this?

2019-08-12 Thread AudioGames . net Forum — Developers room : cmerry via Audiogames-reflector
Re: What is the problem with this? Also, the reason your first bit of code fails so badly is because you're calling the tts.speak function inside the while loop. What you'll want to do is call the tts_speak function and speak the text first, then enter the while loop where you check

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : adel . spence via Audiogames-reflector
Re: What is the problem with this? there's no wile loop. that's why it exits URL: https://forum.audiogames.net/post/454883/#p454883 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : cartertemm via Audiogames-reflector
Re: What is the problem with this? Simple addition to post 4, there's no reason you need to be waiting for 100 MS. I've waited no more than 5 MS in my loops, context being an extremely high traffic online game.Remember, the wait function pauses your entire script. Even a small value

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : Rastislav Kiss via Audiogames-reflector
Re: What is the problem with this? Hi there,@1: problem here is, that you're using too long pause between while iterations. 4000 ms, that means the key press will be checked every 4 seconds, and if you don't match them exactly with the press, it won't catch it.As an experiment, try to hold

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : marko via Audiogames-reflector
Re: What is the problem with this? I tried to fix it, but it will not work. After i choose the start option, it speaks the thing, but after that, it exits! Please someone help me, what am i doing wrong? Here is the code:#include"dynamic_menu.bgt"void main(){alert("hello

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : cat via Audiogames-reflector
Re: What is the problem with this? this game is very crazy, wait are you say press a key it will do nothing? Try to create dlg.bgt, or DLG player BGT URL: https://forum.audiogames.net/post/454749/#p454749 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : cat via Audiogames-reflector
Re: What is the problem with this? this game is very crazy, wait are you say press a key it will do nothing? Try to create dlg.bgt, or DLG player BGT? URL: https://forum.audiogames.net/post/454749/#p454749 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin

Re: What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : cat via Audiogames-reflector
Re: What is the problem with this? this game is very crazy, wait are you say URL: https://forum.audiogames.net/post/454749/#p454749 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com https://sabahattin-gucukoglu.com/cgi-bin/mailman/listinfo/audiogames

What is the problem with this?

2019-08-11 Thread AudioGames . net Forum — Developers room : marko via Audiogames-reflector
What is the problem with this? Hello! I am working on a bgt choose story game. The game runs just fine, but when i press a key it will do nothing, and the voice keeps speaking. Here is the code:#include"dynamic_menu.bgt"void main(){alert("hello you","This game i

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-14 Thread AudioGames . net Forum — General Game Discussion : Honk via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Hi Pranam,I don't think paying a reasonable price for a well made game is the problem here. The problem is paying way to much for worthless content.Writing the code for that mount and designing its picture (if any) probably took

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-14 Thread AudioGames . net Forum — General Game Discussion : pranam via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Hi,Well, I wasn't able to understand any post made by snow, but yes, I have gotten the gist and here are my points:Developers will search every way possible to get money from their audience. Why? Because they have put their time

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-14 Thread AudioGames . net Forum — General Game Discussion : Vazbol via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? I think he's referring to milestone rewards on donations.  It's more like if you donated $4500, you have an option to unlock a mount.  Surprisingly, there's a few games that do such a thing, especially in the mud community (iron

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-14 Thread AudioGames . net Forum — General Game Discussion : darren via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? i don't agree with pay to win. pay to play i don't mind. lol just look at GTA for example. now there's a real example of pay to win. URL: https://forum.audiogames.net/post/405253/#p405253 -- Audiogames-reflector mailing

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-13 Thread AudioGames . net Forum — General Game Discussion : pranam via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Hi,Well, I wasn't able to understand any post made by snow, but yes, I have gotten the gist and here are my points:Developers will search every way possible to get money from their audience. Why? Because they have put their time

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-13 Thread AudioGames . net Forum — General Game Discussion : darren via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? i don't agree with pay to win. pay to play i don't mind. lol just look at GTA for example. now there's a real example of pay to win. URL: http://forum.audiogames.net/post/405253/#p405253 -- Audiogames-reflector mailing

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-13 Thread AudioGames . net Forum — General Game Discussion : Vazbol via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? I think he's referring to milestone rewards on donations.  It's more like if you donated $4500, you have an option to unlock a mount.  Surprisingly, there's a few games that do such a thing, especially in the mud community (iron

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-13 Thread AudioGames . net Forum — General Game Discussion : snow via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? ok that's linyunagain i don't know what it be translatedNPC xiaoshuang,when you paied 3 CNY, you have the option exchange pet xiaoshuang, otherwise, it will show up, but clip it will be no effect.mount linzi, go to NPC

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-13 Thread AudioGames . net Forum — General Game Discussion : assault_freak via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Show me which mount and which pet you need to pay that money for... unless you mean that if you pay $4500 USD you will automatically unlock it in which case, where in the game does it say that? And who do you think pays

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : snow via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? no, i mean, on linyun, you must pay like 4500 usd for a special mount and pet, it's a data that game itself counting how much did you spend on there, rotk also have this kind of system.after searching, 1usd=6.7CNY, so you can

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : snow via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? no, i mean, on linyun, you must pay like 4500 usd for a special mount and pet, it's a data that game itself counting how much did you spend on there, rotk also have this kind of system.@darki know your means,if an item not give

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : assault_freak via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? The most expensive purchase on Lingyun is around 30 USD. There definitely are numbers stted here that are lost in translation, especially because we are talking about online rpgs from China and most of the people who play them

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : Honk via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Actually I don't really believe in this particular numbers either.But as I already mentioned: those micro transaction heavy games are buying into human adictive behavior and thus are already considered to be ruled by gam bling

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : smoothgunner via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? these figures on how much a player is spending on a rpg just can't be real.a few times in the post he put how much currency will translate into American dollars, but it seems like in a lot of spots that translation wasn't

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : connor142 via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? It's just how the industry has evolved. People tried micro transactions, and realised they work. Now every game either does those, or gives you regular dlc that you have to pay for. But holy shit, someone spent $1 on rotk

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : Honk via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Hi Snow,First of all: the game industry is just that, an industry. Especially nowadays lots of big companies realized how much money you can make with games. And so they will.Most prizing decisions are not based on "

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : Dark via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? Hmmm, you say  four thousand us dollars?  I can't imagine any online rpg with those sorts of items. The practices in Alteraeon actually cost 250 skill points,that is 2.5 dollars and you don't have to buy one single practice

Re: Online RPG, unfair and unbalance, what made the problem?

2019-01-12 Thread AudioGames . net Forum — General Game Discussion : 拓海 via Audiogames-reflector
Re: Online RPG, unfair and unbalance, what made the problem? I have heard that the developed countries in the West are very wealthy, and a very ordinary job can have a good income, so people don't have to use games to make money.In fact, a group of people playing rotk will not be so

Online RPG, unfair and unbalance, what made the problem?

2019-01-11 Thread AudioGames . net Forum — General Game Discussion : snow via Audiogames-reflector
Online RPG, unfair and unbalance, what made the problem? so,after the toplic of dreamland, return of the king, and other online RPGs, including mud or moo are only a few, cause the audio gamers only have few choose.but, did you notice that many games, expecially audio RPGs  , have