Re: Any tips for using Wireshark?

2020-12-18 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Any tips for using Wireshark? Seems i had the very same problem about the interface, Thanks for the cool hint.What i need to do is to filter the capturing by a specific ip address. URL: https://forum.audiogames.net/post/599974/#p599974 -- Audiogames-reflector mailing list

Any tips for using Wireshark?

2020-12-18 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Any tips for using Wireshark? Hi,Is there anyone out there familiar with Wireshark and how to get it to work?The Gui seems only parcially accessible and impossible to navigate.Any tips or tricks is appreciated. URL: https://forum.audiogames.net/post/599958/#p599958 --

Re: Listing an index of files on a page

2020-02-23 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Listing an index of files on a page camlorn wrote:You shouldn't do this through coding.  That's both harder and less secure than it needs to be. Both Apache and Nginx have configurations for this.  I don't know how to turn Apache's on, but Nginxs info is here:

Re: Listing an index of files on a page

2020-02-22 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Listing an index of files on a page Hi,It can be done through coding too.You could have a PHP file listing what is on the specified directory if you need. URL: https://forum.audiogames.net/post/503477/#p503477 -- Audiogames-reflector mailing list

Re: Howto: Run BGT Servers Under Wine In Linux VPS

2019-09-30 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Howto: Run BGT Servers Under Wine In Linux VPS Glad you could get it to work. URL: https://forum.audiogames.net/post/465387/#p465387 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Howto: Run BGT Servers Under Wine In Linux VPS

2019-09-27 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Howto: Run BGT Servers Under Wine In Linux VPS I mean we were running Firefight under Wine on a Centos server; That's pretty much what you need to do to get it running.You don't need to install anything special; Wine and nohup do the trick.Well if you get a Display installed and

Re: notebooks?

2019-09-26 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: notebooks? I use Notepad2.It works pretty neat for me; It has several handy features like URL encode/decode, Converting to lowercase/uppercase, Auto HTML Completion etc.I do most of my coding using that. URL: https://forum.audiogames.net/post/464529/#p464529 --

Re: Howto: Run BGT Servers Under Wine In Linux VPS

2019-09-26 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Howto: Run BGT Servers Under Wine In Linux VPS Hi,In addition to what Kianoosh said (Removing the "show_game_window" function and not using any DLL calls or any speech functions), Running servers written in BGT is very simple; You just need to use nohup command.But how you do

Re: Audo saving your game in BGT?

2019-09-08 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Audo saving your game in BGT? Well, The method i'd use is to setup save points based on a factor like location or maybe mini-level ups, Export the details i'd want to save in to a dictionary, And write it to a file. URL: https://forum.audiogames.net/post/460555/#p460555 --

Re: help with some game coad(bgt)

2019-08-20 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: help with some game coad(bgt) @26 I don't think the problem is for the dlg function. I mean i hope he included it in the part of the code he did not paste here.I've seen clear syntax errors in the code (Which i stated in my previous post).And, If this dlg function is what i know, It

Re: help with some game coad(bgt)

2019-08-20 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: help with some game coad(bgt) Hi,As i stated before, You're going the wrong path asking people to see what's wrong with your code.You may have some cool people helping you out and correcting your code in some points, But you'll be always needing such cool people because you haven't

Re: help with some game coad(bgt)

2019-08-18 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: help with some game coad(bgt) Hi,What i'm reading here has several syntax errors.First, You wouldn't put any If/else (Conditional) statements outside any functions/class constructors.Second, You wouldn't put a semicolon (;) after an if/else (conditional statements/functions.Third,

Re: Bgt, fading sounds in and out

2019-08-13 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Bgt, fading sounds in and out Hi,Your code practically seems right to me.Check if you're running your code in a wrong place. Like what triggers your code and what stops it from being executing.Do note that putting waits in a BGT script causes it it to freeze untill the waiting time is

Re: question regarding packing files in bgt

