• Zoeys LUA Hl2 Weapons Update
    46 replies, posted
[QUOTE=|FlapJack|;23600519][url=http://www.facepunch.com/showthread.php?t=943541]You really think I'm dumb enough to make accusations without proof?[/url][/QUOTE] AND SO THE CLOUDS PART AND THE LIGHT REVEALS THE TRUTH! gee that was easy :P... Not saying your dumb, I'm saying that dumb is almost a norm... lol /goes back and reads the whole threard Holy hopping jelly beans in a barrel of apples from australia shipped through austria, and california to hell!
What does it fucking matter, Seriously? I don't care what he, she, it is... That shouldn't matter when it comes to SWEPS...
[QUOTE=Siminov;23603746]What does it fucking matter, Seriously? I don't care what he, she, it is... That shouldn't matter when it comes to SWEPS...[/QUOTE] You don't, the kiddies above going "Why didn't you add me OMG GURL" do.
[QUOTE=|FlapJack|;23616499]You don't, the kiddies above going "Why didn't you add me OMG GURL" do.[/QUOTE] And you start to suddenly care about every single retarded 12 year old kid in the world just because your friend was involved in a stupid relationship with apparently a MAN. Seriously, lay this shit off already. Let Him/Her/It be.
I don't even know FPtje or Wizey. The fact is: Wizey is a guy. That fact won't change, I will repost it as much as I like.
[QUOTE=|FlapJack|;23616561]I don't even know FPtje or Wizey. The fact is: Wizey is a guy. That fact won't change, I will repost it as much as I like.[/QUOTE] So you basically shitpost. In every thread. It's as if you SEARCH all of FP for any thread or post mentioning Zoey and try to change their beliefs. Face it, nobody is perfect, and both FPtje and Wizey failed.
[QUOTE=loled;23616592]So you basically shitpost. In every thread. It's as if you SEARCH all of FP for any thread or post mentioning Zoey and try to change their beliefs. Face it, nobody is perfect, and both FPtje and Wizey failed.[/QUOTE] So basically Its as if This way of typing Is rather cool Anyway, no. I post the truth when I see people posting saying "OMG WIZEY IS A GIRL ADD ME PLEASE" to save them the embarrassment of falling into that trap. I find it lame when someone acts as a girl, and when people suck up to girls on the internet because they're incapable of getting a girlfriend off the internet.
[QUOTE=|FlapJack|;23616618]So basically Its as if This way of typing Is rather cool Anyway, no. I post the truth when I see people posting saying "OMG WIZEY IS A GIRL ADD ME PLEASE" to save them the embarrassment of falling into that trap. I find it lame when someone acts as a girl, and when people suck up to girls on the internet because they're incapable of getting a girlfriend off the internet.[/QUOTE] Let them fall into the trap. If they are as stupid as to start a relationship on the internet, let them suffer the same fate FPtje and other suffered. You can't save stupid people.
[QUOTE=Sgt.Specopps117;23600645]AND SO THE CLOUDS PART AND THE LIGHT REVEALS THE TRUTH! [B]gee that was easy :P...[/B] [B]Not saying [I]your[/I] dumb, I'm saying that dumb is almost a norm... lol[/B] /goes back and reads the whole threard [B]Holy hopping jelly beans in a barrel of apples from australia shipped through austria, and california to hell![/B][/QUOTE] :irony:
[QUOTE=|FlapJack|;23616561]I don't even know FPtje or Wizey. The fact is: Wizey is a guy. That fact won't change, I will repost it as much as I like.[/QUOTE] Does, it matter, NO. Why should you care what gender a person is, especially when you will probably never see them in real life.
Look the Gender is beside the point The argument is about how code was stolen etc etc etc.
that thread has no proof outside of what that guy says, he doesn't post chatlogs, audio recording or anything Not to mention he says he is posting all of that cause he is butthurt. Which leads to me to believe Fptje is just a butt hurt baby that got his heart broken by a girl over the internet and tried to make her look bad. [editline]07:52PM[/editline] oh and if it is true, then FPTje is a fucking idiot.
[QUOTE=Sunnday3;23631482]Look the Gender is beside the point The argument is about how code was stolen etc etc etc.[/QUOTE] So people who use madcows and Rcs as a base are stealing code too...
[QUOTE=Siminov;23633246]So people who use madcows and Rcs as a base are stealing code too...[/QUOTE] You're clearly an idiot. There's a difference between defining a base, and copy/pasting code from someone else's weapon.
[QUOTE=|FlapJack|;23649954][B]You're clearly an idiot.[/B] [/QUOTE] I clearly don't give a shit.
lol guys check out mah weapons base i just made hurr hurr i copied some from the cs base so i am clear an idiot [lua] if SERVER then AddCSLuaFile("shared.lua"); AddCSLuaFile("cl_init.lua"); SWEP.Weight = 5; SWEP.AutoSwitchTo = false; SWEP.AutoSwitchFrom = false; end SWEP.Author = "Drew P. Richard"; SWEP.Contact = ""; SWEP.Purpose = ""; SWEP.Instructions = ""; SWEP.Category = "War"; SWEP.Spawnable = false; SWEP.AdminSpawnable = false; SWEP.Primary.Sound = Sound("Weapon_AK47.Single"); SWEP.Primary.Recoil = 1.5; SWEP.Primary.Damage = 40; SWEP.Primary.NumShots = 1; SWEP.Primary.Cone = 0.02; SWEP.Primary.Delay = 0.15; SWEP.Primary.ClipSize = -1; SWEP.Primary.DefaultClip = -1; SWEP.Primary.Automatic = false; SWEP.Primary.Ammo = "none"; SWEP.Secondary.ClipSize = -1; SWEP.Secondary.DefaultClip = -1; SWEP.Secondary.Automatic = false; SWEP.Secondary.Ammo = "none"; SWEP.WeaponType = "rifle"; function SWEP:Initialize() self:SetWeaponHoldType(self.HoldType); self.Weapon:SetNetworkedBool("Shoulder",false); end function SWEP:Reload() self.Weapon:DefaultReload(ACT_VM_RELOAD); end function SWEP:Think() if !self.Owner:IsPlayer() then return; end; if self.Owner:KeyDown(IN_SPEED) and self.Owner:GetVelocity():Length() > 1 then if self.WeaponType == "pistol" then self:SetWeaponHoldType("normal"); else self:SetWeaponHoldType("passive"); end else self:SetWeaponHoldType(self.HoldType); end end function SWEP:PrimaryAttack() self.Weapon:SetNextSecondaryFire(CurTime() + self.Primary.Delay); self.Weapon:SetNextPrimaryFire(CurTime() + self.Primary.Delay); if !self:CanPrimaryAttack() then return; end; self.Weapon:EmitSound(self.Primary.Sound); self:CSShootBullet(self.Primary.Damage,self.Primary.Recoil,self.Primary.NumShots,self.Primary.Cone); self:TakePrimaryAmmo(1); self.Owner:ViewPunch(Angle(math.random(-0.2,-0.1) * self.Primary.Recoil,math.random(-0.1,0.1) * self.Primary.Recoil,0)); self.Weapon:SetNetworkedFloat("LastShootTime",CurTime()); end //This taken from CS weapon base: function SWEP:CSShootBullet( dmg, recoil, numbul, cone ) numbul = numbul or 1 cone = cone or 0.01 local bullet = {} bullet.Num = numbul bullet.Src = self.Owner:GetShootPos() // Source bullet.Dir = self.Owner:GetAimVector() // Dir of bullet bullet.Spread = Vector( cone, cone, 0 ) // Aim Cone bullet.Tracer = 4 // Show a tracer on every x bullets bullet.Force = 5 // Amount of force to give to phys objects bullet.Damage = dmg self.Owner:FireBullets( bullet ) self.Weapon:SendWeaponAnim( ACT_VM_PRIMARYATTACK ) // View model animation self.Owner:MuzzleFlash() // Crappy muzzle light self.Owner:SetAnimation( PLAYER_ATTACK1 ) // 3rd Person Animation if ( self.Owner:IsNPC() ) then return end // CUSTOM RECOIL ! if ( (SinglePlayer() && SERVER) || ( !SinglePlayer() && CLIENT ) ) then local eyeang = self.Owner:EyeAngles() eyeang.pitch = eyeang.pitch - recoil self.Owner:SetEyeAngles( eyeang ) end end SWEP.NextSecondaryAttack = 0; function SWEP:SecondaryAttack() if self.NextSecondaryAttack > CurTime() then return; end; self.NextSecondaryAttack = CurTime() + 0.3; self.Weapon:SetNetworkedBool("Shoulder",!self.Weapon:GetNetworkedBool("Shoulder",false)); end function SWEP:OnRestore() self.NextSecondaryAttack = 0; end [/lua] [lua] //Some stuff in this file taken from CS base... include("shared.lua"); SWEP.DrawAmmo = true; SWEP.DrawCrosshair = false; SWEP.ViewModelFOV = 82; SWEP.ViewModelFlip = true; SWEP.CSMuzzleFlashes = true; surface.CreateFont("csd",ScreenScale(30),500,true,true,"CSKillIcons"); surface.CreateFont("csd",ScreenScale(60),500,true,true,"CSSelectIcons"); function SWEP:DrawWeaponSelection(x,y,wide,tall,alpha) draw.SimpleText(self.IconLetter,"CSSelectIcons",x + wide / 2,y + tall * 0.2,Color(255,210,0,255),TEXT_ALIGN_CENTER); draw.SimpleText(self.IconLetter,"CSSelectIcons",x + wide / 2 + math.Rand(-4,4),y + tall * 0.2 + math.Rand(-14,14),Color(255,210,0,math.Rand(10,120)),TEXT_ALIGN_CENTER); draw.SimpleText(self.IconLetter,"CSSelectIcons",x + wide / 2 + math.Rand(-4,4),y + tall * 0.2 + math.Rand(-9,9),Color(255,210,0,math.Rand(10,120)),TEXT_ALIGN_CENTER); end function SWEP:GetViewModelPosition(pos,ang) //This is a third person gamemode, therefore we do not need this. end function SWEP:DrawHUD() local x = ScrW() / 2.0; local y = ScrH() / 2.0; local scale = 10 * self.Primary.Cone; local LastShootTime = self.Weapon:GetNetworkedFloat("LastShootTime",0); scale = scale * (2 - math.Clamp((CurTime() - LastShootTime) * 5,0.0,1.0)); surface.SetDrawColor(0,255,0,255); local gap = 40 * scale; local length = gap + 20 * scale; surface.DrawLine(x - length,y,x - gap,y); surface.DrawLine(x + length,y,x + gap,y); surface.DrawLine(x,y - length,x,y - gap); surface.DrawLine(x,y + length,x,y + gap); end [/lua]
can someone upload this to file please this sounds awsome but im having problems with gmod :(
Sorry, you need to Log In to post a reply to this thread.