Jump to content
  • 0

AutoSQLModGT

Question

1 answer to this question

Recommended Posts

1 hour ago, AutoSQLModGT said:

Are Its Possible To Create And Write File From GGPromt Results?

Yes it is possible , execute this code with GG , write anything you want and new file will be written :

-----------------------------------------------------

info = gg.prompt({"type text for write file"},nil, {"text"})
if info == nil then return end
file = io.open(gg.getFile()..'.File', 'w')
file:write(info[1])
file:close()
os.exit()

-----------------------------------------------------

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.