• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

What you did today v1.0

Status
Not open for further replies.
Level 12
Joined
Aug 31, 2008
Messages
1,121
Woke up extra early. Ate a mini-breakfast
Ran a 10 kilometer race in 0h:47m:45s
Ate a bunch of bagels later.
Got some free flowers.
Had a friend over. Played Mega-Dodgeball (Spiderball)
Made some sweet tracks on Modnation Racers (PS3)
Worked.
Came on hive. Am super hungry and exhaused. =D
 
Level 19
Joined
Oct 15, 2008
Messages
3,231
Do you usually participate in many running competitions, vosty?
Because I'm pretty sure you do:)

PS: I'm really sorry if what I presumed is wrong...
 
Level 1
Joined
Aug 9, 2009
Messages
275
I'm here now :D


I've played some Gmod. Made a particle accelerator and a black hole with the expression 2 chip (if you don't play GMod you won't understand).

But you're not here noaw D:
I actually don't want to talk about what i did today, pvt. business. Government Secrets. If i tell ye all, i've got 2 kill you. 'Nuff said
 

Deleted member 157129

D

Deleted member 157129

Woke up extra early. Ate a mini-breakfast
Ran a 10 kilometer race in 0h:47m:45s
Ate a bunch of bagels later.
Got some free flowers.
Had a friend over. Played Mega-Dodgeball (Spiderball)
Made some sweet tracks on Modnation Racers (PS3)
Worked.
Came on hive. Am super hungry and exhaused. =D

Hmm, how old are you? For my age that's a below average time. :p
 
Level 22
Joined
Dec 31, 2006
Messages
2,216
What?! How can you actually make such powerfull things with that Wiremod chip?! (Yes a bit of-topic but that's really curious!)

You can do almost anything with it ^^

Here's the code for the black hole:

(You should probably decrease the range and maybe set the tick to something else to avoid it from exceeding the tick quota (to prevent servers from crashing)
PHP:
@name Black Hole
@model models/props_phx/cannonball.mdl

#==Constants
Strength = 0.6  #==The strength
Range = 5000   #==The range
#=========

#==Starting timer
runOnTick(10)

#==Finding position of the black hole
This = entity()
ThisPos = This:pos()

#==Picking objects in range
findInSphere(ThisPos, Range)
Entities = findToArray()

#==Initializing loop
I = 1
Size = Entities:count()

while (I<Size) {
    #==Finding the position of each object
    Ent = Entities[I, entity]
    EntPos = Ent:pos()
    
    #Calculating difference between the position of the black hole and the object
    Dif = ThisPos - EntPos

    #==Calculating the distance
    X = Dif:x()
    Y = Dif:y()
    Z = Dif:z()
    Dist = sqrt(X*X+Y*Y+Z*Z)

    #==Calculating gravitational force (THIS IS NOT SUPPOSED TO BE AN ACCURATE FORMULA)
    Power = Strength*Strength / Dist*Dist

    #==Getting the gravitational force as a vector
    Force = (Dif * Power)
    
    #==Applying force to the object    
    Ent:applyForce(Force)

    #==Incrementing I
    I++
}



On-Topic:
Woke up, ate breakfast, played with kitteh and came here.
 
Been looking at this for like ages. What a poobie :3
dog_panda.jpg
 
Level 12
Joined
Aug 31, 2008
Messages
1,121
Do you usually participate in many running competitions, vosty?
Because I'm pretty sure you do:)

PS: I'm really sorry if what I presumed is wrong...

Hmm, how old are you? For my age that's a below average time. :p


I am 14 and three quarters sir.

I have participated in many races (Which means ultimate T-shirt collection) and I practice often. Honestly though, that was the first 10k of my life. I usually only run 5ks, though I haven't done many organizd events since last summer. I am also becoming part of the Freedom (my town) cross country team and the track team next year as a Freshman (9th grade)

Today:
Worked
Ate crappy breakfast
Back to work for short time
drew some concept art for TWIF's contest (!!!!)
Played some tennis (working on being ambidextrous in tennis.)
Played playstation
worked again
played a bit more playstation (rather would have been on hive, but dad is internet hog)
Watched Gmod idiot Box 8 (apparantly I missed 8 before watching 9)
came on hive for short catchup
 

Deleted member 157129

D

Deleted member 157129

Ah, well for your age it is quite impressive! Keep it up.


I've done nothing today, really.. just had the regular shower and I am about to make myself some delicious breakfast with shrimps.
 
Status
Not open for further replies.
Top