xabbo-scripts/Scripts/PlaceBCWall.csx
Administrator 7a548130a3 Move all scripts into Scripts/ subfolder
Keeps the repo root clean - only README.md visible on landing page.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-16 09:49:37 +01:00

34 lines
698 B
C#

///@name BC Booster
int max = 500;
var roomItem1 = 1845970;
var roomItem2 = 10075;
var x = 3;
var y = 10;
var wallItem1 = 1845976;
var wallItem2 = 12149;
var wallItem3 = ":w=0,9 l=3,28 l";
while (Run)
{
// Place room item
Send(Out.BuildersClubPlaceRoomItem, roomItem1, roomItem2, "", x, y, 0, true);
// Place wall items
for (int i = 0; i < 3; i++)
{
Send(Out.BuildersClubPlaceWallItem, wallItem1, wallItem2, "", wallItem3, true);
}
// Check if the number of furniture exceeds the maximum
var furniCount = Furni.Count();
Status($"Furnitures: {furniCount}");
if (furniCount > max) Shout(":pickallbc", 0);
Delay(100);
}
Log("KingDave");