Результаты поиска

  1. myndeswx

    Variable in C#

    var someCoordinate= Convert.ToDouble(project.Variables["latitude"].Value); //do some maths in here //at the end convert it back to string rounding to 7 after the dot project.Variables["latitude"].Value = Math.Round(someCoordinate,7).ToString(); For more fancy stuff with coordinates look in...
  2. myndeswx

    Help with file columns

    Use a temporary table, say you have your 'good' table and create another empty table (don't load from file, it must be empty at the begining) Templates logic: use 'Get line' action to get from 'good table' check 'remove after getting' > put the A columns value to 'temp' variable add to 'temp'...
  3. myndeswx

    Correct connection of a Samsung S9, with Android 10

    Congratz on getting it to work, those S9 are PITA to root haha
  4. myndeswx

    how to click ou view click http get, http post

    None, no one really uses such sites, just use decent proxies and do not worry about it :-)
  5. myndeswx

    how to click ou view click http get, http post

    Everything is in the http response, it's just in text and you have to use regex to extract it, but I suggest you just not using IPQS, it is useless, save some time :- )
  6. myndeswx

    How to check if there are numbers in a variable?

    Regex cube with \d (means any number in regex) make sure to check 'error when the answer is empty Will result in good exit if it has any number and bad exit if it does not have a number
  7. myndeswx

    Profiles and Cookies

    Let me know how it goes :- )
  8. myndeswx

    Profiles and Cookies

    If you want actual results build a good old PBN with AI content, that's what's still working =)
  9. myndeswx

    Why start an instance is slow in Zenno Maker?

    It's just how zenno works, it takes a bit to load the browser ¯\_(ツ)_/¯
  10. myndeswx

    Profiles and Cookies

    I just told you that it does not work :- )
  11. myndeswx

    Profiles and Cookies

    The real question is, do you care about the visits metrics or rankings manipulation, because if your plan is to get better rankings I can sincerely suggest you not to waste time, there are a lot of studies on this in the forum - it does not work (for google)
  12. myndeswx

    Removing accents from names helps

    \~|\^|' Use text processing cube with regex option and replace all. | - means 'or' \ - used to escape special characters
  13. myndeswx

    (bad end) leaving spaces in the file, help

    uhmm, simply before adding to this table create a cube with this logic - '{-variable.nomeA' != '' good exit- add to table, b bad exit - display error notification and DON't add to table (because variable is empty)
  14. myndeswx

    Profiles and Cookies

    #1 straightforward way - create a machine for every account #2 the not so straightforward way - log in with account, export app data, save all phone parameters in a file, clear everything. Load that app data when you need to use it again It has to be done very carefully, a lot of room for error...
  15. myndeswx

    Error in the chromium function, help

    'bad end' cube executes only when there is an error in the project create 'if logic' cube somewhere in your flow, put 1>2 inside and your 'bad end' will execute
  16. myndeswx

    how to click ou view click http get, http post

    Everything seems to work fine : )
  17. myndeswx

    Create variables in batch using CSV header names

    How do you think to use those variables, if you don't know what their names will be?
  18. myndeswx

    Create variables in batch using CSV header names

    Does not work like this? Or you want your variables to be named like your csv file headers :?
  19. myndeswx

    Extracting data without accessing the website

    A screenshot would definitely help, with traffic window open, 'parameters' and 'response' tabs open (like in my previous screenshot) need to see the http response code, is it 200 or 429 or what ) It doesn't make much sense, only thing that comes to mind would be test different http methods...
  20. myndeswx

    Extracting data without accessing the website

    Sure, but you have to give some information about what is happening
  21. myndeswx

    How to load CRT?

    Just FIY, if your provider requires that - they are going to break the HTTPs protocol - so called MITM attack, and will be able to see all your request, and even modify them, very unsafe. :-) It's not really ZP related, you have to install certificates on your windows CA manager
  22. myndeswx

    ChatGPT drag n drop images

    Simply click on the big red 'record' button, upload your image(s) to chatgipity and stop recording. You will get a couple cubes created like 'file upload' and 'click element' You will have to modify the 'file upload' action to upload other images Also inspect the 'click element' action...
  23. myndeswx

    Extracting data without accessing the website

    Interesting, it works for me. Go to window> traffic Then make that POST request In the bottom 'traffic' window double click on the request Open the 'response' tab and send the screenshot here
  24. myndeswx

    Extracting data without accessing the website

    There you go, generating through HTTP requests, might want to use a proxy though :- )
  25. myndeswx

    Trouble Sending Image via HTTP Request

    It could be because you're missing the user agent, in all http requests user agent must be the first header give it a try like this string[] headers = { "User-Agent: Curl", "Authorization: Bearer " + apiToken, "Content-Type: " + contentType }; The post method itself has the...
  26. myndeswx

    Get number of threads and then make action in one of them

    use 'global variable', it would have 3 states 1- need to rotate , 2- rotating, 3- ready any thread that starts should check the state of that global variable, if it needs to rotate- start rotation and set value to 'rotating' if rotating - just wait until it's ready
  27. myndeswx

    Isolating Clipboard Across Multiple Threads to Avoid Data Mixing?

    Seems like you're overcomplicating it a bit, this is what I would suggest you to do if you really want to use the clipboard and not setting it to variable: Simply create a global variable - these variables are shared between threads. So the default value would be false, before copying something...
  28. myndeswx

    [EN] [ZDE] Discord Account Creator for phones + hCaptcha solver for Android

    Solid, have my vote :az:
  29. myndeswx

    Creating a ZAAS

    Zenno as a service. Never heard of it? Well, because I just made it up Zenno is a very powerful tool, it can do all kinds of fancy things, but it's main downside in my opinion is - frontend. For database you can connect it to mySql, then dance with tambourines to create custom coded pages...
  30. myndeswx

    Parse a float vs assign a float to variable : inconsistant storage

    I think you made a correct assumption, all the variables you see in the project maker are actually strings (notice when you want to use any variable of your project in C# cube you have to parse it first) so it's some kind of weird parsing happening, interesting why it's rounding up to the upper...
  31. myndeswx

    Сontest The 1st Template Contest

    Let's go! :ar:
  32. myndeswx

    Trick to find what's slowing your template down

    Pretty sure 'traces' exist for as long as I have been using ZP haha
  33. myndeswx

    Trick to find what's slowing your template down

    Noticed one template running kind of slower today, decided to investigate and found it really useful simple way to track down which actions are causing it, so lets go! #1 We enable the 'trace execution' #2 We open CMD and navigate to the traces folder, fx "cd...
  34. myndeswx

    [Чек номеров Whatsapp] - Проверка телефонных номеров на наличие Whatsapp

    All good, checker works, author helped to fix some issues :-)
  35. myndeswx

    Anonymity + ZP

  36. myndeswx

    Anonymity + ZP

    What's UBT? : -)
  37. myndeswx

    Start on boot

    Having issues with ZD starting on server reboot, using task scheduler - it starts hidden, only visible in task manager, using a shortcut in the startup folder - completely ignored. What solutions do you guys have managing RDPs? Thank you
  38. myndeswx

    Need few templates

    Actually have this made for myself without browser but on get/post, could adjust it for you :-)
  39. myndeswx

    Проверка на десятки признаков в ZennoDroid Enterprise за пару секунд

    Nice! After using ZD for a while I realized to use the same method, just get the XML once and regex the contents to see what state is it in. It is also important to check the 'bounds' because the element can be on the XML but not visible on the screen (need to scroll if you need to click it).
  40. myndeswx

    I got the error project does not contain default settings when selling templates using plugins to customers

    This project in fact does not contain settings, probably client is using an old project that needs to be updated? This ZP is pretty old version 7.7.3 maybe your template was updated using the newer versions, and can't run on this version of zennobox
  41. myndeswx

    How to get the Last Line of Excel?

    If the table does not show up means zenno can't load the file, probably the file name is incorrect(you have variables in there so check that), remove spaces, another known problem is that if you have excel open on your PC - zenno will not be able to write to it, so close the file on you PC...
  42. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Sounds like dealing with medium.. had similar headaches with it recently lol ) Well, here's what I came up with, give it a try, it's not tested on chatgpt, but I think it should give you a rough idea of what is possible, also be warned that clipboard is shared between threads!!! Tab tab =...
  43. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    Goot it, well just FIY you can ask the for markdown in the API response, and it does a pretty good job, same for HTML responses ;-)
  44. myndeswx

    How to Simulate Text Selection : Get the ChatGPT answer

    What is the reason for not just using the API?
  45. myndeswx

    What ZennoPoster version(s) are you using?

    7.7.5 was good, then there were issues, the new 7.7.9 seems to be working pretty stable :-)
  46. myndeswx

    Discussion - new version 7.7.9.0

    • Fixed the page scale when setting window sizes larger than real ones in Chromium browser.
  47. myndeswx

    Get page headers from a request

    Yes, before visiting the site on the browser run this- instance.UseTrafficMonitoring = true; var traffic = instance.ActiveTab.GetTraffic(); foreach(var t in traffic) { if (t.Url.Contains("the url that contains your headers")) { return t.Url; // it can also be t.RequestBody...
  48. myndeswx

    I want change navigator.userAgentData,but no tips

    Give it a try, at least I use it like this
  49. myndeswx

    I want change navigator.userAgentData,but no tips

    when starting the instance you can set the user agent in chrome, that should also automatically get used in navigator- Some example how to set the navigator fields instance.ShowNavigatorField(ZennoLab.InterfacesLibrary.Enums.Browser.NavigatorField.Vendor)...
  50. myndeswx

    Gpts : Let's create Virtual assistant for Zeno!

    All the C# methods are here - https://help.zennolab.com/en/v4/zennoposter/macros/4.3.5/webframe.html