One thing, Use the Counter-Strike Source fish model for fishes, And make them in different sizes and colors with lua.
there is already i think, from the looks on catch files.
how do you get a differnt rod :/ other than just upgrading them?
You don't get a different rod
You have to upgrade to get a "different" rod
Is this part even working? Because i always get "nano" sized catch
[lua]
sv_init.lua 106-142
local function Random(min, max)
max = max*1000000
for i=0, max do
if math.random(max/4) == math.random(max/10) then
return math.max(i/max,min)
end
end
end
local sizes = {
["Nano"] = {0.3, 0.4},
["Micro"] = {0.4, 0.5},
["Mini"] = {0.5, 0.8},
["Small"] = {0.8, 1.1},
["Medium"] = {1.1, 1.4},
["Big-ish"] = {1.4, 1.8},
["Large"] = {1.8, 2.5},
["Huge"] = {2.5, 3.2},
["Gigantic"] = {3.2, 4},
["Humongous"] = {4, 7},
["Colossal"] = {7,10}
}
function fishingmod.GenerateSize()
local size = Random(sizes["Nano"][1], sizes["Colossal"][2])
local name = ""
for key, value in pairs(sizes) do
if size >= value[1] and size < value[2] then
name = key
break
end
end
return size, name .. " "
end
[/lua]
It's supposed to be rare to get larger catch.
[editline]03:45PM[/editline]
Working on a better solution for that right now.
[editline]04:39PM[/editline]
Improved random sizes
Fixed dropped catch instantly hooking itself back on
New code works a lot better
I really like this Add-on.
---
Maybe make the rod so; "Reload" drops catch, and "Use" Sells whats on the hook.
So you don't have to drop what you caught, and push Reload+Use all the time.
You drop catch with reload already, but it wasn't working so well so I fixed it like 3 hours ago.
I love this :D
why is it that i never catch fish?
Hey i love this i was about to make a post about finding this:D how do i add a shark? ive played this 2 days ago and the server disapeard and i was very sad becouse i love this gamemod
Could some one add a version where there is shark and fish and stuffs like that
Good job CapsAdmin
can somebody make a download link to this mod instead of svn? Thanks
sorry for being a complete noob, but how do i get on the server?
Could Any one please put these [url]http://www.garrysmod.org/downloads/?a=view&id=45710[/url] on the catch list thing and i will be very happy.
and if some one could add some more fish'es that would be great i would mabye even donate some cash for the good work :D
I've made a few fish today, a Sawray, and a Gnome.
There's been a whole lot of updates going on lately,
-- Cooking catch makes it worth more
-- Lots of new catches (thanks to CowThing)
-- Improved code
-- Seagulls that will steal your catch and fly away with it (might happen too often atm, I'll tweak this soon if it's very annoying)
-- Variation in sizes
-- Raised prices for rod upgrades. (it's easier to earn money now)
Gif of the seagull in action
[img]http://capsadmin.s3.amazonaws.com/pictures/seagull.gif[/img]
make it so you can impale the seagull on the end of the rod!
Caps. As a personal request can you please add different rod types/baits?
Like possibly some fishing lures, trawling rods, fly fishing, and otherwise? :D
Who has server up with this avesome(amazing, pants creaming, incredibly good) mod?
What is good map for it?
Join our server to test it.
connect capsadmin.servegame.com
in console
Console? What is that secret thing everybody talks about...
Nah, joking. One thing. What is min lenght to get a FISH? I got only moneys( :D) junk and presents for now.
This mod needs custom models and textures :D
[editline]05:24PM[/editline]
[QUOTE=Th3 Gam3r;22569632]Could Any one please put these [url]http://www.garrysmod.org/downloads/?a=view&id=45710[/url] on the catch list thing and i will be very happy.
and if some one could add some more fish'es that would be great i would mabye even donate some cash for the good work :D[/QUOTE]
Ill try :D
Me and a fried are trying out this mod atm, we really like it but we cant think of a good map for it. We are looking for a map that has just a little build space but is still mostly water, and also really deep water. Any suggestions?
Anyway, as requested, here is the Lua files for the shark pack catch :
[url]http://www.garrysmod.org/downloads/?a=view&id=101872[/url]
How do i use the shelf to get bait? it does nothing
Will be nice if you will add something like this in think hooks of some catch (angry baby, aquamine etc.):
[lua]
if self.shelf_stored and !self.dead then self.dead = true end
[/lua]
so it will not try to move inside of shelf
btw this models don't work if you try to use them as bait (radio catch):
[lua]
"models/props_radiostation/radio_antenna01_skybox.mdl",
"models/props_misc/antenna03.mdl",
"models/props/de_dust/du_antenna_A.mdl",
"models/props/de_dust/du_antenna_A_skybox.mdl",
"models/props_hydro/satellite_antenna01.mdl",
[/lua]
and maybe you will add some checks so some catch will not load if server don't have tf2/portal?
Sorry, you need to Log In to post a reply to this thread.