Jump to content

striker

Members
  • Posts

    151
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

About striker

Profile Information

  • Gender
    Not Telling

striker's Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. I will ask another noob question and hope you will pay attention to this question. I downloaded this pack open eclipse make project with name interlude added files clicked build.xml with right mouse click run as>ant Build, program finished his work and when i went to directory where this files where compiled i found not compiled files there was only copied files and folders, what I'm doing wrong can someone help with this problem?
  2. I registered in the forum, but cannot find any download link or svn link can someone tell me how to download this pack?
  3. hello. i need l2net for c4 serevrs, or other bot program, that have function for pet skills, or script for buffs: blessing of queen & gift of seraphim. for walker 10.6.5; bot programs need OGG. thanks. :))
  4. it works only gracia final or older versions how i know
  5. Parse error: syntax error, unexpected T_STRING in C:\Program Files\VertrigoServ\www\status\Map\map.php on line 27 what's wrong??? i use this code <?php //first you need to define db info define('mySQL_hostname', '127.0.0.1'); //database IP define('mySQL_database', 'Database'); //database name define('mySQL_username', 'User'); //database user define('mySQL_password', 'Pass'); //database password //connects to mysql $db_link = mysql_pconnect( mySQL_hostname, mySQL_username, mySQL_password ) or die( 'Error connecting to mysql<br><br>'.mysql_error() ); //connects to Database $db_select = mysql_select_db( mySQL_database, $db_link ) or die( 'Error connecting to Database<br><br>'.mysql_error() ); //selects desired table $chars=mysql_query("SELECT * FROM `characters` WHERE `accesslevel`=0); //tells how much rows are there (will come helpfull with while loops) $rows =mysql_numrows($characters); $i=0; $x=0; //while $i is smaller than number of rows repeat the code while ($i < $rows) { $online=mysql_result($chars,$i,"online"); //looks into characters table, under column online(if player is online its "1" else "0"), at row $i if ($online == 1) { $x++; } // if column online at row $i is "1", increase $x $i++; //increase $i } print 'Online players:<em>'.$x.'<em>'; //prints out the $x number of players online ?>
  6. i want to make backups not in the same file but in the seperate files, can this porgram do this?
×
×
  • Create New...