ria pc game
fle game engine -
fle game engine -


Balls and holes PC game / Balls and Holes PC игра
Dragonella игра версия 17.09.2020 браузерная /скачиваемая
Многоликий: dress - hordes win/linux/android/html5 игра браузерная /скачиваемая
Today
2 2024 1:21
   ?

megainformatic - Game craft - d3d9 -
Game craft - d3d9 - [ game craft]  [ scv]  [ scv 1 2] [ scv 2 3] [ SCV 5]  [ scv x] 
...

, , , , , photshop, php, c++, , delphi, cms,



-

4.

,
-
0 9.

python.

, php,
-
.

: ( ).

: 10000



1 1 1
2 0 -7
1 2 1
-7 0 1
1 1 1


:

0 5? 0
1 5? 0
2 5? 0
3 5? 0
4 5? 0
6 5? 0
7 5? 0
8 5? 0
9 5? 0


:

5? 1
5 - 1? 1
5 - 2? 1
5 - 3? 1
5 - 4? 1
5 - 5? 1
5 - 6? 1




php.

	//  ( )
	
	$num0 = '111101101101111';
	$num1 = '001001001001001';
	$num2 = '111001111100111';
	$num3 = '111001111001111';
	$num4 = '101101111001001';
	$num5 = '111100111001111';
	$num6 = '111100111101111';
	$num7 = '111001001001001';
	$num8 = '111101111101111';
	$num9 = '111101111001111';
	
	//   
	
	$nums = array($num0, $num1, $num2, $num3, $num4, $num5, $num6, $num7, $num8, $num9);
	
	//#   5 ( )
	
	$num51 = '111100111000111';
	$num52 = '111100010001111';
	$num53 = '111100011001111';
	$num54 = '110100111001111';
	$num55 = '110100111001011';
	$num56 = '111100101001111';
	
	//  
	
	global $weights;
	
	$weights = array();
	
	for ( $i = 0; $i < 15; $i++ )
	{
		$weights[$i] = 0;
	}
	
	//  
	
	global $bias;
	
	$bias = 7;
	
	//    5
	
	function proceed($number)
	{
		global $weights;
		global $bias;
	
		$net = 0;
		
		for ( $i = 0; $i < 15; $i++ )
		{
			$net += intval($number[$i]) * $weights[$i];			
		}		
		
		//   ?
		return $net >= $bias;
	}
	
	//  ,      1
	
	function decrease($number) 
	{
		global $weights;	
	
		for ( $i = 0; $i < 15; $i++ )
		{
			if ( intval($number[$i]) == 1 )
			{
				$weights[$i] -= 1;
			}
		}
	}
	
	//  ,      0
	
	function increase($number) 
	{
		global $weights;
	
		for ( $i = 0; $i < 15; $i++ )
		{
			if ( intval($number[$i]) == 1 )
			{
				$weights[$i] += 1;
			}
		}
	}
	
	/*
	#  
	for i in range(10000):
    #     0  9
    option = random.randint(0, 9)
 
    #     5
    if option != 5:
        #    True//1,   
        if proceed(nums[option]):
            decrease(nums[option])
    #    5
    else:
        #    False//0,  ,    - ,   
        if not proceed(num5):
            increase(num5)
	*/
	
	//   
	srand((double) microtime() * 1000000);
		
	//  
	for ( $i = 0; $i < 10000; $i++ )
	{
		//    0  9
		$option	= rand(0, 9);
		
		//    5
		if ( $option != 5 )
		{	
			//   True//1,   
			if ( proceed($nums[$option]) )
				decrease($nums[$option]);	
		}
		else {
		//   5
		
			//   False//0,  ,    - ,  
			//
			if ( !proceed($num5) )
				increase($num5);
		}
	}
	
	//  
	
	$c = 0;
	for ( $i = 0; $i < count($weights); $i++ )
	{
		echo $weights[$i].' ';
		$c++;
		if ( $c == 3 )
		{
			$c = 0;
			echo '<br>';
		}
	}
	echo "<br>"; echo "<br>";
	
	echo "0  5? ". intval(proceed($num0)); echo "<br>";
	echo "1  5? ". intval(proceed($num1)); echo "<br>";
	echo "2  5? ". intval(proceed($num2)); echo "<br>";
	echo "3  5? ". intval(proceed($num3)); echo "<br>";
	echo "4  5? ". intval(proceed($num4)); echo "<br>";
	//echo "5  5? ". intval(proceed($num5)); echo "<br>";
	echo "6  5? ". intval(proceed($num6)); echo "<br>";
	echo "7  5? ". intval(proceed($num7)); echo "<br>";
	echo "8  5? ". intval(proceed($num8)); echo "<br>";
	echo "9  5? ". intval(proceed($num9)); echo "<br>";
	
	echo "<br>";
	echo "<br>";
	
	echo " 5? ". intval(proceed($num5));  echo "<br>";
	echo " 5 - 1? ". intval(proceed($num51)); echo "<br>";
	echo " 5 - 2? ". intval(proceed($num52)); echo "<br>";
	echo " 5 - 3? ". intval(proceed($num53)); echo "<br>";
	echo " 5 - 4? ". intval(proceed($num54)); echo "<br>";
	echo " 5 - 5? ". intval(proceed($num55)); echo "<br>";
	echo " 5 - 6? ". intval(proceed($num56)); echo "<br>";


