Embed Notice
HTML Code
Corresponding Notice
- Embed this notice@shpuld @hj on related note
when i was making my weird survival multiplayer FPS game i wanted to make in quakeC fteqcc like 10 years ago (big fail). i wrote a "send ricochet-effect (bulletpuff) to all players" command. one separate command was sent for each of the 30 ricochet's my hexa-barrel shotgun made simultaneously in one frame.
and instantly hit the "fuck, why can i only send X amount of commands" (i sent each ricochet network command separately)
today, i am smart
i send one command with all the data so i dont send 40 different commands when i can just make an array of these so its way more bandwidth cheaper
i was just writing code for this exact same thing i described now, and thinking how far ive gotten with my IQ in the last 10 years