How to Make a Special Mouse created by Ansman
Category: Other
Rated 3.0 by 16 members. Played 173 times.
1 of 1
Rate this game
Added: 29 October 2007
Created by: Ansman
Version: 0
Game description: This shows you how to create a coolmouse please use it in your own games feel free to copy the codes
Reviews
-
Overall Score
-
Graphics
-
Sound
-
Gameplay
-
Story
-
Interface
This Game Has No Reviews.







QuantumGames said 289 days ago
Report to Staff
this isn't "script" its the most basic actions. Want to see script,
d3d_transform_set_identity()
d3d_transform_set_rotation_axis(x,y,depth,direction)
if (keyboard_check(vk_up)=1)
{d3d_transform_set_rotation_z(direction)}
{ draw_set_color(c_yellow)
d3d_primitive_begin(pr_trianglelist)
//1
d3d_vertex(x+8,y,depth+15)
d3d_vertex(x+8,y+3,depth+6)
d3d_vertex(x+9,y,depth+9)
//2
d3d_vertex(x+8,y,depth+15)
d3d_vertex(x+8,y+3,depth+6)
d3d_vertex(x+6,y,depth+9)
thats not even half of it.