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

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,080
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276

Full Statistics

Online Users
There are currently 347 online users.
» 0 Member(s) | 345 Guest(s)
Google, Yandex

Latest Threads
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 4,900
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 491
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,333
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,049
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 1,884
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 821
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 785
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 994
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 784
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 767

 
  Can you just please email all the users?
Posted by: BuildistGuard - 01-29-2011, 04:06 AM - Forum: 2DWorlds Discussion - Replies (2)

Can't you just please email all the users about the news or update Jacob? I really need to.

Print this item

  Tutorial: Removing the character
Posted by: Jacob__mybb_import1 - 01-29-2011, 01:11 AM - Forum: 2DWorlds Discussion - No Replies

If you want to make a game without characters, use this script:

Code:
function playerAdded(c)
    if c:isA("Character") then
        c:remove()
        game.Camera.FollowObject = game.World.PartHere
        game.Camera.ScaleFactor = 7
    end
end

link(game.World.ChildAdded, playerAdded)

game.World.PartHere should be the new part the camera should be centered on.

Example: http://buildism.net/game.php?id=733

Print this item

  one time.....
Posted by: Tyler - 01-29-2011, 12:53 AM - Forum: General Discussion - Replies (3)

i saw a players froum profile and it said ''time spent online:4 seconds''




i got this crazy feeling that hewas inactive

Print this item

  1/28/11
Posted by: Jacob__mybb_import1 - 01-28-2011, 10:14 PM - Forum: News - No Replies

  • Fixed a bug with joint selecting, also added a small performance increase on scenes with a lot of joints
  • Started work on the new insert menu.
[Image: x5wjmu.jpg]
It will include a bunch of pre-made items like weapons, vehicles, teleporters, build tools and so on. I'm going to need help making stuff for the insert menu, see the discussion section for more details!

Print this item

  Guys?
Posted by: King_Trelicon - 01-27-2011, 03:55 AM - Forum: 2DWorlds Discussion - Replies (2)

Isn't this just a 2D copy of ROBLOX?

Print this item

  Normal Door
Posted by: guest - 01-25-2011, 03:25 AM - Forum: Scripting - Replies (4)

Documentation and licence are both included in the script.

This is NOT a VIP door. It is just a normal door that opens when someone touchs it.

Included in this thread :

Door.bsmodel (2.42 KB) -A ready to use door.
Door Script.txt (2.01 KB) -A copy of the script.
Door Script.lua (2.01 KB) -A copy of the script.
Door Place.buildism (4.47 KB) -A place containing a door.

This script was tested. All of it's features are working.

If you like the script, please click this link.

You can also go here and leave a comment.

Please avoid to post here if you can PM me instead. I want this thread to contain useful content, not useless junk.

[lua]opentime = 1 --How much time will the door be open in seconds?
transparency = 0.5 --How transparent is the door when open?

--[[Documentation of this script :
Door Script by [Guest/Aroblix].

Installation :

The installation of this script is simple. You just have to put the script in the box you want to be the door and then set the settings.

Settings :

To change the time before the door closes, just go at the first line of the script.
You will see a variable called opentime. Just set it's value to the number of seconds you want the door to remain open after being opened.

To change the transparency of the door when it is opened, just change the value of the variable at the second line of the script.
0 - Normal
0.5 - Averagely transparent
1 - Invisible

Open source FTW!
]]
--[['Licence' of this script : -Please read this whole licence. It is not long and it is important.

Do not republish this, one version is enough. There is no need to have 50 times the exact same script everywhere on the site.

This script is open source and must remain open source. That means everyone is free to have it, use it and edit it.


Any model created using this or a part of this script must be open source and contain this licence. They also have to include the documentation.
That means you can't obfuscate or sell anything made using one or many part of this script. Parts of this script include :
1.The documentation.
2.The licence.
3.The code.

Not respecting this 'licence' won't necessary end in anything bad done to you, but it's better not to take risks.
]]

if not script.Parent.Fixed then --There's no point in having an unanchored door.
script.Parent.Fixed = true
end


function open(part)
if part.Parent:isA('Character') then
script.Parent.Collidable = false
script.Parent.Transparency = transparency
sleep(opentime)
script.Parent.Collidable = true
script.Parent.Transparency = 0
end
end
link(script.Parent.Collided, open)
--Coded by [Guest/Aroblix] using Notepad++.[/lua]



Attached Files
.txt   Door Script.txt (Size: 2.01 KB / Downloads: 22)
.bsmodel   Door.bsmodel (Size: 2.42 KB / Downloads: 167)
.lua   Door Script.lua (Size: 2.01 KB / Downloads: 139)
.buildism   Door Place.buildism (Size: 4.47 KB / Downloads: 141)
Print this item

  VIP Door
Posted by: guest - 01-25-2011, 02:40 AM - Forum: Scripting - Replies (3)

Documentation and licence are included in the script.

