Jump to content
UBot Underground

Praney Behl

Fellow UBotter
  • Content Count

    2328
  • Joined

  • Last visited

  • Days Won

    94

Posts posted by Praney Behl

  1. I know what you are referencing to. I have been in your shoes many times. Unfortunately that is how Ubot works. You can run a thread to in your bot and clear that cache every X no. of secs.

     

    I had it built in my Bot Wiki Master Blaster as well that is referenced in the above post.

     

    Hope it helps.

    Praney

  2. You can possibly do it using JavaScript.

     

    Here is a sample function:

    setCookie(name, value, expires, path, domain, secure)
    

     

    var curCookie = name + "=" + escape(value) +
    ((expires) ? "; expires=" + expires.toGMTString() : "") +
    ((path) ? "; path=" + path : "") +((domain) ? "; domain=" + domain : "") +
    ((secure) ? "; secure" : "")
    // Actually placing the cookie
    document.cookie = curCookie
    

     

    Combined:

    function setCookie(name, value, expires, path, domain, secure)
    {
    var curCookie = name + "=" + escape(value) +
    ((expires) ? "; expires=" + expires.toGMTString() : "") +
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    ((secure) ? "; secure" : "")
    document.cookie = curCookie
    }
    

     

    You can do some research on the rest.

     

    Hope it helps.

     

    Praney

  3. blumi40,

     

    Not sure Why you want it paid. I also pay monthly updates, which are mostly bug fixes caused by previous updates.

    SO I don't think asking a useful feature which used to exist in previous version is too much. On top of that it shouldn't to hard to implement. But what would matter is if could be made STABLE ACTUALLY!

     

    Don't think people would even mind paying if it works, and not just added to the list with other options.

  4. I say "Yes Please !!!"

     

    I don't know if anyone takes any notice of voted up posts, but if everyone who want's to see the include command brought back concentrates on voting for one particular thread as opposed to the many spread around the forum on this particular subject, let's make this one the one to vote up ! +1

     

    Praney, would you care to edit your post to include a link to the previous thread, which started this one and has some good observations in it?

     

    Phil

     

    Hey Phil,

     

    Post edited and previous thread link added cheers!

     

    Praney

  5. Many people like the "Include command" back from Version 3.x. But there were loopholes in that command as the script file in it original form needed to be included with the "Include Command". This made it more prone to code piracy.

     

    Instead, I would like to suggest a command that could read ubot code and include it on the fly into that command. This could be easily done similar to the "$read file" function that reads text from a source, local or remote.

     

    I believe this could have less complications. Reason how it could be all difference and better is that you could encrypt the Ubot code to include and while reading it in the command you can add procedure to decrypt it before the command reads it.

     

    Well pretty much like read from file function :)

     

    I will throw in a couple of encryption techniques for all the community if this is implemented.

     

    Here is a link to another related thread where I suggested this: http://www.ubotstudio.com/forum/index.php?/topic/10696-is-anyone-else-using-the-private-bot-bank/page__view__findpost__p__55554

     

    What do you say?

    • Like 3
  6. Infact I would like to suggest a command that could read ubot code and include it on the fly. Reason how it could be all difference and better is that you could encrypt the Ubot code to include and while reading it in the command you can add procedure to decrypt it before the command reads it.

     

    Well pretty much like read from file function :)

     

    I'll create an enhancement suggestion request, only thing is it may be added to the stack LOL!

×
×
  • Create New...