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.


Topics - Elecro

Pages: [1] 2 3 4 5 6 ... 15
1
Off Topic / NES Issues
« on: July 25, 2013, 10:38:28 PM »
As most of you guys know, I got a NES a few months ago and kinda raged when the guy didn't get me a PSU. I'm having issues again. I have 2 games ATM, Super Mario Duck Hunt and Golf. I could not get SMDH to work, so I cleaned it thoroughly with a q-tip, still didn't work. I tried Golf, it works but you have to reset a few times. I got SMDH to work today but for some reason it started up on Duck Hunt, I don't have a zapper so I can't play it. Is there some kind of technique or something to get it working at least?

2
Off Topic / GBA SP Issue
« on: July 24, 2013, 07:03:05 PM »
(Yeah, there's another thread of mine on the first page, so what?)

So I have one of the original GBA SP's from 2002. I found it about 6 months ago when cleaning, and started it up. It had juice so I started to play it. I noticed something(s) wrong. For some reason, I have to flick the switch on and off a few times to turn it on. The light instantly turns to red, even though it didn't seem to have a low battery. Everything was fine until today, I tried to charge it and the orange light stays on for about 2 seconds and then goes off. I tried again and again, and to no avail, it still didn't work. I'm really stumped about this because I couldn't find anything similar online. I also forgot to mention that I have been playing it periodically since I found it. I think I last used it in 2008 or 2009. Please help me.

3
Off Topic / Ask Elecro Questions v2
« on: July 23, 2013, 11:31:42 PM »
Yeah, I'm doing this again. Post questions.

Note: I will not answer rude questions.

4
Games / Pikmin 3 is going to be released August 4th
« on: July 23, 2013, 10:54:05 PM »

5
Off Topic / What are your turn offs in a guy/girl?
« on: July 21, 2013, 06:55:52 PM »
Post your turn offs in a guy/girl

Mine are:

-tattoos
-dyed hair
-fat
-smoking
-ugly loving calves
-giant feet
-piercings (ears excludes [unless they have like more than one in each ear])
-skinny girls (I'm talking seeing their loving hip bones and ribs)

6
Off Topic / What should I get for my birthday?
« on: July 19, 2013, 09:32:46 AM »
There are already two things I asked my family for; money and a 3DS.

What should I get with the money? On estimate, I'll probably get at least 120.

7
Off Topic / What the hell is there to do on Tumblr?
« on: July 18, 2013, 07:42:09 PM »
I made an account about a half hour ago and I still can't figure out what to do.

8
Off Topic / SWAT shoots dogs and terrorizes children???
« on: July 07, 2013, 09:47:13 PM »
http://www.youtube.com/watch?v=enb3FHYf4fk

What the forget is this? I'm pretty sure that the police are supposed to stick to their goals. Also, aren't they only authorized to shoot if they feel they are in danger? The dog did no harm and they just shot it. I don't even understand with the child. This is the kind of stuff that pisses me off.

9
Off Topic / Apparently I have testicular cancer, why internet?
« on: July 04, 2013, 12:27:13 AM »
I had a fever today and dark peeing so I looked it up online. WebMD said I had testicular cancer. I will not miss you all :(

10
Games / Post Your Pokemon Teams
« on: July 03, 2013, 09:05:50 PM »
FireRed:

Venusaur Lv.16
Rattata Lv.12
Pidget Lv.12
Butterfree Lv.10
Spearow Lv.7
Mankey Lv.7

thats all I can remember

11
Off Topic / Need help debugging Garry's Mod addon
« on: July 01, 2013, 07:54:40 PM »
Here's my code:

Quote
SWEP.Author = Elecro
SWEP.Contact = "N/A"
SWEP.Purpose = "Throw chairs at people lol"
SWEP.Instructions = "Press the left mouse button and fire!!!"

SWEP.Category = "Chair Throwing Devices"

SWEP.Spawnable = false
SWEP.AdminSpawnable = true

SWEP.ViewModel = "models/weapons/v_RPG.mdl"
SWEP.WorldModel = "models/weapons/w_rocket_launcher.mdl"

SWEP.Primary.ClipSize = -1
SWEP.Primary.DefaultClip = -1
SWEP.Primary.Automatic = true
SWE.Primary.Ammo = "none"

SWEP.Secondary.ClipSize = -1
SWEP.Secondary.DefaultClip = -1
SWEP.Secondary.Automatic = true
SWEP.Secondary.Ammo = "none"

local ShootSound = Sound(Metal.SawbladeStick)

function SWEP:Reload()
end
 
function SWEP:Think()
end

function SWEP:throw_attack (model_file)

   local tr = self.Owner:GetEyeTrack()

   self:EmitSound(ShootSound)
   self.BaseClass.ShootEffects(self)

   //We now exit if this function is not running serverside

   if (!SERVER) then return end
   
   local ent = ents.Create("prop_physics")
   ent:SetModel(model_file)
   
   ent:SetPos(self.Owner:EyePos() + (self.Owner:GetAimVector() * 16))
   ent:SetAngles(self.Owner:EyeAngles())
   ent:Spawn()
   
   local phys = ent:GetPhysicsObject()
   
   if !(phys && IsValid(phys)) then ent:Remove() return end
   
   phys:ApplyForceCenter)self.Owner:GetAimVector():GetNormalized() * math.pow(tr.HitPos:Length(), 3))
   
   cleanup.Add(self.Owner, "props", ent)
   
   undo.Create ("Thrown_SWEP_Entity")
      undo.AddEntity (ent)
      undo.SetPlayer (self.Owner)
   undo.Finish()
end

function SWEP:PrimaryAttack()
   self:throw_attack("models/props/cs_office/Chair_office.mdl")
end

function SWEP:SecondaryAttack()
   self:throw_attack("models/props_c17/FurnitureChair001a.mdl")
end
   
   
//Here we begin with the server and client shi

if SERVER then //Where the init.lua stuff goes.

//Makes sure clientss download the file
AddCSLuaFile("shared.lua")

//How heavy the weapon is
SWEP.Weight = 5

//Allow switching to/from when weapons are picked up
SWEP.AutoSwitchTo = false
SWEP.AutoSwitchFrom = false

elseif CLIENT then //Where cl_init.lua stuff goes

//Name of SWEP, as appearing in the weapon tab in the spawn menu
SWEP.PrintName = "Mr. Chair Thrower"

//Sets where the weapon is found in the switching menu
SWEP.Slot = 3
SWEP.SlotPos = 2

//Drawing ammunition for the weapon
SWEP.DrawAmmo = false

//Sets the crosshair when weapon is deployed
SWEP.DrawCrosshair = false

//Ensures a clean looking notification when a chair is undone, how it works:
//When you create an undo, you specify the ID:
//   undo.Create("Some_Indentity)
//By creating an associated language, we can make the undo notification look better:
//   language.Add("Undone_Some_Identity", "Message")

   language.Add("Undone_Thrown_SWEP_Entity, "Undone Thrown SWEP Entity")

end

Someone told me you could put everything in shared.lua so I did, I tried to put them in the proper places and that didn't work either. I checked over, I didn't see and grammar errors. Could someone help me?

12
Games / Garry's Mod Discussion Thread
« on: June 29, 2013, 08:29:18 PM »
Here's the thread where you discuss things all about Garry's Mod. You can talk about anything from addons and maps.

OT: What if there was a phone mod in CityRP like in GTA IV? If there is, link me please.

13
Off Topic / Sorry for being an ass lately.
« on: June 27, 2013, 09:17:09 AM »
Note: I'm not pleading for attention, this is just a sincere apology from me.

Sorry guys if I've been a real richard lately, I'm just stressed about some real life stuff like high school next year and some personal stuff I don't feel comfortable saying. I'll try my best not to be an ass like I have.

14
Off Topic / Headset issue numero tres
« on: June 23, 2013, 07:29:36 PM »
Yes I know you guys have been seeing various topics about my headset issues. Well I have ANOTHER one. Just starting now, my headset jack has been zapping me (by the way, it has 2 inputs available, jack and USB).  There are no visible wires, I don't know whats making it zapping me.

15
Off Topic / HAHA oh god I love the internet
« on: June 21, 2013, 01:18:35 AM »
bad idea w/e ppl dont have a funny bone

Pages: [1] 2 3 4 5 6 ... 15