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 - kevinminion

Pages: 1 ... 7 8 [9]
121
I didn't watch it.  I think you may be the only one in SB that cares about this.

122
Introduce Yourself / Re: Heya fellas!
« on: July 23, 2015, 10:02:23 pm »
Good for you, man.  I'm an Electrical Engineer and my ME courses were some of my toughest!  Hang in there!

123
Expression 2 (E2) Code / Re: E2 Guide (Wiremod Expression 2)
« on: June 09, 2015, 06:07:06 am »
Ah, that does sound simple.  I'll start using it!

124
Rejected Applications / Re: ProCombat's Moderation Application
« on: May 25, 2015, 09:54:41 pm »
 
He's a good player, I have played with him on other servers previous to BloxGaming as well.
Recommended.

125
Expression 2 (E2) Code / E2 - Show Me The Time
« on: May 24, 2015, 09:58:03 pm »
ADMIN NOTE: This post has been pinned as an example of how to properly share your programs.

Place a EGP v3 HUD  then place this E2 chip.
Wire > Visuals > Screens > EGP v3 - select HUD in the drop down before placing it in the world

Use the Advence Wire Tool to wire the HUD[wirelink] input of the E2 to the [wirelink] of the EGP v3 HUD
Press E (use) on the EGP v3 HUD button to activate it.
As it is, it converts to Eastern Time (USA).
 
Code: [Select]
@name Blox_The_Time
@inputs HUD:wirelink
@outputs
@persist K ScreenHeight ScreenWidth
@trigger
interval(1000) # update every second (1000ms)
if (first() | dupefinished()) {
    ScreenWidth = egpScrW(owner())
    ScreenHeight= egpScrH(owner())
 
    K = 230  # This can be any number 1-300.  If you have other HUD elements, you may need to adjust this
}
TimeHour = time("hour")
TimeMin =  time("min")
TimeSec =  time("sec")
# Convert GMT to EST (12 hour clock)
if (TimeHour < 5) {
    TimeHour = TimeHour + 8
} else {
    TimeHour = TimeHour - 4
}
# Make it look pretty
if (TimeHour < 10) {
    StrHour = "0" + TimeHour
} else {
    StrHour = ""  + TimeHour
}
if (TimeMin < 10) {
    StrMin = "0" + TimeMin
} else {
    StrMin = ""  + TimeMin
}
if (TimeSec < 10) {
    StrSec = "0" + TimeSec   
} else {
    StrSec =  "" + TimeSec
}
# Place the time in the lower left-hand corner
HUD:egpText(K,"Time:  " + StrHour + ":" + StrMin + ":" + StrSec,vec2(10,ScreenHeight - 30))
HUD:egpSize(K,30)

Let me know if you have any questions / suggestions / optimizations!

126
Approved Applications / Re: Another Staff application
« on: May 24, 2015, 08:51:54 pm »
I also give two thumbs up for Catalyst

127
BloxGaming SB3 / Re: E2 Thread
« on: May 16, 2015, 09:03:48 pm »
@bloxgate @Rain
Should I be able to create a new E2 board myself?  I've yet to discover how...
Thanks!

128
Approved Applications / Re: Admin Application
« on: May 11, 2015, 01:28:58 pm »
I don't feel that I've had enough (or any?) playing time with this user to make a decision.

129
BloxGaming SB3 / Re: [Poll] Gorb Invasions
« on: May 05, 2015, 02:59:55 pm »
Man, they are tough on my little ship!  :o

I played against the grobs one night when it was just me, and after the scout I got 2 grob fighters and two mega grobs.  Then when other players joined, I think it jumped up to 10 total grobs, which produced some lag.  Could you please look into whether the ratio of grobs to players can be reduced, or if max # of grobs can be reduced? 

Lots of fun, though!

130
Expression 2 (E2) Code / Re: E2 Guide (Wiremod Expression 2)
« on: April 27, 2015, 09:27:54 pm »
I'd love to see an example of how the @autoupdate works.  I've been meaning to check on that rather than trying to manually version my chips.

131
BloxGaming SB3 / E2 Thread
« on: April 27, 2015, 07:31:18 pm »
I saw that trainjumper put together an e2 tutorial, and I have had some requests for e2 code.  I'd rather post them in a general board rather than to hand it out player-by-player.

132
Approved Applications / Re: Admin Application
« on: April 26, 2015, 06:19:10 am »
For what it's worth, I think Razgriz is a good player. i have been on several times with him and he helps players whether they are newbies or experienced.

133
General Discussion / Re: Let's start a forum game!
« on: April 09, 2015, 08:53:10 pm »
I think mine needs some tweaking  LOL

134
Approved Applications / Re: Staff Application
« on: April 09, 2015, 08:49:55 pm »
Yay!  8)

135
Approved Applications / [Approved] Moderator Application
« on: April 08, 2015, 10:17:17 pm »
  • IGN: Kevin Minion
  • Rank Applying For: Moderator
  • Have you been banned from one of our servers? No
  • Why you are applying?   I'm usually on a few hours a night and for the most part I feel that the players are on there to have fun and build/play fairly.  It has become my favorite server to play on.
  • How can you help the server?  Most of the lag issues I see on the server are prop- and decal-related. Having the ability to clean these up would help the server at times.  I understand most of the concepts of building in your server, thanks to Night Hawks' videos.  I feel that I can get a novice user flying around in a parented, cored craft with Life Support within an hour.  I understand that nurturing the new users is the way to keep Spacebuild alive and interesting.

Pages: 1 ... 7 8 [9]