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

Username
  

Password
  





Search Forums

(Advanced Search)

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

Full Statistics

Online Users
There are currently 231 online users.
» 0 Member(s) | 229 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: 5,990
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 686
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,497
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,205
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,072
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 951
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 929
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,138
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 952
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 907

 
  Character Left/Right Script
Posted by: Jacob__mybb_import1 - 03-20-2011, 09:15 PM - Forum: Scripting - Replies (3)

If you make a left, right, and center version of a skin, you can use this script to make all players of your game use it. The direction they are facing will change appropriately as they move.

[lua]left ="http://buildism.net/asset/file/152.png"
center = "http://buildism.net/game/defaultskin.png"
right = "http://buildism.net/asset/file/153.png"
character = nil


function propertyChanged(name, value)
if name == "Velocity" then
if value.x == 0 then
character.Skin = center
elseif value.x < 0 then
character.Skin = left
elseif value.x > 0 then
character.Skin = right
end
end
end

function childAdded(newcharacter)
if newcharacter:isA("Character") and game.Players:getChild(newcharacter.Name) ~= nil then
character = newcharacter
character.Skin = center
local c = character.Body:getChild("Controller")
if c ~= nil and c:isA("VelocityController") then
link(c.PropertyChanged, propertyChanged)
end
end
end

link(game.World.ChildAdded, childAdded)[/lua]

I'm thinking about officially adding this to the game. I would put space in the skin file for 2 extra heads, so you can do the effect with just one file, and it will work at any game. Opinions?

Print this item

  Buildism Pool
Posted by: Tyler - 03-20-2011, 07:59 PM - Forum: Current Games - No Replies

Buildism Pool,a place to just chill out.I made it myself and it's not that good but making games on Buildism is kind of hard.

But anyway,enjoy your swim :D.

Print this item

Wink My Birth-Day
Posted by: Paradox - 03-20-2011, 05:51 PM - Forum: General Discussion - Replies (6)

Is today! (March 20) Big Grin

Print this item

  Unable to start Buildism, first time!
Posted by: Leer10 - 03-20-2011, 06:31 AM - Forum: Suggestions - Replies (4)

I get some kind of error that prevents me from opening up any games:

[Image: afby3c.jpg]

Launch File:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="http://buildism.net/game" href="play.jnlp" spec="1.0+">
<information>
<title>Buildism</title>
<vendor>Buildism.net</vendor>
<homepage href="http://buildism.net"/>
<description>Buildism</description>
<description kind="short">Buildism</description>
<icon href="http://buildism.net/buildismicon.png" kind="default"/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se java-vm-args="-Xms512m -Xmx1024m" version="1.6+"/>
<jar href="Buildism.jar" main="true" download="eager"/>
<jar href="resources.jar" download="eager"/>
<jar href="lib/jsyntaxpane.jar"/>
</resources>
<application-desc main-class="net.buildism.Main">
<argument>308</argument>
<argument>Leer10</argument>
<argument></argument>
<argument>play</argument>
<argument>false</argument>
<argument>http://buildism.net/game/join.php?mode=play&amp;id=1485</argument>

</application-desc>
</jnlp>


Exception:
com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://buildism.net/game/resources.jar
at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
at com.sun.javaws.LaunchDownload$DownloadTask.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Wrapped Exception:
java.util.zip.ZipException: invalid entry size (expected 286138 but got 173463 bytes)
at java.util.zip.ZipOutputStream.closeEntry(Unknown Source)
at java.util.zip.ZipOutputStream.finish(Unknown Source)
at java.util.zip.DeflaterOutputStream.close(Unknown Source)
at java.util.zip.ZipOutputStream.close(Unknown Source)
at com.sun.deploy.net.HttpDownloadHelper.download(Unknown Source)
at com.sun.deploy.cache.Cache.downloadResourceToTempFile(Unknown Source)
at com.sun.deploy.cache.Cache.downloadResourceToCache(Unknown Source)
at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
at com.sun.javaws.LaunchDownload$DownloadTask.call(Unknown Source)
at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Print this item

Bug Can't start Buildism on the laptop
Posted by: Fat_Sacks - 03-19-2011, 08:14 PM - Forum: Suggestions - Replies (2)

I have the latest version of Java on my laptop, but for some reason it won't start. It starts and plays perfectly on my desktop. Any idea why it won't start?

Print this item

  3/19/11
Posted by: Jacob__mybb_import1 - 03-19-2011, 03:37 PM - Forum: News - Replies (6)

  • You can resize boxes now!
  • Grid snapping is a bit more intuitive

Print this item

  14 guests on at one time?!
Posted by: Qwertygiy - 03-19-2011, 12:13 PM - Forum: 2DWorlds Discussion - Replies (7)

Wow. I was only user on, but there were 14 guests at about 8:10 AM, eastern time. Someone make a thread on ROBLOX or MineCraft or something?

Print this item

Tongue Minecraft Rts
Posted by: Xray - 03-19-2011, 10:31 AM - Forum: Video Games - No Replies

http://www.minecraftforum.net/viewtopic.php?f=1&t=86396

Hope this is a new game not a mod to the Original. :3

Print this item

  Any creepypasta videos
Posted by: BuildistGuard - 03-19-2011, 05:37 AM - Forum: General Discussion - Replies (4)

Post any Creepypasta videos here. Rules: Do not have curse words or excessive blood in the videos. Look at this creepypasta, suicidemouse.avi. WARNING: IF IT SEEMS SCARY TO YOU, PLEASE DO NOT WATCH IT. Please also review the video above you.

Print this item

  What is your favourite kind of skin?
Posted by: Sazaho - 03-18-2011, 11:20 PM - Forum: Skins - Replies (2)

Which kind of skin do you prefer?

Print this item