• 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!

How can i do that? (solved)

StormRusher

New Member
Joined
Dec 23, 2009
Messages
138
Reaction score
0
I am trying to make a broadcast message which contains the count of the two teams in my enforced, the count of team 1 is stored in getGlobalStorageValue(1), and the team 2 in getGlobalStorageValue(2), i tried to do like that
Lua:
doBroadcastMessage("Team Count - Team1: getGlobalStorageValue(1) Team2: getGlobalStorageValue(2)")

The message stay like that:

Team Count - Team1: getGlobalStorageValue(1) Team2: getGlobalStorageValue(2)

Someone please help me :peace:
 
Last edited:
Try:
Lua:
doBroadcastMessage("Team Count - Team1: "..getGlobalStorageValue(1).." Team2: "..getGlobalStorageValue(2).."")
 
Back
Top