Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 60
» Latest member: kirbo
» Forum threads: 106
» Forum posts: 416

Full Statistics

Online Users
There are currently 8 online users.
» 1 Member(s) | 7 Guest(s)
oliverepikface

Latest Threads
Improve you're security l...
Forum: Lounge
Last Post: SultanOfSwing
11 hours ago
» Replies: 5
» Views: 111
100th Thread
Forum: Lounge
Last Post: SultanOfSwing
11 hours ago
» Replies: 1
» Views: 21
i also forgot my password
Forum: User Support
Last Post: Admin
06-02-2025, 02:09 AM
» Replies: 5
» Views: 52
Update Log #1
Forum: Announcements
Last Post: Admin
05-31-2025, 11:55 PM
» Replies: 0
» Views: 10
IF YOU WERE A USER OF V3R...
Forum: Lounge
Last Post: Admin
05-31-2025, 11:28 PM
» Replies: 0
» Views: 23
Welcome to the Archives!
Forum: Archive
Last Post: Admin
05-31-2025, 10:57 PM
» Replies: 0
» Views: 12
Banners
Forum: Archive
Last Post: Admin
05-31-2025, 10:55 PM
» Replies: 5
» Views: 124
v3rmillion.net
Forum: Announcements
Last Post: Admin
05-22-2025, 06:41 PM
» Replies: 0
» Views: 25
I got invited to Dank!
Forum: Lounge
Last Post: Admin
05-17-2025, 12:29 AM
» Replies: 11
» Views: 170
New site upgrades look co...
Forum: Lounge
Last Post: DaGreatSkunksEqualToMaccas
05-15-2025, 05:34 AM
» Replies: 6
» Views: 79

 
  "The Hunt" winner Shayph is already getting harassed by 8 year olds
Posted by: Admin - 04-04-2025, 09:24 PM - Forum: Lounge - Replies (7)

As expected of the Roblox community. Let's see how long it takes for him to get doxxed - not saying I condone it



Attached Files Thumbnail(s)
   
Print this item

  Exploiting category at 100+ posts
Posted by: Yutaka - 04-03-2025, 08:36 AM - Forum: Lounge - Replies (3)

Pretty cool milestone

Print this item

  A rust forum has been added
Posted by: Admin - 04-02-2025, 11:13 PM - Forum: Announcements - No Replies

To get access to it, go to https://scet.ch/alts.txt

Print this item

  It's time.. for AAADS!
Posted by: jUltra - 04-01-2025, 04:26 PM - Forum: Lounge - Replies (5)

ads were added, what a nice touch

   
   

Print this item

  AD TIME
Posted by: Admin - 04-01-2025, 03:49 PM - Forum: Announcements - No Replies

We are proud to announce we are adding ads!
(totally not an april fools joke)

Print this item

  infix custom operator HACK!
Posted by: DaGreatSkunksEqualToMaccas - 03-31-2025, 07:35 PM - Forum: Lua - Replies (3)

a hack for psuedo-custom operators in lua

Code:
-- Custom operator to evaluate (class)
local CustomOp = {}
function CustomOp:__div(b) -- eval full operation.
  return getmetatable(self.a)['__' .. self.op](self.a, b)
end
setmetatable(CustomOp, {__call =
  function(class, a, op) -- construct left-half of operation.
    return setmetatable({a = a, op = op}, CustomOp)
  end
})
function enable_custom_ops(mt) -- enable custom ops on metatable.
  function mt:__div(op)
    return CustomOp(self, op)
  end
  return mt
end

-- Output stream (class)
ostream  = {}
ostream.__index = ostream
enable_custom_ops(ostream)
function ostream:write(s)
  io.write(s)
end
ostream['__<<'] = function(self, s)  -- '<<' operator
  self:write(s)
  return self
end
setmetatable(ostream, {__call =
  function(class, file) -- construct output stream
    file = file or io.output()
    return setmetatable({file = file}, ostream)
  end
})
cout = ostream()
endl = "\n"  -- end of line

-- example usage

local _ = cout /'<<'/ "hello" /'<<'/ endl

Print this item

  What's your favorite kind of grass
Posted by: Yutaka - 03-31-2025, 04:24 PM - Forum: Lounge - Replies (5)

Bermuda is great but fescue is cool too

Print this item

  2022 v3rm theme has been added
Posted by: Admin - 03-28-2025, 10:15 PM - Forum: Announcements - No Replies

Please report all bugs you see about the new theme in the User Support forum.

Print this item

Thumbs Up My v3rm
Posted by: cesium - 03-26-2025, 06:45 PM - Forum: Lounge - No Replies

I made my own v2rm, go to v3rmillion.xyz

Print this item

  wheres rust
Posted by: PPMaccasSticks63 - 03-24-2025, 12:44 AM - Forum: HolyC - Replies (7)

why is this here and not rust

Print this item