• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Lua TFS 1.3 Script Show Text

Forkz

Advanced OT User
Joined
Jun 29, 2020
Messages
586
Solutions
17
Reaction score
159
Hi otlanders,

Could someone help me create a show text script for this item?

Screenshot_38.png
 
Solution
X
Untitled.png
LUA:
    local text = "Report X-1345"
    text = text .. "\nSulphorous steam produced by plant sample proved highly toxic. Do not inhale, wear goggles, keep antidote potion nearby just in case."
    text = text .. "\n\nReport X-1346"
    text = text .. "\nMixture of sulphorous steam and troll urine exploded upon shaking. Wall should be replaced."
    player:showTextDialog(12396, text, false)
Untitled.png
LUA:
    local text = "Report X-1345"
    text = text .. "\nSulphorous steam produced by plant sample proved highly toxic. Do not inhale, wear goggles, keep antidote potion nearby just in case."
    text = text .. "\n\nReport X-1346"
    text = text .. "\nMixture of sulphorous steam and troll urine exploded upon shaking. Wall should be replaced."
    player:showTextDialog(12396, text, false)
 
Solution
Back
Top