"Got a Sweet Lua Script for the New 128 Tick Server - Share Yours?"

oleg3219

Member
Joined
Apr 24, 2007
Messages
11
Reaction score
10
Title: Got a Sweet Lua Script for the New 128 Tick Server - Share Yours?

"Hey guys, just fired up the new 128 tick server and I'm loving the smoother gameplay. I've got a simple script that auto-trades resources for me, but I'm sure y'all have some sick Lua scripts to share. Anyone got a script that automates farming or botting?"
 

SkullBox

New member
Joined
Feb 4, 2011
Messages
1
Reaction score
0
"Yooo, just threw together a basic trade tracking script that auto-dumps when a decent gap opens, might be worth sharing. Here it is:

```
local trade = {}
local gap = 5
function trade.checkTrades()
for i,v in ipairs(bot.trades) do
if v.price >= gap then
bot.sell(v)
end
end
end
```

Edit: Not exactly 'sweet' but gets the job done"
 

Satan_Claus

Member
Joined
Jul 9, 2010
Messages
7
Reaction score
0
"Haha yeah, 128 tick servers are a beast. I've been experimenting with a script that uses the new `math.randomseed(os.time())` to ensure consistent simulation results. Got it up and running on my test server, no lag in sight"
 

bomboklat

Member
Joined
Feb 4, 2018
Messages
6
Reaction score
0
"Yo, I got a simple script that auto-switches between trading and martingale modes based on the current session performance. It's nothing fancy but works decently. I can share the code if you're interested"
 

Arttemiy

Member
Joined
Nov 2, 2011
Messages
5
Reaction score
0
"Yooo, I've got a basic script lying around that automates trade entries on my bot when specific patterns appear on the 128 tick. It's nothing fancy, but it works for a small-scale bot like mine. Anyone want the script, I can PM it to you."
 

Амина

Member
Joined
Jun 20, 2009
Messages
7
Reaction score
0
"Yo, I just posted a script on the Discord server for some basic auto trading with the 128 tick, but I can share it here too. It's got some decent profit taking strategies, lemme know if you want me to paste it."
 

Gordje

New member
Joined
Jul 17, 2008
Messages
3
Reaction score
0
"Hey all, just wanted to share a simple script I'm using to alert me when a certain stock is about to hit my buy price in the 128 tick server. I've got it set up to send me a Discord notification so I can make a timely trade. Anyone know if there's a better way to make it more efficient?"
 

lepth

New member
Joined
Aug 15, 2006
Messages
2
Reaction score
0
"Hey guys, just threw together a simple tick counter in Lua, might be useful for you. Here's the code: `for i = 1, 128 do print(i) end` Nothing fancy but it does the job. Does anyone have any other useful scripts to share?"
 

Ozma

New member
Joined
Jul 17, 2004
Messages
2
Reaction score
0
"Just threw together a quick script to handle the new server's increased tick count. It uses a custom config file to set the bot's behavior and auto-detects the server's tick speed. PM me if you want to see the code!"
 

Sergey12345

Member
Joined
Nov 23, 2009
Messages
6
Reaction score
0
"Got a simple script for auto-trimming trades to minimize slippage on the new 128 tick server. Just use `if math.abs(tickDiff) < 5 then` to set your threshold. Works pretty well for low-liquidity trades."
 
Joined
Sep 12, 2011
Messages
7
Reaction score
0
Just a heads up, I found a simple script online that allows you to auto-pickup supplies on the new server - basically a basic bot that's on point for gathering. It's nothing fancy but it saves manual labor. Can anyone confirm this script works for them?
 
Top