Jump to content
UBot Underground

blumi40

Fellow UBotter
  • Content Count

    872
  • Joined

  • Last visited

  • Days Won

    29

Posts posted by blumi40

  1. Interesse schon, jedoch passt mir dieses Investment überhaupt nicht.
    Schliesslich weiß ich nicht
    1. Wie Dein Code nun wirklich funktioniert und ob er funktioniert...
    2. Wie Zeitintensiv die Einarbeitung in die Projekte ist (Kann man dem Kunden ja nicht berechnen)
    3. Stundensatz von € 35,--- ist viel zu wenig. Was soll da hängen bleiben nach Abzug der Steuer etc (Deutschland)
    4. Kann ich nicht wirklich ermessen, wie hoch letztlich ds Auftragsvolumen des Kunden sein wird.

    Zu Punkt 1
    Natürlich spreche ich Dir Deine Skills nicht ab, verstehe das bitte nicht falsch nur aus Erfahrung heraus, weiß ich das eine Übernahme von bestehenden Projekten auch ganz ganz viel Anpassung für den der diese übernimmt, bedeutet.

     

    Gruß Arno

  2. Aymen got many Videos about that.
    And what u want is one of the easiest things with the Postplugin.
    Everybody who watch the Video can do this.

     

    the forum and all the guys here has unwritten rulez evrybody knows.

    one of that is "how to ask for help"

    the next "is the person who ask willing to try things by self"

    what we do is helping each other, but no one of us will be willing write u a script if we see u dont have any idea about coding and ubot.

    learn things and show what u have done and then ask in a rigth way and im 100% sure u will get answer !

     

    But if u need someone who write a script for u, then tell us your budget and maybe u find a person who do that for u.

     

    Helping each other is fine but a giveaway and if ppl wanna get help there have to deal with some rulez!

     

    LEARN IT !

  3. if u dont understand, why u use it?
    we like to help but, men u have things to learn by ya self....
    i see no wait in your loop...u fire google like a bigone thats what i see and thats why u dont get results.
    also maybe im blind but i dont see any proxymethode on your script!
    If u wanna know how to work with Ubot and Socket learn it there are enought tuts about here in the forum

    • Like 2
  4. I'm not sure about the future and what it holds concerning this but I can say that those extensions are made using Javascript and Ubot can run Javascipt so you can just use that instead. You can locate your extensions directory (Google it) and just copy their code right into the run javascript node and that should get you pretty far (might need to modify the code in some cases).

    clever! i never thinks about that, nice idea !

  5. Why - if you make it optional for people to pay they won't, human nature for most people.

    Sorry to hear of the one idiot.......more work for you now :(

    it's exactly what ithing!

    if it is  only "your hobby" why u don't give your knowHow for free?

    if ppl like what u do there will donate your work...i'm sure !

    i nevere ever would spend one cent for things i don't know about and without testing!

     

    at the end a Parent/Child/Sibling/Offset is not enought for me as example.

    and a well writen program has absolute nothing to do with c/p stuff from tutorials!

     

    with ubot, nobody must start from scratch, but at the end there all have to learn a lot.

    understand programminglogic, understand that many times JS does the Job much better then the ubot givem functions, needs a while.

    and by the way...ubot is the wrong software for teaching ppl logic of things, because many things that runs with python php c# or even javascript are not possible with ubot.

     

    There are so many ppl here who made a mass of PlugIns for Ubot and nearly all of them offers also many nice PlugIns for free.

    Don't understand me wrong, but a Comnunity is for helping each other and to help each other should be free and seeing as a kind of Hobby.

     

    By the way, my thx for all the guys who helps and brings freebies for us i'm allways ready to pay for stuff u doing byside your freebies if i need that stuff !

     

     

  6. Hi

     

    maybe this can help u

    ui html panel("<html><head>
    <meta charset=\"utf-8\">
       <script src=\"http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js\"></script>
       <script>
    $(function()\{
        $(\'#myvar\').on(\'change\', function()\{
    
          // only one Time Dom-Search
          var m = $(\'#myvar\');
    
          // look if the inputfield is not empty
          if(m.val() != \"\")\{
    
          //console.log(\'works\');
          // starts the define with your jobs
          ubot.runScript(\'do_the_job()\');
          // set the input back to empty
          m.val(\"\");
          \}
    
        \});
    \});
       </script>
    
      </head>
      <body>
    
      <input type=\"text\" id=\"myvar\">
    
      </body>
    
      <html>", 100)
    define do_the_job {
        alert("works!")
    }
    
    

    blumi

    • Like 2
×
×
  • Create New...