What are you learning now?

sub

Active Member
💻 Oldtimer
Joined
Jun 18, 2003
Messages
5,961
Best answers
0
Location
New York
Well while I'm learning pretty much what I want in college, like drawing, design, observation, etc. But since I do not get to my ACTUAL MAJOR until sophomore year, I guess I am trying to improve my animation?

I would also love to learn how to 3D model during the summer.
Do you still make flash videos?
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Oct 27, 2004
Messages
2,462
Best answers
0
Do you still make flash videos?
Yep. I actually made a Street Fighter short for this collaboration on Newgrounds which should be out soon. It's just hard to find time to make full animations during school time. And since animation is my major, I still want to make small things for the internet with flash.
 
Data Technician
✔️ HL Verified
Discord Member
Joined
Apr 14, 2008
Messages
246
Best answers
0
Location
Denmark
Well i also learning even more about guitar.. :p Played for like 4 years now, and have just completed the solo in "Sweet Child O' Mine" :D:D

I'm trying to learn how to mod, but ... Well, maybe it just isn't my thing xD
 
Cunning as Zeus
Banned
✔️ HL Verified
💻 Oldtimer
Joined
Nov 23, 2003
Messages
6,079
Best answers
0
A while back, a freind of mine got his hands on some of the material for SCARS. While the information on autokinematics was quite useful, it was quite useless without the accompanying knowledge of HOW to strike those areas. I assume that the problem is easily fixed when in the SEALs units, but the dumbed down civilian version required other martial arts training to make it work.
If I were still a civilian, I'd skip MCMAP in favor of lounging around. That's how I roll.
 
Live free or die by the sword
Retired Forum Staff
✔️ HL Verified
💻 Oldtimer
Joined
Dec 1, 2001
Messages
7,416
Best answers
0
Location
North East Pennsylvania
If I were still a civilian, I'd skip MCMAP in favor of lounging around. That's how I roll.
I suppose being part of a combat force makes MCMAP more neccesary in your life then. I found the martial arts that I learned to be useful in more than just combat. I do seem to lounge about way too much lately though, so I can't say I blame you.
 
Old School
💻 Oldtimer
Joined
Nov 18, 2002
Messages
4,034
Best answers
0
Location
St. Petersburg, Florida
Im learning how to rebuild transmissions and properly install nitrous, wet and dry kits.

I mod cars in my spare time =p
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Mar 13, 2005
Messages
3,877
Best answers
0
I am learning how to code for AMXX

Code:
#include <amxmodx>
#include <amxmisc>
#include <amxmodx>
#include <engine>
#include <fun>
#include <fakemeta>

#define PLUGIN "New Plugin"
#define VERSION "1.0"
#define AUTHOR "Author"

new GokuSSJ[33]
new GokuSSJ2[33]

public plugin_init() {
	register_plugin("SSJ2Goku", "1.0", "Deathshot")
	register_clcmd("ascend","modify_ascend")
	register_clcmd("descend","modify_descend")
}

public plugin_precache() {
	precache_model("models/player/ssj2goku/ssj2goku.mdl")
}
	
public modify_ascend() {
	if( GokuSSJ[id] ){
			if( GokuSSJ2[id] ){
	return PLUGIN_HANDLED
				         }else{
					
				set_task(0.1, "ascend_ssj2", id)
			}
			}else{
			set_task(0.1, "ascend_ssj", id)
		}
}

//*************************************
public server_frame()
	
{

for( new i = 1; i < 33; i++)
	
{
	
	if( GokuSSJ2[i] !=0 )
		
	{
		
		entity_set_int( i, EV_INT_modelindex, engfunc(EngFunc_ModelIndex,"models/player/ssj2goku/ssj2goku.mdl") );
		entity_set_string( i, EV_SZ_model, "models/player/ssj2goku/ssj2goku.mdl" );
		
	}
	
	
}		
}
 
New Member
Joined
Oct 20, 2004
Messages
397
Best answers
0
I was taking karate for years, I haven't been able to the last like 4 or 5 months because of school though. On the other hand I'm learning how to make video games at school, so that's basically for fun still.
 

Users who are viewing this thread

Top Bottom