PDA

View Full Version : Neopets alerts



Slasher
03-26-2012, 04:03 PM
Anyone would be interested in neopets alerts? Like snowager, turmaculus, deadly dice, illusen avatar, etc.? Like the alerts on sunnyneo/jellyneo. It could be useful.

Ashleys165
03-26-2012, 04:06 PM
I think people do that in the neopets chat.

John
03-26-2012, 04:10 PM
theres boards for that.

J_L_K_64
03-26-2012, 04:12 PM
while we do have those boards, i think they were meaning a site alert for it, so you wouldn't have to go looking for the thread, but i don't really like this idea either way, i mean, most of them are time based, so all ya gotta do is remember the times

Joshsadf
03-26-2012, 04:15 PM
Can automate it into the forum, would decrease multiple people posting about it.

J_L_K_64
03-26-2012, 04:16 PM
but we want the posts? makes the forum that much more active?

Joshsadf
03-26-2012, 04:18 PM
Not if they are the same 10 times for the same alert.

That would be spam.

And if people are doing their jobs, should be deleted anyways.

Therefore no posts.

J_L_K_64
03-26-2012, 04:20 PM
actually the 10 posts won't be deleted, unless they are all at once, those 10 posts could be from like 10 days, one a day, which wouldn't be spam..........

Joshsadf
03-26-2012, 04:21 PM
Not if they are the same 10 times for the same alert.

That would be spam.

And if people are doing their jobs, should be deleted anyways.

Therefore no posts.

Just saying.

Slasher
03-26-2012, 04:22 PM
Sure it's making posts, but mostly spam in my opinion.

J_L_K_64
03-26-2012, 04:22 PM
the same alert does happen once a day, therefore, there could be 10 posts over 10 days for the same alert (the alert for snowager for example would count as one alert)

Joshsadf
03-26-2012, 04:25 PM
Hold on.

Lemme put it this way.

Same alert.

For the same time.

On the same day.

On the same site (neopets.com, just incase you're confused)

Slasher
03-26-2012, 04:28 PM
Their could be alerts for snowager/turmac/deadly dices only?

J_L_K_64
03-26-2012, 04:28 PM
there ya go, be specific when you wanna argue, otherwise your message never gets across


anyways back to the topic, i still think a site wide alert is a bad idea, but it's really joes' descision

Zachafer
03-26-2012, 04:33 PM
What if no one posts the alert? Then the script would be doing it's job. A script is definitely better than relying on someone to post alerts.

Infamous Joe let me know if you need help writing alerts (I know PHP ain't your thang)

Joshsadf
03-26-2012, 04:44 PM
Don't see how I was arguing.

You were clearly confused. So I fixed that.

Ryan~
03-26-2012, 05:08 PM
I wrote some PHP to do this a long time ago when I owned Jhudorascurse.com. It has images and everything. If I can find it, I'll show you.

maxxine
03-26-2012, 07:18 PM
I like this Idea lol

Ryan~
03-26-2012, 09:13 PM
[Only registered and activated users can see links]

There you go.

;)

---------- Post added at 08:13 PM ---------- Previous post was at 08:01 PM ----------

It's not pretty, but that's okay. Only does Snowager and Deadly Dice atm.

Joshsadf
03-26-2012, 09:22 PM
[Only registered and activated users can see links]

There you go.

;)

---------- Post added at 08:13 PM ---------- Previous post was at 08:01 PM ----------

It's not pretty, but that's okay. Only does Snowager and Deadly Dice atm.


I think Slasher was more thinking about them popping up at the top of the forum.

Ryan~
03-26-2012, 09:26 PM
That could always be arranged if Joe wants the code. It's easily one simple function.

If $time is between THIS and THIS{
SNOWAGER RWR GO VISIT ME
}
else if($time is between THIS AND THIS){
RAWR DEADLY DICE GO VISIT ME
}

yamakracker
03-26-2012, 09:27 PM
Wooo, I support this too
Too lazy to checkin' anything these days D:

Ryan~
03-26-2012, 09:29 PM
Also, everyone I suggest using Zachafer 's PHP daily doer.

[Only registered and activated users can see links]

Zachafer
03-26-2012, 10:48 PM
Snowager:

function canSnowager()
{
$snowHours = array(6, 14, 22);
date_default_timezone_set('America/Los_Angeles');
return in_array(date('G'), $snowHours);
}

if(canSnowager()) echo '<script>alert("Snowager is sleeping!");</script>';

Ryan~
03-26-2012, 10:54 PM
Even more compact and correct ^^^