.


,
0 9,
.

        -



1, - 0.

1 001001001001001
2 - 111001111100111
3 - 111001111001111
4 - 101101111001001
5 - 111100111001111
6 - 111100111101111
7 - 111001001001001
8 - 111101111101111
9 - 111101111001111

.

	//  ( )
	
	$num0 = '111101101101111';
	$num1 = '001001001001001';
	$num2 = '111001111100111';
	$num3 = '111001111001111';
	$num4 = '101101111001001';
	$num5 = '111100111001111';
	$num6 = '111100111101111';
	$num7 = '111001001001001';
	$num8 = '111101111101111';
	$num9 = '111101111001111';
:
0
!
0
 !


     
  -, godot,
#442  / stranger girl - -
  godot 3.4
: dress
   
     
     
  : dress - hordes 1 4
: dress - hordes  1 - win/linux/android/html5  free ,   ,
: dress - hordes  2 - win/linux/android/html5  free ,   ,
: dress - hordes  3 - win/linux/android/html5  free ,   ,
: dress - hordes  4 - win/linux/android/html5  free ,   ,
   
     
  ,
enterra   java libgdx -
enterra 3d   godot 3.5.1 -
   2023
: dress - hordes win/linux/android/html5 version -
/
   
     
     
     
     
  ,
Kate Ryan - Ella Elle L'a
sexonix
: dress - hordes pc  free  -
: dress -   - parallel reality -  -   Win, Linux,   android
   
     
     
     
  , , 2020 - ,
  gdess 2 -
ciao 2020 -  2020 -
One Way The Elevator     Dr. Perec !!!
   
     
     
  , , , .
          -   ,   ( delphi, c++, html5), ,    ,        -   1  -    14
    2006
  -      -
   
     
     
 
Witches Trainer 1.6 and Innocent Witches 0.1 -      -
Futa in the Police Academy -
gdess c
gdess2
   
     
 
Prince of Persia , , , adventure
Dreams Reality
Little Office Trouble
Tetris
   
     
     
 
Neon Battle Tank 2
Robocop
Robocop (Ocean )
Karateka ,
   
     
     
 
Prehistorik 2 -
    15 -   The Dreik, megainformatic, ,
  Mega game
Black planet   -   ,
   
     
     
 
Teenage Mutant Ninja Turtles II
2 nights
Wolfenstein 3D -
Golden Axe -
   
     
     
  (3), (1)
Aladdin
Surprise! Adlib Tracker 2 (sadt 2)
Lamborghini ,
Risky Woods
   
     
     
 
Black Box horror
  logic
Fire power
Red Ball Forever
   
     
     
 
Teresa - dos
Shadow Knights
-0010.01
0010.01 - !
The Cycles - International Grand Prix Racing
   
     
     
 
Fantastic Dizzy adventure
Ugh!
Budokan: The Martial Spirit - fighting
Vida -
   
     
     
  (3), (1)
 Starcraft
Inspace
Key shield
Team Ninja Unkende 4 - Ninja Gaiden 4   pc
   
     
     
 
Laser Adventures - fast hardcore shooter
      !!!
Ninjuzi -  neo shooter
Plants vs Zombies 3 tower defence
   
     
  ,
