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 236 online users. » 0 Member(s) | 235 Guest(s) 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,331
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 747
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,529
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,238
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,122
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 986
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 968
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,180
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 991
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 944
|
|
|
So does anybody remember keybored.x10.mx? |
Posted by: Qwertygiy - 11-02-2011, 01:36 PM - Forum: Creations
- Replies (7)
|
 |
I've finally started making major changes to it.
I've changed the background to make it more text-friendly, and I'm working on a whole new section.
I'm probably going to remove the games and useful stuff tabs from the top bar as those are not likely to be up for a long time, if ever.
I'm also going to re-edit the music section to make it look a bit better.
|
|
|
Morrowind or Oblivion? |
Posted by: Who - 11-02-2011, 01:40 AM - Forum: Video Games
- Replies (1)
|
 |
In one hand Oblivion:
Better graphics
Better gameplay
Full acting voice (but sometimes lame)
On the other hand Morrowind:
Better storyline (In my opinion)
Better world
TONS of side quests
Personally I preffer Morrowind but let's hear your opinions
|
|
|
Homing Object: Making One Part Go to Another |
Posted by: Qwertygiy - 11-01-2011, 02:18 PM - Forum: Scripting
- No Replies
|
 |
For Mustachio:
[lua]
local target = game.World.Box
local bullet = game.World.Circle
local ups = 10 --units per second
--change those three variables as needed
while true do
sleep(0.01)
local xdistance = target.Position.x - bullet.Position.x
if xdistance < 0 then
xdistance = xdistance * -1
end
local ydistance = target.Position.y - bullet.Position.y
if ydistance < 0 then
ydistance = ydistance * -1
end
if xdistance < 0.1 and ydistance < 0.1 then break end
if target.Position.x > bullet.Position.x then
if target.Position.y > bullet.Position.y then
bullet.Position = bullet.Position + Vec2D(ups/100, ups/100)
else
bullet.Position = bullet.Position + Vec2D(ups/100, ups/-100)
end
else
if target.Position.y > bullet.Position.y then
bullet.Position = bullet.Position + Vec2D(ups/-100, ups/100)
else
bullet.Position = bullet.Position + Vec2D(ups/-100, ups/-100)
end
end
end
print("Parts reached")
[/lua]
|
|
|
I think Tom from tGL just sent me an admin application... |
Posted by: Jacob__mybb_import1 - 10-31-2011, 02:35 PM - Forum: Moderator Discussion
- Replies (1)
|
 |
Jacob_ Wrote:Dulexo Wrote:Hi Jacob, my name is Tom, I've found out about this fun, creative website you have created, I've been playing a lot of game's lately, and this is one of them.
I'd like to get some detail about Administration, because I would like to become an administrator.
Please reply back as soon as possible, thanks.
Snrl, Tom
I don't plan on ever hiring any administrators, especially someone like you who just joined today. If you play long enough, you might get a chance at becoming a moderator, but we don't give out staff positions like candy as some other websites do... this always leads to a low-quality community.
I couldn't resist.
|
|
|
|