Posted
static int auxupvalue(DWORD rL, int get) {
const char* name;
int n = r_lual_checkinteger(rL, 2);
rluaL_checktype(rL, 1, LUA_TFUNCTION);
if (lua_iscfunction(L, 1)) /* cannot touch C upvalues from Lua */
{
printf("f\n");
return 0;
}
else
{
name = get ? r_lua_getupvalue(rL, 1, n) : r_lua_setupvalue(rL, 1, n);
if (name == NULL)
{
return 0;
}
else
{
lua_pushstring(L, name);
lua_insert(L, -(get + 1));
return get + 1;
}
}
}
custom lib for luau transpiler.
Replied
1.There are no upvalues
2.This won't touch roblox in anyway
3.This won't work in a transpiler
4.You're a skid
Cancel
Post
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
Replied
no way to do it?
Cancel
Post
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
Discord : Doctor Doom#0550
Replied
@Moon First of all from his buffonary, this would never in a million years work on a transpiler.
Cancel
Post
My Discord is xwyvern
https://i.imgur.com/mH521VR.png
https://media.discordapp.net/attachments/1010636204225601659/1012865624797610044/sKQybOLT.gif
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post