• Garry's Mod Bunnyhop settings & help
    7 replies, posted
Hello! Im currently working on a private Bunny Hop server and I want to ask some things to the ones who know it; FacePunch. :) Is there any place where I can learn how to make my bhop server? (already watched the youtube ones) But some things like: - Gravity? - Accelerate? - AirAccelerate? - JumpStrenght? - Any extra settings? - Not making the bhop blocks go in their base - Setting a stopwatch - Setting an NPC / Item as a "STOP" button for the stopwatch - Making a velocity bar on screen (Only need the code, to put in a function) [B][I][U]DONE[/U][/I][/B] - Making ranks (newbie, beginner, hard, nigtmare, and so on.) - And so on... THE ONES GIVING ME ALL THE NECCESARY INFORMATION WILL RECIEVE POINTS / HIGHER RANK IN THE SERVER! :) Kind regards, Ho7s0 :)
What do you have already?
[QUOTE=frietje2008;41846455]What do you have already?[/QUOTE] // Bunnyhop -Tickrate 100 sv_airaccelerate 1000 sv_gravity 550 sv_minrate 3000 sv_maxrate 25000 sv_minupdaterate 67 sv_maxupdaterate 101 sv_mincmdrate 67 sv_maxcmdrate 101 - Sprint & Walk locked to 250 - Gmod hud removed - Loadingscreen [URL="http://www.piramidemc.com/loadingscreen.html"]Click here for demo :)[/URL] - Shop - Admin mode - Maps - Rtv And that's it :p
Go mess around with the sent_ball in the lua entities folder until you learn how to make an NPC that can be used as a stopwatch or what have you. [CODE] draw.RoundBox(0,ScrW()-110,ScrH()-35,(LocalPlayer():GetVelocity():Length()/1000)*100,25,Color(100,100,100,205)) [/CODE] That'll get you a bar that is full on 1000 velocity, and empty on 0, in the bottom right of the screen.
[QUOTE=vegasx;41849120]Go mess around with the sent_ball in the lua entities folder until you learn how to make an NPC that can be used as a stopwatch or what have you. [CODE] draw.RoundBox(0,ScrW()-110,ScrH()-35,(LocalPlayer():GetVelocity():Length()/1000)*100,25,Color(100,100,100,205)) [/CODE] That'll get you a bar that is full on 1000 velocity, and empty on 0, in the bottom right of the screen.[/QUOTE] Thanks! (Small LUA error in the code but I fixed it :) ) This is the working code, thanks to VEGASX! [CODE]function CoolHUD() draw.RoundedBox(0,ScrW()-110,ScrH()-35,(LocalPlayer():GetVelocity():Length()/1000)*100,25,Color(100,100,100,205)) end hook.Add( "HUDPaint", "CoolHUD", CoolHUD )[/CODE] Thats 1 thing scrapped of the list!
Remove the music from the loadingscreen. It's really annoying. And remember to get permission to play other peoples music... I've heard it could be pretty expensive not to do so. :-)
Little tips on the loading screen. 1. Put a more "loady" song on. Something instrumental and sort of repetitive. 2. Make sure the background is 1920x1080. Looks messy for me as that's my res. Or at least make it width=100% and height=100% 3. Make the text more serious and professional! Its not funny at all. Accept from that it sounds pretty good. Would love to know the server IP
[QUOTE=Sam7100;41852063]Remove the music from the loadingscreen. It's really annoying. And remember to get permission to play other peoples music... I've heard it could be pretty expensive not to do so. :-)[/QUOTE] Haha thought that too, I removed the old one and added non copyrighted one! :D [editline]17th August 2013[/editline] [QUOTE=SatoshiAaron;41852480]Little tips on the loading screen. 1. Put a more "loady" song on. Something instrumental and sort of repetitive. 2. Make sure the background is 1920x1080. Looks messy for me as that's my res. Or at least make it width=100% and height=100% 3. Make the text more serious and professional! Its not funny at all. Accept from that it sounds pretty good. Would love to know the server IP[/QUOTE] Thanks for your opinion, I'm searching for a better non-copyrighted song now. The loadingscreen isn't supposed to be long on the screen, so the text is just ... 'there' And the picture should fit your screen automaticly? Anyways, thanks!
Sorry, you need to Log In to post a reply to this thread.