[QUOTE=Death dealer142;20263936]did you download the fix from the first post?
[editline]01:31AM[/editline]
There are some things i need to know about your problem
1. Do you have Half life 2 deathmatch?
2. If you don't did you download the fix?
3. Is there anything else your having problems with, or is it just the harrier?[/QUOTE]
Thanks, fixed now, however I still have 1 issue.
Whenever I bring up the little circle to choose my bombing run area, it's just at my feet and I can hardly move it around, I don't see the map or anything.
Also, great addon! AC130 is the best. And I have a suggestion for the AC130, possibly in the admin menu, some kind of duration for the AC130 would be pretty cool, so I can choose how long I want to stay in it.
I get no firing sounds with the AC130 and my UAV alsoblurs. would post screenie if I knew how. Thanks for reading. [Edit] I found out the sounds don't work in mulitplayer when I host a server but they do in single player hope this helps.
F5 to take screenshots, or take out the Camera tool.
Then, go to your Gmod folder, and go under "screenshots" until you find it.
They are arranged my [map name]_[number], ex, gm_flatgrass1,
for the 105mm cannons on the ac-130, I recommend that you greatly reduce the time for the smoke to go away from the bombs. I dropped a few on gm_bigcity, and the smoke was there for at least 10 minutes.
Somone needs to make a ac-130 enamy npc. So much fun trying to kill one of those XD
I have installed it the way you said and everything but everytime I try to use the killstreaks I have the red error markers at the top corners! please help me! I don't have HL2 Deathmatch but I did exactly what the readme said
I was looking in the UAV weapon to try and remove the comment lines before the holster function, and I found this
[code]//.Owner:GetActiveWeapon()[/code]
Would this be it?
[QUOTE='[CIA] ZOmBine;20268419']I was looking in the UAV weapon to try and remove the comment lines before the holster function, and I found this
[code]//.Owner:GetActiveWeapon()[/code]
Would this be it?[/QUOTE]
no, with the UAV i didn't comment the line out, leave it the way it is, if your having a problem with the UAV aswell, then there is another problem going on.
the line your looking for is
[code]
//self.Owner:StripWeapon(self:GetClass());
[/code]
Remove the // before the line.
I have a unique problem with mine it looks like, the menus work, but the killstreaks dont. when I kill the required amount of npcs for a Killstreak, nothing happens. I have HL2 DM is there a specific HL2 Episode you need for it to work? I've tried every thing except messing with the coding, idk whats wrong with it...
On my server when I try to change the settings it fails, as it just makes me run the commands in the console, rather than the server running them. I'm a superadmin and I get these errors when I try to change settings in the utilities menu
Can't change replicated ConVar mw2_enable_killstreaks from console of client, only server operator can change its value
[editline]06:27PM[/editline]
EDIT: It seems online that nothing works except the UAV
[IMG]http://www.plaatjesupload.nl/bekijk/2010/02/17/1266424647-790.png[/IMG]
Do I have to improve something?
[B]edit:[/B]
Transparent:
[IMG]http://www.plaatjesupload.nl/bekijk/2010/02/17/1266424735-30.png[/IMG]
[B]edit:[/B]
[img]http://img521.imageshack.us/img521/3641/90803807.png[/img]
Looks good in-game, trying to remove your text.
I realy like this and it kicks ass. The ac-130 rocks man well done.
( Some things I think you can add or change )
1. Can you make it so when I use the ac-130 it spawns behind me. I made a army of combine and the plane allways spawns randomly and fly's straight on a big map ( I have not tried this on a small map yet)
2. Can you add them to the weapons menu yet I hate having to respawn to use them again. And sometimes I don't want to have to kill lots of npc's to get the kill streaks if I am going to make a enamy base to invade. I make the base then I can just ac-130 it to peaces without gaining them.
[editline]08:09PM[/editline]
Oh and keep up the good work I like the sounds of the next release.
[editline]08:12PM[/editline]
Just mad a quick idea. For big maps and stufe can you make it so by holding down a or d the ac-130 terns that way so I can circle a building I am trying to constantly pound ?
[img]http://img717.imageshack.us/img717/3457/15864648.png[/img]
Removed text, can't fix position though...
That looks great.
[lua]if not ( CLIENT ) then return end
local KillsRequired = {}
KillsRequired["uav"] = 3; KillsRequired["care_packege"] = 4; KillsRequired["predator_missile"] = 5; KillsRequired["harrier"] = 7; KillsRequired["ac-130"] = 11;
local aquiredKillStreaks = {};
local centerX = ScrW()/2;
local centerY = ScrH()/2
local picturePossitonX = centerX - 1200;
local picturePossitonY = centerY - 400
local width, height;
local curKillIconX = ScrW() - 200;
local curKillIconY = ScrH() - 100;
local playOnce = true;
local lastKillStreak = "";
local streak;
function drawAddedKillStreaks()
streak = LocalPlayer():GetNetworkedString("AddKillStreak");
if streak == "none" || streak == nil || streak == "nil" || lastKillStreak == streak then return end;
streakNum = KillsRequired[streak];
streakNum = streakNum .. " KILL STREAK!"
width, height = surface.GetTextSize(streakNum)
surface.SetTexture(surface.GetTextureID("VGUI/killstreaks/" .. streak))
surface.SetDrawColor(255,255,255,255) //Makes sure the image draws correctly
surface.DrawTexturedRect(picturePossitonX, picturePossitonY, 512, 256)
surface.SetTextColor( 0, 255, 0, 255 )
surface.SetTextPos( ScrW() / 485485742 - width , picturePossitonY + 45654864 + 14865465845 )
surface.DrawText(streakNum )
if playOnce then
playAcquiredSound(streak)
playOnce = false;
end
end
function addHook_AddedKillStreaks()
table.insert(aquiredKillStreaks, LocalPlayer():GetNetworkedString("AddKillStreak"));
playOnce = true;
hook.Add("HUDPaint", "AddedKillStreaks", drawAddedKillStreaks);
timer.Create("AddedKillstreaks_Timer",2,1, removeHook_AddedKillStreaks)
end
function removeHook_AddedKillStreaks()
hook.Remove("HUDPaint", "AddedKillStreaks");
lastKillStreak = streak;
end
function drawAvaliabeKillStreak()
availableStreak = LocalPlayer():GetNetworkedString("AddKillStreak");
str = availableStreak;
if str == nil || str == "nil" || str == "none" then return end
availableStreak = "VGUI/killstreaks/" .. str;
surface.SetTexture(surface.GetTextureID( availableStreak))
surface.SetDrawColor(255,255,255,255) //Makes sure the image draws correctly
surface.DrawTexturedRect(curKillIconX, curKillIconY, 44, 44)
end
function removeUsedKillStreak()
table.remove(aquiredKillStreaks);
end
function playAcquiredSound(soundName)
surface.PlaySound("killstreak_rewards/" .. soundName .. "_acquired" .. LocalPlayer():GetNetworkedString("MW2TeamSound") .. ".wav");
end
function playerDies( victim, weapon, killer )
lastKillStreak = "";
end
usermessage.Hook("RemoveUsedKillStreak", removeUsedKillStreak)
usermessage.Hook("AddKillStreak", addHook_AddedKillStreaks)
hook.Add("HUDPaint", "DrawAvaliabeKillStreaks", drawAvaliabeKillStreak)
usermessage.Hook( "ResetKillStreakIcon", playerDies )[/lua]
How can I fix the position?
[img]http://images1.wikia.nocookie.net/callofduty/images/e/e3/Anim-ac-130_emblem.gif[/img]
[img]http://images3.wikia.nocookie.net/callofduty/images/b/ba/Emblem-Anim-uav.gif[/img]
[img]http://images1.wikia.nocookie.net/callofduty/images/5/56/Anim-harrier.gif[/img]
I'll give you more if and when you need them. (lol had to edit 4 times to get it all right)
Can someone help me with my issue?
Its a bug with the addon itself, not just you.
also sum refrences?:
[img]http://images2.wikia.nocookie.net/callofduty/images/1/1a/C4_Trigger.png[/img]
the Real button
[img]http://images3.wikia.nocookie.net/callofduty/images/3/36/HarrierinMP.jpg[/img]
harrier
[img]http://images2.wikia.nocookie.net/callofduty/images/f/f7/PredatorMissileLaptop.PNG[/img]
preditormissile lappytop
[img]http://images3.wikia.nocookie.net/callofduty/images/9/96/AC-130_MW_Death_From_Above.jpg[/img]
AC-130 (also i know where you can ger an accurate model XD)
Yeah hi I am new to facepunch but about ur killstreaks if u need help with the details of how they work ask me because I have the game for my 360 so I can instantly tell u what happens. (Nuke one of my friends =P)
-Also I have some knowlege (alot) of mapping. So I can make a testing map for u =P epic. (steam name xxxacepilotxxx_the_3rd)
Thanks
-Ace (don't have signature yet)
You don't need a signature, it makes you look dumb when you sign things. That is what your username is for.
And, I don't think he needs a person with MW2, they're not that hard to know what happens.
Also, I hope someone releases a laptop model. That would kick ass.
[QUOTE=Banshee FrieNd;20273343][img]http://images1.wikia.nocookie.net/callofduty/images/e/e3/Anim-ac-130_emblem.gif[/img]
[img]http://images3.wikia.nocookie.net/callofduty/images/b/ba/Emblem-Anim-uav.gif[/img]
[img]http://images1.wikia.nocookie.net/callofduty/images/5/56/Anim-harrier.gif[/img]
I'll give you more if and when you need them. (lol had to edit 4 times to get it all right)[/QUOTE]
Yes i would love to have all of them, the ones i could find were all water marked.
Also i have requested the laptop model, but so far no help on that yet.
I would like the AC-130 model you were talking about
[QUOTE=Banshee FrieNd]
Can someone help me with my issue?
[/QUOTE]
I've had that problem before, but it went away, I'm not sure what causes it, but i will try and fix it
[QUOTE=Saza;20276179]You don't need a signature, it makes you look dumb when you sign things. That is what your username is for.
And, I don't think he needs a person with MW2, they're not that hard to know what happens.
Also, I hope someone releases a laptop model. That would kick a$$.[/QUOTE]
Yeah well I figured but I can tell u how it happens for example is ac-130 I noticed the 25mm bullets hit the ground before the projectile. (Just saying)
But if u need help for those gif's Ill go look thanks
Also LOL Avatar Saza
[editline]04:07PM[/editline]
[QUOTE=Rago;20270150][IMG]http://www.plaatjesupload.nl/bekijk/2010/02/17/1266424647-790.png[/IMG]
Do I have to improve something?
[B]edit:[/B]
Transparent:
[IMG]http://www.plaatjesupload.nl/bekijk/2010/02/17/1266424735-30.png[/IMG]
[B]edit:[/B]
[img]http://img521.imageshack.us/img521/3641/90803807.png[/img]
Looks good in-game, trying to remove your text.[/QUOTE]
Raga here are some pics for ure killstreak displays (They look sick!)
[url]http://images3.wikia.nocookie.net/callofduty/images/2/24/Carepackageicon.png[/url]
[url]http://images2.wikia.nocookie.net/callofduty/images/f/f2/StealthBomber_Icon.png[/url]
Sorry Death Dealer no precision strike one yet (Unless u already have one)
Sorry for dbl posting
Preciscion Airstrike
[url]http://redirectingat.com/?id=629X1198&url=http%3A%2F%2Fimages3.wikia.nocookie.net%2Fcallofduty%2Fimages%2F1%2F1b%2FAnim-precision-airstrike.gif[/url]
Predator
[url]http://images1.wikia.nocookie.net/callofduty/images/2/26/Emblem-Anim-predator-missile.gif[/url]
Stealth Bomber
[url]http://images2.wikia.nocookie.net/callofduty/images/4/42/Emblem-Anim-stealth-bomber.gif[/url]
To my counts those are the only ones u need for next release.
Great add-on, but one question(albeit unrelated): What are those airplane npc's u have that are shown in the video when you open your spawn list? A dl link would be sweet as they look really cool
@Death dealer142
Check your inbox, I have a little gift for you that you will like : )
[QUOTE=Saza;20266832]F5 to take screenshots, or take out the Camera tool.
Then, go to your Gmod folder, and go under "screenshots" until you find it.
They are arranged my [map name]_[number], ex, gm_flatgrass1,[/QUOTE]
I know how to take screen shots, [POST] check your reading next time not trying to be rude.
How did you ever manage to make this? SWEET!
Man! can you reupload with the fixes for the AC-130 and the predator,Because i have no expirience with the lua replacing shit,And do you have to have Mw2 for the textures and sounds to work? because i have none.
Ok i enabled the killstreaks and i get them after killing people and the icons show up. Am i suppose to get a weapon to use them? I dont understand how to make them work. I dont have Half life and I did the fix. Someone please help
[QUOTE=Cagger;20279245]Ok i enabled the killstreaks and i get them after killing people and the icons show up. Am i suppose to get a weapon to use them? I dont understand how to make them work. I dont have Half life and I did the fix. Someone please help[/QUOTE]
Read the README and the first post, type Use_KillStreak in the console
[editline]02:16AM[/editline]
[QUOTE=sacojomomma;20278512]Man! can you reupload with the fixes for the AC-130 and the predator,Because [b]i have no expirience with the lua replacing shit[/b],And do you have to have Mw2 for the textures and sounds to work? because i have none.[/QUOTE]
You don't know how to copy and paste a folder?
Sorry, you need to Log In to post a reply to this thread.