Games By This Creator
Favourite games
- Member has no favourite games.
Recently Played Games
Comments By This Member
789 days ago TechnoSkid talked about the game Artificial Intelligence example Hide and Seek Code included
You could make a moster search for the hero, or you could race a computer controlled character to find an object
813 days ago TechnoSkid talked about the game Ecosimple
Stay out of the blue area, thats the cold water
818 days ago TechnoSkid talked about the game Artificial Intelligence example Hide and Seek Code included
To stop the beagleboy from turning around before finding the starfish change these to a large number to remove the home range effect. e.g. Home_range_x=500 Home_range_y=500 To improve the goal finding ability make the refresh time large so that the beagleboy does not check the same areas twice unless he has to. e.g. refresh_time=1000; I guess the refresh map could be used to determine the probability of moving to a particular square (inverse relationship with time since last search)
820 days ago TechnoSkid talked about the game Artificial Intelligence example Hide and Seek Code included
These parameters in the script for the create event of the mouse object can be used for changing the characteristic of the algorithm Speed_parameter=10; //how fast to move See_parameter=3; //how far that the individual to see the goal step_size=64; //the size of the maze grid refresh_time=10; //The time that the search area aray is reset Home_base_x=7 //These are the coordinates for the home base Home_base_y=14 Home_range_x=5 //These are how far from the home base the individual





