I was about to say that climate change wasnt political, but then i thought about it for 0.01 seconds and realized it totally is.
Congrats on another update, even though iโm not active here anymore iโm still checking every new update.
As an American, BELGIUMING AMERICANs goshdarnit.
The vocal half, sadly.
All sides are vocal in America. Its a race to who can become the most extreme the fastest.
We should maybe stop talking about politics before we are all banned
Making a note to myself about GLua OOP (GMod Lua).
Garry's Mod
garrysmod
gamemodes
mygamemode
gamemode
init.lua
AddCSLuaFile("cl_init.lua")
AddCSLuaFile("shared.lua")
AddCSLuaFile("class_fruit.lua")
AddCSLuaFile("class_animal.lua")
AddCSLuaFile("class_dog.lua")
include("shared.lua")
include("class_fruit.lua")
include("class_animal.lua")
include("class_dog.lua")
function GM:PlayerSpawn(ply)
local banana = Fruit:new(nil)
banana:printTable()
local dogo = Dog:New(nil)
dogo:PrintInformation()
end
shared.lua
GM.Name = "My Gamemode"
GM.Author = "N/A"
function GM:Initialize()
-- ???
end
cl_init.lua
include("shared.lua")
class_fruit.lua
Fruit = {}
Fruit.Taste = "Sweet"
Fruit.Cost = 5.00
function Fruit:new(o, taste, cost)
o = o or {}
setmetatable(o, self)
self.__index = self
self.Taste = taste or "Sweet"
self.Cost = cost or 5.00
return o
end
function Fruit:printTable()
print(self.Taste)
print(self.Cost)
end
class_animal.lua
Animal = {}
Animal.Cry = "What the fuck!?"
Animal.Species = "Animal"
function Animal:New(o, cry, species)
o = o or {}
setmetatable(o, self)
self.__index = self
self.Cry = cry or "What the fuck!?"
self.Species = species or "Animal"
return o
end
function Animal:Yell()
print(self.Cry)
end
function Animal:PrintInformation()
print(self.Species)
end
class_dog.lua
Dog = Animal:New(nil, "Woof", "Dog")
Dog.Gender = "Male"
function Dog:New(o, cry, gender, species)
o = o or {}
setmetatable(o, self)
self.__index = self
self.Cry = cry or "Woof"
self.Gender = gender or "Male"
self.Species = species or "Dog"
return o
end
function Dog:PrintInformation()
print(self.Species)
print(self.Gender)
end
I recently saw some experienced game programmers recommend to beginners to learn to program first, and only then work on game programming. Iโve seen you post quite a few times these, to me (Iโve never made a gmod, mod), pretty simple examples of code that donโt seem to work in it, Iโm kind of also thinking that maybe you could just start simpler. Perhaps install and fire up a new C# console project in visual studio and get some programming experience that way first.

(the video is still probably processing but should be good to watch tomorrow at least)
Edit: itโs set to be public now.
Would you rather arm wrestle Putin or get in a thumb war with Boris Johnson?
Donโt ask why I am asking this.
BRO, you became a playing card, seems like Leshy sacrificed you
well, even with his sacrifice, we need to scale his power.
we need more ants
I just realized that I was still using that edgy halloween profile picture.
We need a totem of bifractured strike, with a bug head on it in order to double the damage output.
Nah, Iโd argue that an unkillable Ant Queen would be more useful. Just donโt kill the Ouroboros for it.
What do youmean, the Ouroboros gets stronger the more you sacrifice it, so it only makes sense to sacrifice it
Terrafirmacraft is good mod
True, so you can get infinite antsโฆ
Maybe you could merge 2 ant queens in order to have a doubley as powerful one.