[QUOTE=RazorOfDeath]Domsaleo and Find Me, you do know that fighting is probably the best way to get yourselves banned, right? Both of you are immature if you are fighting over this. I take no sides over who is right or wrong.
Love the gamemode! :D[/QUOTE]
To be honest man i don't have anything against him he was just cussing me out so i revolted but you know what i'm with you.
Good very good gamemod
Hey, i be this has been answered before but How do you make people VIP, gold member, silver, Admin, or owner? i can't figure anything out lol :(
I think the script still needs altering a bit before we can use it on our servers; it still has donation instructions to donate to find me, and he's still set as the server owner.
Ok, I really hope that these ideas will be added to it because I think it would really improve the gameplay.
- Players are allowed to actually spectate, instead of having to either 2nd person or first person a player.
- Players can bet on who wins. This would really balance the people, because once a person starts winning, they keep winning. If they were able to bet on, say, the person who always wins, they would get more money and beable to actually fight that person and his uber ship instaed of dieing instantly.
- Players are allowed to team up with other people, and if they win the team splits up the money.
Hope hese are added! :D
I think it's great.
What would be possibly good is a betting system (a little like "!bet t all" from CS:S)
Here's a warning though. Don't change it too much because the same people that bash RP for restricting freedom will come on here and say "It was better before when we could weld to each other's boats" etc
I think if a betting system was implented then we should have maximum bet amount - maybe 20% of your cash?
[QUOTE=Yoshi_last]Why, it's too hard to make money now, and the freakin server keeps on crashing so we loose even more money![/QUOTE]
Team up with a buddy and get on his boat. I was actually the last guy alive when I teamed up. I got on top of my buddy's remains of his boat. It rose my money from $7 to $5000. Another way is to spawn one of those flat vending machine things (those float pretty well) and get on top saying "Let me earn some money just sitting here. I won't shoot." Of course after it's just you and one other boat, you will get shot at. But by then you'll get some money.
Also, here's a tip. Make it so that taking out one prop won't totally fuck you up. I made a ship so that to sink me, you had to shoot out a BUCH of barrels below me and tip me over. After this boat was torn apart, I swam to the remains of another boat and got on it and won the game.
And you have control over the ropes, too. Press R at a prop and ropes will come undone. I used that as a signal to a rope spammer as "No, pal. Not gonna let you do that."
[QUOTE=Unib5]I think if a betting system was implented then we should have maximum bet amount - maybe 20% of your cash?[/QUOTE]
Sometimes it's too easy to tell who's gonna win.
Maybe when there are 4 players left, betting ends until the winner of the round is declared. And Unib5 is right, there shouldn't be the possibility to make more money betting than winning :)
Could we have the ability to mute players from text chat and gag players from voice in the admin panel please? I've found a few cases where that could be very useful.
Thanks.
Also, Grenades. Grenades would be perfect! (Thanks Unib5 for the weapon code there!)
!votegag
Haha, anyway, epic mod, and even more epic fun.
Oh, and a crowbar for up close battles!!! I can see myself boarding an enemy ship, and whacking away at the parts of it, then swimming back to my team's boat.
I don't know if the gamemode comes with built in prop protection, but every server allows people to rope other peoples boats to the world, its incredibly stupid. Maybe you should think about bundling a prop protection with it(if there isn't one)?
[QUOTE=Sc00by22]I don't know if the gamemode comes with built in prop protection, but every server allows people to rope other peoples boats to the world, its incredibly stupid. Maybe you should think about bundling a prop protection with it(if there isn't one)?[/QUOTE]
I got problems hooking the tools protection function an said screw it and put it in init.lua with GM:. So if you want to fix it do what I have below.
Find this code in the file init.lua:
[lua]
BTools = {
"camera", "dynamite", "emitter", "example", "eyeposer",
"faceposer", "finger", "hoverball", "ignite", "inflator",
"leafblower", "magnetise", "pulley", "rtcamera", "spawner",
"statue", "turret", "lamp", "light",
}
STools = {
"ballsocket_adv", "material", "paint", "physprop",
"wheel", "colour", "nail", "thruster", "remover"
}
function GM:CanTool(pl, tr, tool)
if table.HasValue(BTools, tool) || table.HasValue(STools, tool) then
if table.HasValue(BTools, tool) then
if pl:SteamID() == FindMe || pl:SteamID() == FindMe1 then
return true
else
return false
end
end
if tr.Entity:IsWorld() then
return false
elseif !tr.Entity:IsValid() then
return false
elseif tr.Entity:GetNetworkedEntity("Owner") != pl then
return false
else
if table.HasValue(STools, tool) then
if pl:IsAdmin() then
return true
else
if tool == "remover" then
pl:ChatPrint("Use the \"Remover Tool\" to remove props, this is the remover(Admins only)")
return false
else
pl:ChatPrint("This tool is vip+ only, check the donations page in the Q menu on how to get it.")
return false
end
end
end
end
else
return true
end
end
[/lua]
And replace it with this:
[lua]
BTools = {
"camera", "dynamite", "emitter", "example", "eyeposer",
"faceposer", "finger", "hoverball", "ignite", "inflator",
"leafblower", "magnetise", "pulley", "rtcamera", "spawner",
"statue", "turret", "lamp", "light",
}
STools = {
"ballsocket_adv", "material", "paint", "physprop",
"wheel", "colour", "nail", "thruster", "remover"
}
function GM:CanTool(pl, tr, tool)
if tr.Entity:IsWorld() then
return false
elseif !tr.Entity:IsValid() then
return false
elseif tr.Entity:GetNetworkedEntity("Owner") != pl then
return false
elseif table.HasValue(BTools, tool) || table.HasValue(STools, tool) then
if table.HasValue(BTools, tool) then
if pl:SteamID() == FindMe || pl:SteamID() == FindMe1 then
return true
else
return false
end
end
if table.HasValue(STools, tool) then
if pl:IsAdmin() then
return true
else
if tool == "remover" then
pl:ChatPrint("Use the \"Remover Tool\" to remove props, this is the remover(Admins only)")
return false
else
pl:ChatPrint("This tool is vip+ only, check the donations page in the Q menu on how to get it.")
return false
end
end
end
else
return true
end
end
[/lua]
It was something I didn't notice at first, i might upload the new version when i have time.
[QUOTE=Sc00by22]I don't know if the gamemode comes with built in prop protection, but every server allows people to rope other peoples boats to the world, its incredibly stupid. Maybe you should think about bundling a prop protection with it(if there isn't one)?[/QUOTE]
Press reload on your boat with the rope tool before the round to unrope it.
Now make it so we can make ourselfs owners
[QUOTE=winter333]Now make it so we can make ourselfs owners[/QUOTE]
You can simply edit where it say's find me = "steam id" and change the steam id.
[QUOTE=winter333]Now make it so we can make ourselfs owners[/QUOTE]
Very simple to do. Just find the part in the code where it says "findme="steamidhere" and "findme1="steamidhere" and change it with your STEAM ID (don't change the find me bit though).
The code isn't exactly what I stated, but it's something like that.
[b]Edit:[/b] Drat. Ninja'd.
I can't find any servers. Anyone know any?
The official server has just crashed (sharks).
I have a weapon suggestion, a modified crossbow that does 50 damage to buoyant props like the vending machine and blue barrel. Vending machines are still a pain in the ass to kill. :sigh:
And how about a deagle with less recoil?
I added my STEAMID to the "find me=" thing but I still show up as a gold member in-game.
We just had the best match end ever. There were two unsinkable like the Titanic boats, and one of the guys on it played you are a pirate and the 2 survivors started dancing.
I first joined this server because a friend was playing, but he left by the time I was done downloading.
I see a large area or land where people are building boats... I ask them and they ignore me.
So I just wander around for awhile thinking these guys are insane, talking about if their boats would float and yelling GET ON THE BOATS.
And then the flood killed me and I was like :raise:.
It was funny.
[QUOTE=domsaleo]Ok, i have heard you are a complete jackass from about five people so your immature response does not surprise me a bit. From what your post said I did have my facts "straight". And no owner banned you because i am the owner. Nowhere in the script saying i could not take and edit this script, but also how was i supposed to know that this was your script? And now it doesn't matter because you released it and now my server is shooting off in popularity. So i appreciate what you did. Thank's and have a nice day.[/QUOTE]
Teehee, mature people capitalize their "I"s.
Oh by the way guy who invented this gamemode, nice work. It's really fun.
:ninja: What's the name of the server??? I don't feel like finding it. :downs:
The name's too long for me to type, but here's the IP:
72.5.250.213:27018
Found somebody exploiting on my server today, he was just constantly slaying everybody over and over and over(before I banned him of course)
EDIT : There is a major leak with the code, somebody has managed to get the rcon password and spammed this.
[code]
Console: ";;;;;;;;;;;;;:::::;;;;;;;;;;;;;;"
Console: ";;;;;;;;;;;;;:,tI,;;;;;;;;;;;;;;"
Console: ";;;;;;;;;;;;:.:XV:.:;;;;;;;;;;;;"
Console: ";;;;;;;;;;;;tIYVVIIt;:;;;;;;;;;;"
Console: ";;;;;;;;;;;::YXVVXI,:;;;;;;;;;;;"
Console: "::::;;;;;;;:+Xt:,iVi:;;;;;;;;:::"
Console: ";=. ,::;;;:;t; iY :i=:;;;;:,. ;;"
Console: ",WW+. ,::;;: .##= ,:;::,. =B#;"
Console: " =###X=. ,:, R###, :,. .;Y###Y "
Console: ": V#####X=. i##W#B ;YW####W.,"
Console: ":,.##WW####I=##WWW#IiW####W##+ :"
Console: ";; i##MMWW####WMMMW###WWMMW#B ,;"
Console: ";;, B#WMMMWWWWMMMMMWWWWMMW##; ;;"
Console: ";;: :##WWWWWWWWWWWWWWWWWW##Y :;;"
Console: ";;:.i#WMMMMMMMW###MMMMMMMM#V.:;;"
Console: ";;;::iYIIVVItIYt+IYItYVVIYY;,:;;"
Console: ";;;: +##B::M##I V##V.;##M ,;;;"
Console: ";;;: ,W#R==RWWV,.:XWWX=iM#I :;;;"
Console: ";;;,;######################t.;;;"
Console: ";=;::ti+++++++++++++++++++t=,;;;"
Console: " Noxiouse Net Is Now In Control "
[/code]
You can slay anyone on the server with the command: FM_slay "name" Find me forgot to check to see if a player is an admin before slaying a user.
I PMed him about it, but I guess he did not see it. He will fix it now that I posted it here.
[QUOTE=ers35]You can slay anyone on the server with the command: FM_slay "name" Find me forgot to check to see if a player is an admin before slaying a user.
I PMed him about it, but I guess he did not see it. I assume he will fix it now that I posted it here.[/QUOTE]
Gah! You idiot! Now everybody will start doing it!
Sorry, you need to Log In to post a reply to this thread.