Post reply

Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Name:
Email:
Subject:
Message icon:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: Austin
« on: March 10, 2009, 09:06:23 AM »

Yeah, PhiX is roflmao the kid is a hugeee tool.

And yah I posted my Req on SB.nEt
Posted by: EKLIPz
« on: March 10, 2009, 08:06:46 AM »

I agree and disagree.  My FIRST request and my FIRST post on SB.net were both for my custom CRS plugin. It spanned ~7 pages. Ninja worked on that and she was maad cool about it. Everytime I asked for something new on it, she hopped on it. I think every other scipter at SB doesn't do shit. Usually when I make a request now, a few people will comment on it, and it will fly over people's heads. I have alot of posts now at SB, and I help alot of people, but, they still ignore me. I only 1 person there that is cool, and that is Ninja. She is almost the only one over there doing script requests.

And it seems like everytime I post to help someone PhiX is up my ass on something, no matter how right I was, he posts saying some shit.
Posted by: ArticWolve
« on: March 10, 2009, 07:56:25 AM »

If it was at Stealthbot.net, its understandable. The people there are getting old (No offense to those who still go there) and tired of making scripts. Think about it. As time goes on, they get more and more requests from people who have less then 200 posts. And it seems to me that they are only fulfilling requests of the people THEY FUCKING like. Anyone who has any affiliation to a clan they don't like gets warned for the slightest infraction while a person who does the same thing gets a slap on the wrist.
Posted by: Austin
« on: March 10, 2009, 07:49:58 AM »

Thanks, for future updates to this plugin, maybe a multi-support feature, where if the website picks up multi ip 2 usernames both will be unvouched, etc.

Nice job though Hero, I remember asking for this like a year ago and no one made it for me XD
Posted by: Hero
« on: March 09, 2009, 04:27:38 PM »

Posted by: awsome
« on: March 03, 2009, 10:01:02 PM »

where can i get it
Posted by: Hero
« on: March 01, 2009, 04:34:47 PM »

It's done and has been for a while. I made it and Joel debugged it.
Posted by: awsome
« on: March 01, 2009, 04:25:50 PM »

um whos working on the script file just wanna know
Posted by: Hero
« on: February 28, 2009, 06:14:23 PM »

It's should be in a PHP file - .php
Posted by: awsome
« on: February 28, 2009, 04:11:14 PM »

sry but im new to all this stuff where public_html u mean i save it as a document and name it ****.html ?
Posted by: Vector
« on: February 28, 2009, 03:35:25 PM »

in public_html, if you want. Make sure to modify what Hero told you to modify (database_here, etc.)
Posted by: awsome
« on: February 28, 2009, 10:00:56 AM »

<?php
$con = mysql_connect("localhost","username_here","password_here");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("database_here", $con);

$result = mysql_query("SELECT * FROM ibf_members");

while($row = mysql_fetch_array($result))
  {
  echo $row['name'];
  echo "<br />";
  }

mysql_close($con);
?>where i put this?

Posted by: awsome
« on: February 26, 2009, 09:24:39 PM »

Thanks for doing this guys
Posted by: Vector
« on: February 26, 2009, 08:37:07 PM »

database is the name of the actual database the PHP script connects to.

Just an update, the script Hero started is coming along. I worked on it too, and it bans users like it should. Hero just needs to add a few things to it that Power wants.
Posted by: awsome
« on: February 26, 2009, 01:53:30 PM »

Quote from: Hero
I could just give you a copy and you would have to fill out database info.

Here's the PHP file: (This one only draws data from the database, no text file)

Code: [Select]
<?php
$con = mysql_connect("localhost","username_here","password_here");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("database_here", $con);

$result = mysql_query("SELECT * FROM ibf_members");

while($row = mysql_fetch_array($result))
  {
  echo $row['name'];
  echo "<br />";
  }

mysql_close($con);
?>

Make sure to fill in:

username_here
password_here
database_here

If your SQL server is not located on the same server as your website you will have to change it from localhost to something else, but try localhost first.


so database is the website right or is it the server that stealthbot connects to?