Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - portify

Pages: [1] 2 3 4
1
Modification Help / (Resource) extraResources
« on: June 16, 2017, 05:30:12 AM »
This lets you add files to the download manifest without having to associate them with a datablock.
It is intended to replace cases where you would create an unnecessary ParticleData datablock just to have people download a bitmap.

Note: This does not let you force people to download files. The client-sided download filters are still respected, this just lets you save datablocks.

addExtraResource(string fileName)
  Add a new file for clients to download. Not all extensions are allowed by the engine.
  You should call this before the mission is created (inside add-on execution is fine).
  If you do need to add files after that, you'll need to call the following to update:

    EnvGuiServer::PopulateEnvResourceList();
    snapshotGameAssets();


Example:

     addExtraResource("Add-Ons/A_B/assets/textures/c.png");



https://github.com/qoh/bl-lib/blob/master/extraResources.cs

2
Gallery / Blockland.exe
« on: June 15, 2017, 01:50:30 AM »



3
Download Info

Show file size when downloading files on a server



Download Client_DownloadInfo.zip (677 bytes) from leopard.hosting

4
Off Topic / It's my 18th birthday and Evar's 20th birthday
« on: July 29, 2016, 12:30:02 AM »
Apparently we had our birthday on the same day two years ago as well.

I just wish we hadn't accidentally broken the streak by not posting last year. Or did we? I can't find a topic.








5
Add-Ons / Look Binds
« on: May 04, 2016, 05:45:13 AM »


Look in specific directions for alignment purposes or remembering what in the world those emitter directions are again.

Client_LookBinds.zip

6
Add-Ons / Centered Door Bricks
« on: May 02, 2016, 11:22:26 AM »
A set of modified default doors that align properly with 2x width doorways.



Brick_Doors_Center.zip

7
Add-Ons / Vehicle Collision Enhancer
« on: April 28, 2016, 05:00:01 PM »
Vehicle Collision Enhancer

What is this?

This add-on increases the work done by the game in order to detect vehicle collisions. This makes it a lot more difficult to drive through things.

What is this not?

This add-on does not fix vehicle collision resolution. It improves the detection of collisions, but it will not fix getting stuck in things (though it'll be less likely, since collisions will be detected earlier) or being employed in the space program against your will.

Preferences

$Pref::Server::VehicleCollisionIntegration (integer between 1 and 512, default for this add-on is 64)
The amount of work to do for each frame in order to detect vehicle collisions. Most vehicle add-ons use 4 by default, and this add-on will set it to 64. If you're using a dedicated server and it doesn't work well enough, feel free to increase this. This will adversely affect performance. If this add-on is slowing down your server too much and you think you'll be fine with less precision, you can decrease it. If you want to change it while a server is running, enter applyVehicleCollisionFix(); in the console after you change it.

Download

Download Server_VehicleCollisionFix.zip from justfilehosting.space.

8
Add-Ons / Fix Tool HUD
« on: April 23, 2016, 12:55:39 PM »
Fix Tool HUD

Properly updates the item menu for playertypes with more than 5 slots to stop items you actually don't have from showing up.

Download Server_FixToolHud.zip (1 KB) from justfilehosting.space.

9
Add-Ons / Extra Binds
« on: April 23, 2016, 12:45:18 PM »
Extra Binds

Adds various extra bindable actions and repurposes some default binds.

Keybinds:

  • Warp - shortcut for the /warp command
  • Reset Velocity - immediately enter and exit admin orb
  • Destructo Wand - shortcut for the /magicWand command
  • Wand - shortcut for the /wand command
  • Duplicator - shortcut for the /duplicator command
  • Fill Can - shortcut for the /fillCan command
  • Un-Use Tool - Unequip whatever you're holding without needing the spray can or other items
  • Move Up - moves the camera up - you can also use E (spray can) for this
  • Move Down - moves the camera down - you can also use Q (tools) for this

Changes:

  • The number keys (1234567890) will select/deselect items instead of bricks when in a mini-game with building disabled
  • The spray can and item menu toggles (E and Q by default) will move up and down when controlling a camera

Download Client_ExtraBinds.zip (2 KB) from justfilehosting.space.

10
Add-Ons / Global Music
« on: April 23, 2016, 10:15:30 AM »
Global Music

Adds events to play per-client or per-mini-game music in 2D, globally. Does not require a pre-placed music brick or a client-sided add-on.

Client | setMusic | Music | Volume
MiniGame | setMusic | Music | Volume


Download Server_GlobalMusic.zip (1 KB) from justfilehosting.space.

11
Add-Ons / Default Mini-Game
« on: April 23, 2016, 10:15:02 AM »
Default Mini-Game

A new add-on for changing the default mini-game. It does not use packages to spawn people into mini-games or prevent them from leaving, it just sets the mini-game as default in the same way that game-mode mini-games work. Both commands are Super Admin only, and the default mini-games will behave just as game-modes do.

/SetDefaultMiniGame
  Set the mini-game you are in as the default mini-game.
/UnSetDefaultMiniGame
  Unset the default mini-game.


Download Server_DefaultMiniGame.zip (1 KB) from justfilehosting.space.

12
Add-Ons / Free Teleport
« on: April 23, 2016, 10:14:28 AM »
Free Teleport

Allows anyone to use F8, F7 (admin orb), /warp and /find without being admin.

Download Server_FreeTeleport.zip (1 KB) from justfilehosting.space.

13
This was a random script from over a year ago that I found lying around in my gists. Here's a client-sided add-on with it.

Download Client_LoadingPreview.zip from justfilehosting.space.

14
Add-Ons / New Brick Tool | 1.2.0: Admin orb building
« on: April 17, 2016, 11:23:04 AM »
New Brick Tool
Long-range instant ghost action

Description
Supercharge the function of the default ghost brick placement tool! With this add-on, ghost bricks will instantly be moved when you click somewhere (instead of waiting for a projectile), and it works at a distance (like the admin wand). Additionally, holding down left click will cause the ghost brick to continually follow along with your aim.

Preferences


  • $Pref::Server::NewBrickTool::AllowRepeat (boolean, default is true)
    Should holding down left click repeatedly move the ghost?
  • $Pref::Server::NewBrickTool::PlayerRange (number, default is 1000)
    The maximum placement range for normal players
  • $Pref::Server::NewBrickTool::AdminRange (number, default is 1000)
    The maximum placement range for admins
  • $Pref::Server::NewBrickTool::AdminOrb (boolean default is true)
    Enable brick tool controls while controlling a camera
  • $Pref::Server::NewBrickTool::IgnoreRayCasting (boolean default is true)
    Let the brick tool place ghosts on bricks with raycasting disabled

Contributing

Feel free to fork the repository at https://github.com/portify/Server_NewBrickTool and send pull requests.
Report issues at https://github.com/portify/Server_NewBrickTool/issues.

Download

Download Server_NewBrickTool.zip from GitLab Pages.

15
April Fools 2016 / No more
« on: April 01, 2016, 09:50:05 AM »
I hope you enjoyed it :P

Pages: [1] 2 3 4