Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276
Full Statistics
|
Online Users |
There are currently 238 online users. » 0 Member(s) | 236 Guest(s) Bing, Google
|
Latest Threads |
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,232
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 720
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,513
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,223
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,101
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 969
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 947
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,155
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 976
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 933
|
|
|
Reminder about profanity |
Posted by: Qwertygiy - 09-14-2012, 09:42 PM - Forum: News
- Replies (4)
|
 |
While normally, things covered by the filter are not punished (I hate it when my dog [censored]s on the rug), swearing at another member is against the rules ([censored] you, I [censored]ing hate you, etc.) and will be punished accordingly. This applies to the chat as well as the forum. I know I have not been strictly following this rule lately but unless this gets changed by Jacob_ I will be enforcing it.
Using images or videos with profanity will be treated the same as bypassing the filter with text, except in the After Dark forum.
|
|
|
I think I failed at my own guide |
Posted by: DysLabs - 09-12-2012, 07:20 PM - Forum: Scripting
- No Replies
|
 |
Copying my old Custom Objects guide on the wiki,
[lua]
Int = {}
function Int:new(one, two, three)
newTB = {x, y, z}
newTB.x = one
newTB.y = two
newTB.z = three
function newTB.SetInt() --Here we create a method called SetInt()
newTB.x = 90
newTB.y = 900
newTB.z = 9000
end
return newTB
end
a = Int.new(5, 8, 10)
print(a.x) --5
print(a.y) --8
print(a.z) -- 1
a:SetInt()
print(newTB.x) --90
print(newTB.y) --900
print(newTB.z) --9000
[/lua]
The result:
wth? Wrote:8
10
nil
90
900
9000
umm?
Oh hey - I don't know what I did - but it works now.
|
|
|
|