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

Lua Duplicate variables?

mayel

New Member
Joined
Sep 11, 2009
Messages
174
Reaction score
2
Location
Stockholm, Sweden
Anyone know how to duplicate variables in lua?
So that:
var = 1
var2 = var
var =10

And now var is 10 and var2 is 1.

Thanks in advance...
 
What?
Duplicate variables is to make a copy of a variable(var) without having the new variable(var2) be assigned to the old variable if the old variable is having a new assignment.
 
Back
Top