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 242 online users. » 0 Member(s) | 240 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,313
|
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 740
|
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,526
|
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,233
|
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,117
|
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 982
|
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 964
|
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,176
|
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 986
|
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 939
|
|
|
[Wiki]unable to save pages |
Posted by: RA2lover - 03-31-2012, 09:25 PM - Forum: Bug Reports
- Replies (6)
|
 |
i've tried to make an update to the Water article.
saving the page, "Sorry! We could not process your edit due to a loss of session data. Please try again. If it still does not work, try logging out and logging back in. "
logging out and in again didn't help either.
Code: '''Water''' is a new object to Buildism. It was first added on February 25th, 2011. It simulates the effect of water on parts, but it does not flow on its own. Water has several properties that you can adjust in the properties table.
==Properties==
{{Property|Locked|Whether the part can be selected or moved. If you give players building tools, lock the parts you don't want them to mess with.|Boolean}}
{{Property|Color|The part's color.|Color}}
{{Property|(Hidden)Layer|What layer the part is on (0-2). Default is 1. 0 is behind the character; 2 is in front.|Integer}}
{{Property|(Hidden)Fixed|Anchors the part to the background. Default is True.|Boolean}}
{{Property|Transparency|How transparent the part is. Doesn't work completely on Water right now. (0-1)|Decimal}}
{{Property|ShowBorder|Whether the part should have a border or not.|Boolean}}
{{Property|(Hidden)Collidable|Determines whether the part can collide with other parts. Default=False|Boolean}}
{{Property|(Hidden)CharacterCollide|If this is set to false, characters will not collide with the part but other parts will. Default is False.|Boolean}}
{{Property|(Hidden)Platform|If this is enabled, characters will not collide with the part if they are moving upwards. This allows you to make retro-style 2D platform games in combination with [[ladder]]s.|Boolean}}
{{Property|Position|The part's current position in the world.|Vec2D}}
{{Property|(Hidden)Rotation|The part's rotation in degrees.|Decimal}}
{{Property|(Hidden)Velocity|The part's linear velocity.|Vec2D}}
{{Property|Size|The box's dimensions.|Vec2D}}
{{Property|WaterDensity|Water's Density. Lighter objects will float, denser ones will sink.|Number}}
{{Property|Current|How fast objects in the water are pushed around.|Vec2D}}
{{Property|Drag|How viscous the water is. Default is 1|Vec2D}}
{{Property|(Hidden)Bounciness|How much a part's velocity is multiplied when it collides with the part. 1 means it will bounce indefinitely.|Decimal}}
{{Property|(Hidden)Friction|How resistant the part is to other parts moving over it. When two parts collide, the coefficient of friction between them is calculated as sqrt(part1.friction * part2.friction).|Number}}
|
|
|
AutoIt stuff |
Posted by: RA2lover - 03-31-2012, 07:08 PM - Forum: Programming
- No Replies
|
 |
post your AutoIt creations here.
i'll start with this program, made in about 30 minutes(yay for looking for documentation every time cared: ) to type text into boxes where you can't paste things directly(most notably, my school's online essay system, even though i don't use it anymore)
Code: Opt("SendKeyDownDelay",1)
Opt("SendKeyDelay",1)
$File=FileOpen("String.txt")
If $File == -1 Then
MsgBox(0,"Error","String.txt not found")
Else
MsgBox(0,"TypePaster","Select the window then click OK here")
Send(FileRead($File),1)
MsgBox(0,"TypePaster","Paste Successful!")
EndIf
|
|
|
|