Jump to content
UBot Underground

[Sell Plugin] Advanced Data Text File


Recommended Posts

  • 1 month later...
  • Replies 544
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

V3.3.4.1 (Warning. This amendment makes a difference to the previous version. File a previous version of the plugin will not work correctly.) Improvement command table search Merge command $pad left

V2.0.1.5 Add Option: remove blank lines : Trim Mode remove blank lines : Multiple Spaces To One Space remove blank lines : Multiple New Line To One New Line   Update Sample File: $remove blank lines

4.0.2.0 (BETA) (Warning. Your old code can not be used with the new version of the plugin.) string encode/decode     - re-name option     - add field "Encode/Decode"      string encrypt/decrypt:     -

Posted Images

  • 4 weeks later...

 

4.0.9.0 (BETA)
Add new command
csv to json
csv to xml
 
Donate for new commands

 

 

 

Thanks for updating! But there's a problem on csv to xml.

 

I tried it like this

set(#Debug,$plugin function("Advanced Data Text File.dll", "$csv to xml", "title,desc,url
test title,test desc,https://bitgur.com"),"Global")

The result is just </root>

Link to post
Share on other sites

Ok thanks. one last bug. On csv to json when you put file path instead of string its still blank.

i test working

check your csv file path and data inside

Link to post
Share on other sites
  • 3 weeks later...
  • 2 months later...

Here giving paste link cuz forum not allow to post that long code. https://paste.ee/p/t7sTC

Your code is invalid.
Did you see the code sample?
See sample code "Excle (Read-Write) \ save table to excel file - 17-11-2017.ubot"
  • Like 1
Link to post
Share on other sites
  • 4 weeks later...
  • 2 months later...

 

4.1.0.0
add new command
$change file extension

 

may i suggest a useful function:

 

random to text: min, max, how many numbers,no repeat,delimiter

 

for example: i need random 5 numbers  from 1 to 100, the result maybe

2,45, 52,72,98

or 

4

35

67

79

88

 

if no clear, reply to continue

Link to post
Share on other sites

may i suggest a useful function:

 

random to text: min, max, how many numbers,no repeat,delimiter

 

for example: i need random 5 numbers  from 1 to 100, the result maybe

2,45, 52,72,98

or 

4

35

67

79

88

 

if no clear, reply to continue

try

clear list(%num)
set(#i,1,"Global")
loop(100) {
    add item to list(%num,#i,"Don\'t Delete","Global")
    increment(#i)
}
load html($plugin function("Advanced Data Text File.dll", "$nl to br", %num))
loop($list total(%num)) {
    set(#Num,$plugin function("Advanced Data Text File.dll", "$list random", %num, "-1", 1, "True", "False"),"Global")
    load html("List Total = {$list total(%num)}<br>
Random = {#Num}")
}
 
 
 

 

Link to post
Share on other sites

 

try

clear list(%num)
set(#i,1,"Global")
loop(100) {
    add item to list(%num,#i,"Don\'t Delete","Global")
    increment(#i)
}
load html($plugin function("Advanced Data Text File.dll", "$nl to br", %num))
loop($list total(%num)) {
    set(#Num,$plugin function("Advanced Data Text File.dll", "$list random", %num, "-1", 1, "True", "False"),"Global")
    load html("List Total = {$list total(%num)}<br>
Random = {#Num}")
}
 
 
 

 

thank you pash, i know it can set like that, but more complicate, if a function can do, also i need the several number extract from the range to be different and random.

Link to post
Share on other sites

thank you pash, i know it can set like that, but more complicate, if a function can do, also i need the several number extract from the range to be different and random.

easy. at command $list random set count to 5

Link to post
Share on other sites

thanks,pash,this is a good solution,but a function will save you lot of time.

Your request seems better suited for a define than a plugin function. It's very specific, and those types of things are usually better suited for defines. Just my opinion. :-)

Link to post
Share on other sites
4.1.3.0

Add new command

zip files: add files to Zip

zip folders: add folders to Zip (not create seclect folder at root best for FTP)

unzip file: unzip file to seclect folder
Link to post
Share on other sites

 

4.1.3.0
Add new command
zip files: add files to Zip
zip folders: add folders to Zip (not create seclect folder at root best for FTP)
unzip file: unzip file to seclect folder

 

the password not working, and when comment is blank, the password will be error

Link to post
Share on other sites
  • PRO locked this topic
Guest
This topic is now closed to further replies.

×
×
  • Create New...