Wader commented on Comment: Help  -  9 days ago
That doesnt really answer my questions, i cant help fix your problems without knowing what part of it isnt working
ksolt21 commented on Comment: Help  -  9 days ago
on *:text:*:#mltag.KoD: {
if ($nick == newsbot) {
// Increments everytime newsbot sends a message to #mltag.KoD
inc %newsbot.antispam

// Checks if there have been at least 5 messages from newsbot
if (%newsbot.antispam >= 5) {
msg #KoDwar $+(7,$chr(40), 4,KoD News, 7,$chr(41), 7,$chr(40),,14,$nick,,7,$chr(41),:) $1-

// Resets the counter back to 0
set %newsbot.antispam 0
}
}
}
is what i put and it is in its own remote tab
Wader commented on Comment: Help  -  9 days ago
Are your remotes enabled? does %newsbot.antispam appear in your variables tab? are there any errors in your status window?
ksolt21 commented on Comment: Help  -  9 days ago
yes
Wader commented on Comment: Help  -  9 days ago
Did you remove/replace your old script from the remotes editor?
ksolt21 commented on Comment: Help  -  9 days ago
i tried it and it didn't do anything ? unless i have to change something in the code im still now to this sorry
Wader commented on mIRC Snippet: Help  -  9 days ago

Code

 
Lucius commented on mIRC Snippet: Pan's Monster Manager (For use with IRC RPG games)  -  9 days ago
Quite nice but it won't work universally, and for the people actually needing something to help add monsters to a text file it may cause problems more than it fixes.
for instance I have an RPG which also stores health, strength, agility on the same line, and the RPG itself uses defined lines for each level rather than multiple text files so any additions have to be changed in the script.
example:

rat 10 2 5
slime 20 1 1
######lvl2
bat 10 2 10
etc etc.

You may wish to add the name/link of the rpg itself so anyone wanting to use this will be able to find your rpg.... wait 12 levels, is that my old rpg?--> !fight evil
ifso I'd appreciate a link, if not I'd like to see it.
FreakServ commented on Status: FreakServ  -  10 days ago
Can anyone tend to help me getting a code for mouse hover like pixlr ripple effect please?
I tried searching a lot but didn't find a good one. I need one of the same on http://pixlr.com/o-matic/ Thanks in advance.
Lloyd_B commented on Comment: Scrambled Word Game  -  10 days ago
I've tried to reset this several times and all it gives me is a word made of "sppp". May I suggest a word list file on the bot itself? I maintain a channel bot with different games and I would really like to have a reliable Scramble game. To be honest, I don't have the scripting skill yet to make the changes. I'm gonna take a look at it anyway but I thought maybe the script author would prefer to make the change first.
SunnyD commented on Status: SunnyD  -  11 days ago
http://www.phoronix.com/scan.php?page=news_item&px=MTM0NzE -- Ah it seems that there finally is a light at the end of the tunnel! :) It would seem Nvidia has finally rolled out a driver package that should support its Optimus technology on Linux based systems. Time to try it out on Ubuntu 13.04.
Hawkee commented on iPhone App: myGolfLeaderboard  -  11 days ago
Thanks for the post and welcome to the site!
Hawkee commented on Thread: TMFKSOFT  -  12 days ago
That will scale terribly. Every lookup will require loading the entire file into memory in order to search it. Once the file gets too large PHP will fail to load it resulting in memory errors. Your method is guaranteed to fail in the long run.
TMFKSOFT commented on Thread: TMFKSOFT  -  12 days ago
A simple PHP array with Serialize. Nothing easier to be honest.
No need to keep it in memory.

I could even gzcompress to save space.
Il-Kane commented on Status: Il-Kane  -  12 days ago
God-Irc evo.6 has been updated. Fixed some bugs and added Undernet commands.

visit:- www.godirc.tk

