Here is what I've been working on lately. [URL="https://gyazo.com/c7c3f7be71fcb4a02eef25277b5d62c6"]https://gyazo.com/c7c3f7be71fcb4a02eef25277b5d62c6[/URL] I got help from Orbitei to get rid of a bunch of useless code in LmaoLlamas basewars code.
I was wondering if any developer was willing to help with any of the specific task below. (I do not expect anyone to over work themselves)
Things I need help with:
1. The top left screen which shows all payments and purchase history, like the one in newbie nation. (Not implemented)
2. Fix printers so they print money. I already changed the model of the money it prints. (work in progress)
3. Optimize the gamemode for wide player use. (The gamemode code is shit...)
4. Code a custom scoreboard so its different. (Not done yet)
5. Custom hud (done) By -Orbitei
Things in the future I will do:
1. Edit the map to add a custom feel.
Once the gamemode is complete all the people who helped will be credited and the gamemode will be released to the public.
Make a job on [url]https://scriptfodder.com/[/url]
[QUOTE=code_gs;51678139]Make a job on [url]https://scriptfodder.com/[/url][/QUOTE]
Thats usually for private coding I want done. I want help on this so we can release it to the public. And not for just 1 person.
Yes, i want to google send me a google pixel because i want to create games for android, but hey, is for public!
No dude, you are asking for task that takes time and doesn't sound at all something that someone would need (except for one person [sp]you[/sp])
[QUOTE=gonzalolog;51678323]Yes, i want to google send me a google pixel because i want to create games for android, but hey, is for public!
No dude, you are asking for task that takes time and doesn't sound at all something that someone would need (except for one person [sp]you[/sp])[/QUOTE]
You must of not played basewars :/ that's to bad I thought other people loved this gamemode. If you don't want to to help don't comment. I think that's pretty simple enough isn't it?
[QUOTE=G6Darkminion;51678386]You must of not played basewars :/ that's to bad I thought other people loved this gamemode. If you don't want to to help don't comment. I think that's pretty simple enough isn't it?[/QUOTE]
ROASTED; anyway to my point, i doubt anyone is gonna help for free, your best bet would be ScriptFodder
[QUOTE=StickmanJohn;51678400]ROASTED; anyway to my point, i doubt anyone is gonna help for free, your best bet would be ScriptFodder[/QUOTE]
Thank you at least someone replied with a good reason instead of shit posting :) thank you! Ill leave this post up for 48 hours to see if anyone is willing to volunteer if not I understand.
[QUOTE=G6Darkminion;51678402]Thank you at least someone replied with a good reason instead of shit posting :) thank you! Ill leave this post up for 48 hours to see if anyone is willing to volunteer if not I understand.[/QUOTE]
everyone else made just as valid points, i was the only one who managed to get you to understand it
[QUOTE=StickmanJohn;51678403]everyone else made just as valid points, i was the only one who managed to get you to understand it[/QUOTE]
:o now I got roasted! Well thank you for helping me understand instead of trying to roast me like the other dude.
[QUOTE=Moat;51678407]You can't expect someone here to do everything for you. If you need help with specific issues or problems, you know what to do, but other than that, I doubt you'll find someone that'll spend their time and effort on something you're not willing to do.[/QUOTE]
Oh well I'll be more specific by that shitty checklist I wrote I was wondering if anyone wanted to help with 1 of those specific things. Not all of them.
[QUOTE=G6Darkminion;51678411]Oh well I'll be more specific by that shitty checklist I wrote I was wondering if anyone wanted to help with 1 of those specific things. Not all of them.[/QUOTE]
Start here for your scoreboard
[b][url=https://wiki.garrysmod.com/page/Basic_scoreboard_creation][img]http://wiki.garrysmod.com/favicon.ico[/img]Basic Scoreboard Creation[/url][/b]
I got a really weird error with thise hud It will go back to working if i just refresh the file without changing anything. Here is the error
[QUOTE][ERROR]
1. unknown - [C]:-1
Error in hook HUDPaintBackground: lua/autorun/client/simplehud.lua:156: bad argument #1 to '(for generator)' (table expected, got nil)
stack traceback:
[C]: in function '(for generator)'
lua/autorun/client/simplehud.lua:156: in function 'fn'
addons/ulib/lua/ulib/shared/hook.lua:110: in function <addons/ulib/lua/ulib/shared/hook.lua:93>
[C]: in function '•‎​‬‪•'
[/QUOTE]
[CODE]for k,v in next, BaseWars.Drugs do
if LocalPlayer():GetNWBool(BaseWars.Drugs[k].string) then
local offset = 0
local soffset = 0
local soffset2 = 0
if k == "leech" then soffset = -2 soffset2 = 5 end
if k == "focus" then soffset = -5 end
if BaseWars.Drugs[k].font == "DrugFont2" then offset = -25 end
draw.DrawText(BaseWars.Drugs[k].symbol, BaseWars.Drugs[k].font, curX + 4+(effectslots[BaseWars.Drugs[k].type]*20)-3+soffset, curY + 68+(BaseWars.Drugs[k].type*20)+offset+soffset2, BaseWars.Drugs[k].color,0)
effectslots[BaseWars.Drugs[k].type] = effectslots[BaseWars.Drugs[k].type]+1
end
end[/CODE]
[QUOTE=G6Darkminion;51678448]I got a really weird error with thise hud It will go back to working if i just refresh the file without changing anything. Here is the error
[CODE]for k,v in next, BaseWars.Drugs do
if LocalPlayer():GetNWBool(BaseWars.Drugs[k].string) then
local offset = 0
local soffset = 0
local soffset2 = 0
if k == "leech" then soffset = -2 soffset2 = 5 end
if k == "focus" then soffset = -5 end
if BaseWars.Drugs[k].font == "DrugFont2" then offset = -25 end
draw.DrawText(BaseWars.Drugs[k].symbol, BaseWars.Drugs[k].font, curX + 4+(effectslots[BaseWars.Drugs[k].type]*20)-3+soffset, curY + 68+(BaseWars.Drugs[k].type*20)+offset+soffset2, BaseWars.Drugs[k].color,0)
effectslots[BaseWars.Drugs[k].type] = effectslots[BaseWars.Drugs[k].type]+1
end
end[/CODE][/QUOTE]
tried doing it in pairs?
[QUOTE=StickmanJohn;51678452]tried doing it in pairs?[/QUOTE]
Not too sure. I commented this part out and when i join it theres 0 errors but I see nothing wrong with the code.
try do it in pairs... :nope:
[QUOTE=StickmanJohn;51678498]try do it in pairs... :nope:[/QUOTE]
Doing `for a, b in pairs(t) do` is [b]equivalent[/b] to doing `for a, b in next, t do`. Because `pairs` is basically defined as (it's in C but same shit):
[code]
function pairs(t)
return next, t, nil
end
[/code]
Sorry, you need to Log In to post a reply to this thread.