Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Krasher

Pages: 1 ... 69 [70] 71 ... 186
1036
Forum/Website Suggestions / Re: Admin Application Suggestion
« on: April 13, 2010, 05:29:01 PM »
in my opinion it is not the admin application that has to be flawless and big in order to be admin, coolz picks you when youre ready .

well i remeber he said you dont invite yourself, he invites you.

by this i wouldnt take your + and - ratio so seriouosdly, although it deos somewhat determine if you will be chosen or not
Noooo dude

I made this post because I would like to have user feedback on all the bad things about me. Know what I mean?

Having all good feedback doesn't help anyone, I need some negative feedback

1037
Games / Re: MATH GAME -- Frank wins.
« on: April 13, 2010, 04:45:08 PM »

with teh (int(1/x)dx (from 1 to e)) = ? part, youre not even doing taht in school, and neither am i
um, lol?

1038
Games / MATH GAME -- Frank wins.
« on: April 13, 2010, 03:48:24 PM »
(9*(√1,000,000)) + (int(1/x)dx (from 1 to e)) = ?

Figure it out for bonus points.

Winner:
Frank


1039
Ruben and coolz do not count,

Coolz + Ruben = (9*(√1,000,000)) + (5^2) / 25) = (>9000)

1040
Boneyard / Re: E2 blinders in wire build
« on: April 13, 2010, 03:15:04 PM »
it doesnt happen very often but it can be annoying as hell when some asshole decides to put a blinding thing on you or teh whole server.

i currently have very limited way in finding out whose doing it when it happens, but is there a better way on finding out?
Dude, I am sick of this aswell

I have (as you have seen in the Fun Chat E2 I am making.) an E2 script that lets me position a holoEntity on all the players, thus letting me basically manipulate them.

They will regret ever blinding someone in wire. >:D

1041
Community Admin Apps / Re: Kräsher's Admin Application.
« on: April 13, 2010, 01:50:02 PM »
Oh yeah, re-calculated my age. xD

1042
General Chat / Re: Forest assault (RvR)
« on: April 12, 2010, 07:26:33 PM »
I will make an event xD

E2 Showcase xD

Wait I already won, lol.

Maybe,                                         robot wars? *hint hint*

1043
FTW 2 Votes Kräsher, I win kthxbai

1044
Programming / Re: Learning Simple E2 with Kräsher!
« on: April 12, 2010, 07:04:01 PM »
Always try to make your code as clean as possible
Example:
Code: [Select]
@name Tutorial E2 9
@outputs V:vector
interval(10)
Me=owner()
Prop=entity():isWeldedTo()

if(owner()) {Prop:applyForce(($V*10+V)*Prop:mass()) V=Me:pos()+vec(0,0,150) - Prop:pos()}

if(owner():keyAttack1()) {Prop:applyForce(($V*10+V)*Prop:mass()) V=Me:pos()+(owner():eye()*-100000) - Prop:pos()}
To:
Code: [Select]
@name Tutorial E2 9
@outputs V:vector
interval(10)
Me=owner()
Prop=entity():isWeldedTo()

if(owner()) {
    Prop:applyForce(($V*10+V)*Prop:mass())
    V=Me:pos()+vec(0,0,150) - Prop:pos()
}

if(owner():keyAttack1()) {
    Prop:applyForce(($V*10+V)*Prop:mass())
    V=Me:pos()+(owner():eye()*-100000) - Prop:pos()
}

1045
General Chat / Re: Telekinesis E2 -- Krasher
« on: April 12, 2010, 01:55:05 PM »
krasher, i luv's it!
Dude, replace the other one with this version (Version 2). You can drop props with this one and pick other ones up.

1046
General Chat / Re: Telekinesis E2 -- Krasher
« on: April 12, 2010, 01:51:20 PM »
So this is the epic shiz you was talking about o_O
lawl
ya

1047
General Chat / Telekinesis E² (Now in the Adv. Dupe Repository)
« on: April 12, 2010, 01:46:36 PM »
This e2 will be regularly updated in my e2 Repo in Adv. Dupe.
I released it here so people would actually see it. -.-

DO NOT upload to ANY site
DO NOT excessively use this to kill people
DO NOT say you made this
DO NOT steal MY credit for making this E2. I worked hard on it!
DO enjoy this E2, and hopefully learn from it.

Code: [Select]
@name Telekinesis -- By Krasher
@persist E:entity V:vector Timer Array:array
@outputs Gyro:angle

interval(10)

# Angle Variables
T=Timer
Timer=T*1+T
Gyro=(-ang(T,T,T)*1000)

# Verison String
Version=2.6

#Circle Variable
Circle = vec(5,150,0):rotate(0,curtime()*90,0)

# Pop-Up Hints
if(first()){
    hint("Telekinesis v"+Version,5)
    hint("Intructions:",5)
        hint("Right click and hold to hold the prop",5)
        hint("To pick up a different prop, simply right click it",5)
        hint("Left click to throw the prop",5)
        hint("Hold E to make the prop orbit you",5)
    hint("Made by Krasher -- Do not upload without permission",5)
   
    Array[1,string]="|| Tk || Variables Loaded"
    Array[2,string]="|| Tk || Vectors Loaded"
    Array[3,string]="|| Tk || Now using v"+Version+" of Tele.Kinesis"
   
for (I=1,Array:count()) {
    print(Array[I,string])
}
}

###

if(owner():keyAttack2() & owner():aimEntity():owner() == owner()){
    E=owner():aimEntity()
}

###

if(owner():keyAttack2()){
    V=owner():pos()+vec(0,0,65)-(-owner():eye()*105)
    E:applyForce(((-E:pos()+V)*10-E:vel())*E:mass())
    E:applyAngForce(Gyro+$Gyro*5)

}

###

if(owner():keyAttack1()){
    V=owner():pos()+vec(0,0,65)-(-owner():eye()*10000)
    E:applyForce(((-E:pos()+V)*10-E:vel())*E:mass())
}

###

if(owner():keyUse()) {
    V=owner():pos()+Circle+vec(0,0,84)
    E:applyForce(((-E:pos()+V)*10-E:vel())*E:mass())
}

I will be updating this E2 every-time I get a sufficient enough reason to do so.
Feel Free to ask me ANYTHING about this E2, or E2 in general.

1048
Community Admin Apps / Re: Kräsher's Admin Application.
« on: April 12, 2010, 01:06:03 PM »
Krasher i really think you would make a really good admin, props to you if you get it(i think you will lol)

yay 
:D
I cant believe he hasnt yet

win
+1 Karma

1049
Mapping / Re: loz_wind_waker + LoZ GameMode
« on: April 12, 2010, 08:16:49 AM »
Secret stuff is win.
Secret Sayings are win

Pretty much cheat codes >:3

Secret Saying:
"Kräsher's pingaz is like omfg h4x gigantic."

1050
Boneyard / Re: garrysmod.org
« on: April 12, 2010, 08:15:11 AM »

Pages: 1 ... 69 [70] 71 ... 186