tgoop.com/LuaGameguardian/1390
Last Update:
function count(x)
return string.len(x)
end
function acar(x)
return string.char(x)
end
function colusion(x,s)
s=math.abs(s)
w={}
r=''
for k in (x):gmatch('([+-]*)') do r = r..k
if string.find(k,"%+")==1 then
v=count(k)
if #w > 0 then
table.insert(w,math.floor(w[1]+v))
table.remove(w,1)
end
if #w < 1 then
table.insert(w,math.floor(v))
end
print(acar(w[1]+s))
end
if string.find(k,"%-")==1 then
v=count(k)
if #w > 0 then
table.insert(w,math.ceil(w[1]-v))
table.remove(w,1)
end
if #w < 1 then
table.insert(w,math.ceil(v))
end
print(acar(w[1]+s))
end
end
end
function pointer(x)
v=string.match(x,"(.*)%[")
v2=count(v)
s=string.match(x,"%[(.+)%]");
s2=string.match(x,"%]%>(.*)");
t={}
r=''
for k in (s):gmatch('([+]*)') do r = r..k
if string.find(k,"%+")==1 then
table.insert(t,k)
end
end
for i = 1,#t do v3=count(t[i])
colusion(s2,v3*v2)
end
end
◈ ━━━━━━━ ⸙ ━━━━━━━ ◈
⭐ Small Compiler Brainfuck Gameguardian
>>for one loop pointer<<
@Luagameguardian
@Vikarihonest
BY Lua Gameguardian
Share with your friend now:
tgoop.com/LuaGameguardian/1390