2019-08-13 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: question regarding packing files in bgt Hi,Keep in mind, Normal packing of data is not a very strong way of protecting it from being stolen (If that's you want to do).I wouldn't say it's possible to prevent data from being stolen, But you may harden the work by taking some extra

Re: Clipboard reading text causes alert not to appear

2019-08-09 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Clipboard reading text causes alert not to appear Hi,In your case, You don't need an input box, Because from what i understand you want to reverse what's stored on your clipboard, So you should cut out that part.And, If i got you correctly about what you want to do (Reversing what's on

Re: Php doesn't like me

2019-07-12 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Php doesn't like me @13:I noticed you forgot to put a semicolon (;) at the end of the first line.Make sure you have no syntax error. URL: https://forum.audiogames.net/post/448475/#p448475 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Php doesn't like me

2019-07-12 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Php doesn't like me @13:I noticed you forgot to put a semicolon (;) at the end of the second line.Make sure you have no syntax error. URL: https://forum.audiogames.net/post/448475/#p448475 -- Audiogames-reflector mailing list Audiogames-reflector@sabahattin-gucukoglu.com

Re: Php doesn't like me

2019-07-06 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: Php doesn't like me Hi,In addition to what Number 9 said, I see your overwriting your "comments.txt" file.Make sure to set "FILE_APPEND" flag to append your comments to the comments.txt file.Otherwise, Your "comments.txt" will be overwritten everytime anyone posts something.Not related

Re: You are visitor number: 140923580912480

2019-03-21 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: You are visitor number: 140923580912480 Hi,Just as a note:You can't use Plus (+) for appending text in PHP. PHP behaves mathematically about it.Dot (.) is the operator sign for appending text in PHP. URL: https://forum.audiogames.net/post/421275/#p421275 -- Audiogames-reflector

Re: list of places to find sounds and music

2019-03-21 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: list of places to find sounds and music Hi,I dare say we all needed such a list.Also, Don't miss Boom library, Best service sound effects librarys, Blastwave sound effects, SoundJay sound effects, Sound rangers sound effects, And SoundPacks.com.Every single part of the content provided

Re: list of places to find sounds and music

2019-03-21 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: list of places to find sounds and music Hi,I dare say we all needed such a list.Also, Don't miss Boom library and Best service sound effects librarys.Good job, And good luck. URL: https://forum.audiogames.net/post/421261/#p421261 -- Audiogames-reflector mailing list

Re: my new 3d map system for BGT, ways faster than you could think of!

2017-11-18 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: my new 3d map system for BGT, ways faster than you could think of! hi there,it is a map system we our selvs use within our games.as long as your game uses a 3d map, it can be used easily.no matter which style your game is in.anyways,hope it has some uses for the comunity. URL:

Re: my new 3d map system for BGT, ways faster than you could think of!

2017-09-28 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: my new 3d map system for BGT, ways faster than you could think of! sure! here it is!http://www.idt-group.ir/sources/example … source.raroh by the way, i've updated the source code and put the required include files. this thing is now using sam tupy's rotation package, along with it's

Re: my new 3d map system for BGT, ways faster than you could think of!

2017-09-28 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: my new 3d map system for BGT, ways faster than you could think of! sure! here it is!http://www.idt-group.ir/sources/example … source.rar URL: http://forum.audiogames.net/viewtopic.php?pid=331153#p331153 ___ Audiogames-reflector mailing

Re: write a variable to a file and read it back in bgt

2017-06-26 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: write a variable to a file and read it back in bgt hi,well if you're coding an online game in BGT, you'd better not use dictionaries, because they're really slow in loading.but here, at post number1:you'd better set number 1 and number 2 to 0 before loading them back from the

Re: making flightGear accessible

2017-02-02 Thread AudioGames . net ForumDevelopers room : Reza . jdp via Audiogames-reflector
Re: making flightGear accessible hi,in my opinion, if we may make a game accessible, why not!let the people try the game themselves and choose the best they like!we'd better to have accessible games as more as possible, and make a large number of them for the people to choose from!as