Gamestudio Links
Zorro Links
Newest Posts
ZorroGPT
by TipmyPip. 04/23/26 14:23
Z9 getting Error 058
by k_ivan. 04/20/26 15:57
Stooq now requires an API key
by jcl. 04/13/26 09:42
Strange "Alien" Skull created with >Knubber<
by NeoDumont. 04/10/26 18:58
400 free seamless texture pack downl. here !
by NeoDumont. 04/08/26 19:55
AUM Magazine
Latest Screens
Dorifto samurai
Shadow 2
Rocker`s Revenge
Stug 3 Stormartillery
Who's Online Now
1 registered members (Quad), 3,868 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
valino, juergenwue, VladMak, Geir, ondrej
19209 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 3 of 3 1 2 3
Re: Gute Story gesucht. [Re: Wicht] #336427
08/03/10 19:41
08/03/10 19:41
Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
TheShooter Offline OP
User
TheShooter  Offline OP
User

Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
Ahhh danke grin


Staub ist das neue Prime!!

Programming is like sex:
One mistake and you have to support it for the rest of your life.

Aktuelles Projekt: http://thisiswargame.bplaced.net/index.html

A8 Commercial *freu*
Re: Gute Story gesucht. [Re: TheShooter] #336429
08/03/10 20:38
08/03/10 20:38
Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
TheShooter Offline OP
User
TheShooter  Offline OP
User

Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
Also ich hab den Code für den Sniperzoom so:
BMAP* sniper_bmap = "sniper.tga";
PANEL* scope_pan =
{
pos_x = 0;
pos_y = 0;
layer = 2;
bmap = sniper_bmap;
flags = OVERLAY | VISIBLE;

}
function zoom()
{
while(1)
{
if (mouse_right == 1)
{
camera.arc -= time_step * 8;
scope_pan.alpha += 2;
if (camera.arc <= 10)
{
camera.arc = 10;
}
if (scope_pan.alpha >= 45)
{
scope_pan.alpha = 50;
}
wait(1);
}
else
{
camera.arc += time_step * 12;
scope_pan.alpha -= 3;
if (camera.arc >= 60)
{
camera.arc = 60;
}
if (scope_pan.alpha <= 5)
{
scope_pan.alpha = 0;
}
wait(1);
}
}
wait(1);
}






geht das soo??
also es funktioniert, aber ist es aus eurer sicht eine gute möglichkeit??


Staub ist das neue Prime!!

Programming is like sex:
One mistake and you have to support it for the rest of your life.

Aktuelles Projekt: http://thisiswargame.bplaced.net/index.html

A8 Commercial *freu*
Re: Gute Story gesucht. [Re: TheShooter] #336431
08/03/10 20:51
08/03/10 20:51
Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
Rei_Ayanami Offline
Expert
Rei_Ayanami  Offline
Expert

Joined: Feb 2009
Posts: 3,207
Germany, Magdeburg
ja, ist toll laugh

Re: Gute Story gesucht. [Re: Rei_Ayanami] #336558
08/04/10 23:36
08/04/10 23:36
Joined: Mar 2006
Posts: 2,252
Hummel Offline
Expert
Hummel  Offline
Expert

Joined: Mar 2006
Posts: 2,252
Quote:
if (camera.arc <= 10)
{
camera.arc = 10;
}
if (scope_pan.alpha >= 45)
{
scope_pan.alpha = 50;
}

dafür gibts minv bzw maxv wink

Re: Gute Story gesucht. [Re: Hummel] #336650
08/05/10 15:51
08/05/10 15:51
Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
TheShooter Offline OP
User
TheShooter  Offline OP
User

Joined: Jul 2010
Posts: 974
United Arab Emirates, Dubai
oo jo danke grin


Staub ist das neue Prime!!

Programming is like sex:
One mistake and you have to support it for the rest of your life.

Aktuelles Projekt: http://thisiswargame.bplaced.net/index.html

A8 Commercial *freu*
Page 3 of 3 1 2 3

Moderated by  checkbutton, mk_1 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1