Недавний контент Lannister

  1. L

    Where is option to set up user agent ? ? ?

    It works. Thanks
  2. L

    Where is option to set up user agent ? ? ?

    Hi, How i can set a custom user agent ? Thanks
  3. L

    Where is option to set up user agent ? ? ?

    nobody know ?
  4. L

    how to get a random line from a random file

    Thanks it works, in the file path of the list i set : {-Directory.RandomFile-|-{-Project.Directory-}\files-} ,(I did not think it would work -_-)
  5. L

    how to get a random line from a random file

    Thank you for your help :) but it does not delete the line in the file. If i want to do that i need to take the content of the file & delete it, get a random line, and write a new file with the new content. that's a lot of blocks :/
  6. L

    how to get a random line from a random file

    hi, how to do that in ZP4 : {-File.GetString-|-{-Directory.RandomFile-|-\Resources\-}-|-random-|-true-} ZP4 is become so complicated :/ thanks !
  7. L

    Where is option to set up user agent ? ? ?

    how i can set a custom user agent ? Thanks
  8. L

    Run program - crash

    hi, i have the same problem,is that a bug ? is there another way ? thanks
  9. L

    Create Text File from an Variable

    it works, Thank you :)
  10. L

    Create Text File from an Variable

    it create a text file with no name :( i have upload my example (I want the number generated is the file name) in ZN3 i just have to do that : {-File.AppendString-|-\Results\{-Random.Int-|-1-|-999-}.txt-|-test-|-true-} ^_^
  11. L

    Create Text File from an Variable

    hi, i have the same problem. Anyone has the solution ? thanks
  12. L

    New macro system

    yes, but with that configuration i must change all my templates at each time i need to do a modification. I have try the global variable but the value disappear when i create a new template :/
  13. L

    New macro system

    Hello, In zenno 3 i use a text file which contain all the configuration for 30 templates. Inside the file i have some macro like {-Person.HumanLogin-|-[Eng|2][RndNum|100|999]-}, now how i can do that ? Thank you :)
  14. L

    ZennoPoster Mental Power

    In zenno 3 i use a text file which contain all the configuration for 30 templates. Inside the file i have some macro like {-Person.HumanLogin-|-[Eng|2][RndNum|100|999]-}, now how i can do that ? In zenno 3 we can use, for example {-Random.Int-|-0-|-100-} without creating a block, is that...
  15. L

    How to Find and Replace with RegEx??

    maybe this code will help you : var txt="phrase1. phrase2"; var taille = txt.length; var espace=txt.indexOf('.',1); var chaine1="new phrase" var chaine2=txt.substr(espace, taille); var phrase=chaine1+chaine2;