Shmupnage - cosmos shooter
Undercat pc
Cold station - shooter, survival
Cut the rope - ,
   
     
     
 
Crown Dungeon 2
dragonella
crush shooter
grievous medical shooter
   
     
     
 
Foxyland 2
Foxyland 2
quidget 2
quidget 2
  ,  !
Pigglet   , english
   
     
  ,
Google Media Grabber -
Anova
anova
A Knots Story
A Knots Story
Sabotage
sabotage
   
     
  ,
24500 .
satellite /  -
ria pc game robocop
star inheritance    zx spectrum
   
     
  ,
ria pc game - pink dreams come true -
/
      24.09.2019
     - megainformatic live chat
5500 .
Game Builder -
   
     
  , ,
     6
      ?
 -
150 .
   
     
  , ,
   -    -   (kk hny) -
  -   -   (kk scp) -
  2013  megainformatic  ru
    -
   
     
  , , cms,
 freeware     / Balls on lif +    / How make a game
250 .
   megainformatic cms admin files  mysql
1250 .
   -     -   (akk hiss)
350 .
   
     
  ,
dream world -  2d    fle game engine - c++  directx 9
  -   (kk kz) -
  -
   fle game engine - Simple game
   
     
  , , ria xxl , fly snow 3d , . -
    -    PC / Balls and Holes - Green Ball Holidays PC game
ria xxl -  4.09.2019
150 .
fle game generator - fle   - fly snow 3d    1.0.3.1  13.12.2016 -
350 .
 
     
  fle game engine -
fle game engine         Windows Directx 9c -
800 .
 PC  / Ria PC game
240 ./
     1   / Balls on Lift Level 1 Run The Lift  0.9.2 05.10.2016 / version 0.9.2 05.10.2016
 
     
  - / megainformatic cms express files -
 /
700 .
1250 .
larry xxl     4.09.2019
150 .
   -04     7.07.2019
500 .
 
     
  Flash, Flash - .
 Flash
 flash
    cms
2500 .
megainformatic cms rs
14000 .
 
     
  (multi lang), , . - (megainformatic cms social), megainformatic cms groupon, keywords gen + , .
500 .
megainformatic cms social
12000 .
megainformatic cms groupon
14000 .
 -

megainformatic.ru/webjob/ - -

 
 

megainformatic.ru/webjob/

megainformatic.ru/webjob/
webjob
template selector
350 .
megainformatic cms express files +  slider
300 .

megainformatic.ru/webjob/ - -

 
     
 

,

megainformatic cms admin
1250 .
 delphi direct x 3d
megainformatic cms seo
550 .
megainformatic cms stat kit
500 .

megainformatic cms admin -

 
     
 
megainformatic cms express
350 .
megainformatic cms e-mailer
5800 .
megainformatic cms e-shop
3000 .
megainformatic cms e-pro
500 .
 
 
 
 
     
     
 

megainformatic cms free - Photoshop

megainformatic cms free
 photoshop
650 .
 photoshop -  !
700 .
 photoshop -
750 .

, Adobe Photoshop. , - GIMP, Corel Photo Paint .

 

 
 
     
 

2d 3d, , !

  ,  !
300 .
Donuts 3D
:

. , , !!! ( , ! ).

 
     
 
 
 
     
 

, : -

  -
350 .
  -
510 .
   ?
fle game engine
:  -

- , , , . - - : -

 
     
 
 
 
     
 

, 3ds max, photoshop, c++, directx, delphi php.

 3ds max
 c++  directx
 php
 3d   delphi directx
500 .
300 .

, .

.

 
     
 
 
 
     
     
 

   , !  delphi directx
  CJ andy -    mp3
 Photoshop free ( )
megainformatic cms express -     php + my sql
400 .

Photoshop free, delphi directx - , !, mp3 - , megainformatic cms express - php + my sql.

 
     
 
 
 
     
 

,

450 .
 Delphi Directx 8.1
   3d studio max
   FL Studio

, delphi directx 8.1 ( 3d ), 3d studio max, - Fruity Loops Studio

 
     
 
 
 
     
     
     
 
megainformatic cms express files

- megainformatic cms express files

megainformatic cms express files - , . mysql. . php, my sql.

- !!!

3 , , .

...

 
 

Registered comments


fle game engine -
fle game engine -


Something: Unexplained 2 captive of desires / :  2
     - 6 , 81 , 220 mp3
Quidget 2    -  , english
megainformatic
megainformatic live chat
X
: 0,1001