Regards,
Il-Kane
Il-Kane commented on mIRC Script: God-Irc evo.6  -  12 days ago
God-Irc evo.6 has been updated. Fixed some bugs and added Undernet commands.

visit:- www.godirc.tk

Regards,
Il-Kane
Hawkee commented on Thread: TMFKSOFT  -  13 days ago
What indexing method do you plan to use in a flat file? Will you keep it persistent in memory for faster access?
TMFKSOFT commented on Thread: TMFKSOFT  -  13 days ago
I've never been able to implement SQLite with PHP,
Plus there's not many examples of ways to store data in a flat file solution, I'd probably make it so people can choose between SQL and Flat File.
http://tmfksoft.x10.mx/phpcrazy/url_shortener/
Is the live development area. So you are free to mooch about looking what files there are.
Hawkee commented on Thread: TMFKSOFT  -  13 days ago
Why a flat database? Wouldn't it scale better to use something like sqlite at least?
[nas]peter commented on Comment: Vho.st  -  13 days ago
Security issues from what I heard. Phurl doesn't natively support it. I can do it in JS/JQuery but I'm currently working on some other stuff in the meantime :P
TMFKSOFT commented on Status: TMFKSOFT  -  13 days ago
It's day 1 (Kinda, Its 11:34pm, Does that still count)
Im about to start work on my first script of many.
This weeks script is going to be a very simple URL Shortener.
It will be using BootStrap and a flat file database to boot.
I'll release the Script on Saturday for download.

P.s.
SunnyD has mentioned using GitHub, I wont be using GitHub straight away, When all scripts are done they will be in one repo for download.
despotbg commented on jQuery Snippet: Triggered @mention Autocomplete like Facebook, Twitter & Google+  -  13 days ago
if you wont to search just by one word change those line
if (contents.indexOf(this.options.trigger) >= 0 && check_contents.match(regex)) ==>
if (contents.indexOf(this.options.trigger) >= 0 && check_contents.match(regex) && check_contents.indexOf(' ') <= 0)
despotbg commented on jQuery Snippet: Triggered @mention Autocomplete like Facebook, Twitter & Google+  -  13 days ago
If you wont to search non latinic word change this line:
var regex = new RegExp('\\B\\'+this.options.trigger+'([\\w\\-]+)'); =>> var regex = new RegExp('\\B\\'+this.options.trigger+'([\\S\\-]+)');
This is not something that can be disabled, but if your search returns no results after the user presses a space it will stop querying.
despotbg commented on jQuery Snippet: Triggered @mention Autocomplete like Facebook, Twitter & Google+  -  13 days ago
How to disable searching by multi words? I need just search by one word?
SunnyD commented on Comment: Vho.st  -  14 days ago
Is there anyway to do it in HTML, and handle events with JS/JQuery? Or are you stuck using whatever PHURL is using?
Hawkee commented on Thread: TMFKSOFT  -  14 days ago
Yes, always good to post to GitHub. I prefer developers use Hawkee as a place to discuss their projects while GitHub is the place to host them.
SunnyD commented on Thread: TMFKSOFT  -  14 days ago
Yep, it's getting to be that time of year again. School's up for me in another week, so hopefully I'll have time to work on a few projects in between work shifts. As for script packages, you could upload them onto GitHub as well, that might get you some more traffic. Looking forward to seeing some PHP.
[nas]peter commented on Comment: Vho.st  -  14 days ago
@Hawkee I only need to keep their copyright in the LICENSE file and only if I were to redistribute it. So there's no issue in that!
Hawkee commented on Comment: Vho.st  -  14 days ago
@[nas]peter Sometimes I might opt for a different solution if that's the case. Just depends on what's out there.
  1. Prev
  2. 1
  3. 2
  4. 3
  5. 4
  6. 5
  7. 6
  8. 7
  9. 8
  10. 9
  11. 10
  12. 11
  13. 12
  14. 13
  15. 14
  16. 15
  17. Next
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.