Included in this thread :
VIP Door.bsmodel (3.5 KB) -A ready to use VIP door.
VIP Door Script.lua (3.26 KB) -A copy of the script.
VIP Door Script.txt (3.26 KB) -A copy of the script.
VIP Door Place.buildism (5.55 KB) -A place containing a VIP door.

This script was tested. All of it's functionnalities are working.

If you like the script, please click this link.
You can also click the 'Thanks' button under the post.

You can also go here and leave a comment.

You have a suggestion for this script? An update? An idea? PM me, I'll probably add it and publish it on the official script. I'll also put your name on the thanks list, which is in the next message.

Please avoid to post here if you can PM me instead. I want this thread to contain useful content, not useless junk.

[lua]vips = {"Player"} --Who is allowed through the door?
opentime = 1 --How much time will the door be open in seconds?
transparency = 0.5 --How transparent is the door when open?
doorkills = false --Does the door kill intruders?

--[[Documentation of this script :
VIP Door Script by [Guest/Aroblix].

Installation :

The installation of this script is simple. You just have to put the script in the box you want to be the VIP door and then set the settings.

Settings :

To allow someone through the door, you must add his name in the VIPs table. Here is how :
You see at the first line of this script? It is the permission table.
To add a VIP player in that table, just type a comma followed by the name of the player in double quotes.
Don't add the testing user (Guest) in the table, he is always allowed (unless someone edited the script).

To change the time before the door closes, just go at the second line of the script.
You will see a variable called opentime. Just set it's value to the number of seconds you want the door to remain open after being opened.

To change the transparency of the door when it is opened, just change the value of the variable at the third line of the script.
0 - Normal
0.5 - Averagely transparent
1 - Invisible

To make the door kill non-VIPs players that touch it, set the variable 'doorkills' to true.
This feature is not really nice and is not needed, but it can be useful to prevent non-VIPs players from getting in when a VIP opens the door.
WARNING : At the moment these lines are written, respawning causes some lag.

Open source FTW!
]]
--[['Licence' of this script : -Please read this whole licence. It is not long and it is important.

Do not republish this, one version is enough. There is no need to have 50 times the exact same script everywhere on the site.

If you still republish it, atleast, do not include your name in the permission list. That's selfish.

This script is open source and must remain open source. That means everyone is free to have it, use it and edit it.


Any model created using this or a part of this script must be open source and contain this licence. They also have to include the documentation.
That means you can't obfuscate or sell anything made using one or many part of this script. Parts of this script include :
1.The documentation.
2.The licence.
3.The code.

Not respecting this 'licence' won't necessary end in anything bad done to you, but it's better not to take risks.
]]

if not script.Parent.Fixed then --There's no point in having an unanchored VIP door.
script.Parent.Fixed = true
end

function check(playername)
for count,name in pairs(vips) do
if ((string.lower(playername) == string.lower(name)) or (playername == "Guest")) then --Guest is the name of the default user when testing.
return true
end
return false
end
end


function open(part)
if part.Parent:isA('Character') then
if check(part.Parent.Name) then
script.Parent.Collidable = false
script.Parent.Transparency = transparency
sleep(opentime)
script.Parent.Collidable = true
script.Parent.Transparency = 0
elseif doorkills then
part:remove()
end
end
end
link(script.Parent.Collided, open)
--Coded by [Guest/Aroblix] using Notepad++.[/lua]


Thanks list

This list regroups every player that helped to the realisation and improvement of this script. It is updated everytime a player needs to be added to it.

Thanks to :

Jacob_ for : Creating Buildism.
Guest for : Everything else.



Attached Files
.txt   VIP Door Script.txt (Size: 3.26 KB / Downloads: 28)
.buildism   VIP Door Place.buildism (Size: 5.55 KB / Downloads: 28)
.bsmodel   VIP Door.bsmodel (Size: 3.5 KB / Downloads: 103)
.lua   VIP Door Script.lua (Size: 3.26 KB / Downloads: 57)
Print this item

  1/24/11
Posted by: Jacob__mybb_import1 - 01-24-2011, 10:36 PM - Forum: News - Replies (2)

  • Added a new CharacterCollide property for boxes/circles, this should be useful for making vehicles
  • FixedVelocity parts now work properly
  • Fixed a bug where the position, velocity, and rotation of moving parts wouldn't appear in the properties table

Print this item

  We need to do a machinima
Posted by: ILiekMudkipz - 01-24-2011, 12:10 AM - Forum: Suggestions - Replies (1)

once multiplayer is fully implemented and we have a good finished place (a.k.a TRON or Buildism City), some of us should get togheter and make a movie to showcase on youtube or such.

y/n?

Print this item

  Online Game/Site Usernames
Posted by: ILiekMudkipz - 01-22-2011, 10:13 PM - Forum: Video Games - Replies (10)

post your usernames here.

ROBLOX- UltimaWeapon
Youtube - ultimaweapon12
RobloxHQ - ILiekMudkipz
Steam (My id in the URL bar) - ScottLieksMudkipz

Print this item