Jump to content

JayPee

Members
  • Posts

    633
  • Joined

  • Last visited

Everything posted by JayPee

  1. I coded it using rAthena SVN i dunno why it doesnt work in eAthena
  2. Not feeling well

    1. Sneaky

      Sneaky

      how are you man? hope better, u haven't log in facebook...hehe

  3. If youre using linux, iptable might be causing the problem and if windows it might be firewall. I have that similar problem of yours in LinuxOS, i tried everything i can but when I try to disable my iptable for a while it connects and when i enable the iptable it does not connect.
  4. did you try another client and try to update also your 3ceam SVN i think 3ceam has this packetver28 update which i dont know about that?
  5. did you edit the application.php in the config folder? you need to edit the theme to use
  6. dunno on what do you mean imported but Welcome to rAthena.
  7. Hmm thats weird i only put the @go delay when the player is receiving a damage not using skill.
  8. Hi! Sorry for the late reply. can you search at unit.c coz as far as I remember i put sd->warpgodelay_tick there to put a delay on @go when using a skill. If you find it try to put it in a comment ex: //sd->warpgodelay_tick
  9. Here: <?php /*SQL Configuration*/ $address = "localhost"; //Database Address $username = "root"; //Database Username $password = "root"; //Database Password $database = "test_3ceam"; //Database Name $connect = mysql_connect($address,$username,$password) or die("Cant connect to the database"); $select_db = mysql_select_db($database,$connect) or die("Failed to connect to the database"); /*SQL Query*/ $query = "SELECT * FROM `cp_news` ORDER BY modified DESC"; $sql = mysql_query($query) or die("Failed to make select query command"); ?> <html> <head> <title>Notice</title> <style type="text/css"> body { margin:0px; font-family:Arial,Tahoma,Verdanna; } th { font-weight:bolder; font-size:9pt; padding:5px; } td { padding:5px; font-size:9pt; } </style> </head> <body> <?php while($fetch = mysql_fetch_array($sql)){ ?> <table cellpadding="0" cellspacing="0" style="margin-bottom:10px;"> <tr> <th> [<?php echo htmlspecialchars($fetch['created']); ?>] - <?php echo htmlspecialchars($fetch['title']); ?> </th> </tr> <tr> <td> <?php echo $fetch['body']; ?> </td> </tr> <tr> <td align="right"> Posted by: <?php echo $fetch['author']; ?> </td> </tr> </table> <?php } ?> </body> </html>
  10. Wow this is cool hope rAthena has this one too
  11. It seems no-ip.org is denying the ajax process so thats why it returns nothing or an error. The solution i made is using php function file_get_contents just to get the content of your news page. Then I change notice.html url to flarismnews.php. So when notice.html is opened or visited it will get the content of flarismnews.php in which flarismnews.php will get the content of your fluxCP news and the notice.html jquery ajax will filter the contents of the flarismnews.php. Try this flarism.rar There will be two files notice.html and flarismnews.php Open flarismnews.php in a text editor and edit the $url variable to your desired address.
  12. the session_start(); in whosonline.php causes the error but i dont know if you need to delete that. My guess is that session_start is already declared in another page and its being redeclared in whosonline.php
  13. try logout it seems its a header error
  14. Try this <?php /* Ceres Control Panel This is a control pannel program for Athena and Freya Copyright © 2005 by Beowulf and Nightroad This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. To contact any of the authors about special permissions send an e-mail to [email protected] */ session_start(); include_once './config.php'; // loads config variables include_once './query.php'; // imports queries include_once './functions.php'; $jobs = $_SESSION[$CONFIG_name.'jobs']; if (is_woe()) redir("motd.php", "main_div", $lang['WOE_TIME']); $query = sprintf(WHOISONLINE); $result = execute_query($query, "whoisonline.php"); opentable($lang['WHOISONLINE_WHOISONLINE']); echo " <table width="500"> <tr> <td align="left" class="head">".$lang['NAME']."</td> <td align="left" class="head">".$lang['CLASS']."</td> <td align="center" class="head">".$lang['BLVLJLVL']."</td> "; if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) echo " </tr> "; if ($result) { while ($line = $result->fetch_row()) { $charname = htmlformat($line[0]); if ($line[9] >= $CONFIG_gm_hide) { if (!isset($_SESSION[$CONFIG_name.'level']) || (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] < $line[9])) continue; } echo " <tr> <td align="left">$charname</td> <td align="left"> "; if (isset($jobs[$line[1]])) echo $jobs[$line[1]]; else echo $lang['UNKNOWN']; echo " </td> <td align="center">$line[2]/$line[3]</td> "; if (isset($_SESSION[$CONFIG_name.'level']) && $_SESSION[$CONFIG_name.'level'] >= $CONFIG['cp_admin']) echo "<td align="center">$line[4],$line[5]</td>"; echo " </tr> "; } } echo "</table>"; closetable(); fim(); ?>
  15. Well Posting your notice.html code will be a help and is your cp can be visited?
  16. JayPee

    Customs...

    What about your map server console? please use the file upload feature
  17. JayPee

    Customs...

    Did you reload your itemdb? and the itemid must not be assigned to another item. check also your map server maybe you have an error
  18. Can you post your notice.html and also the modified code I sent to you. I see two notice there one is .php and .html which one do you use?
  19. I think its not possible unless the mod is not modified and also I think you should ask the server owner. EDIT: type error on mod
  20. Topic Moved to Client and Patcher support since your problem is about client/patcher setup. Can you please specify your problem is it the client or the patcher(like thor, neoncube etc..)?
  21. Files Needed: Rathena SVN SQL Files(can be found at sql-files folder): logs.sql main.sql item_db.sql item_db2.sql mob_db.sql mob_db2.sql mob_skill_db.sql mob_skill_db2.sql [*]FluxCP @ http://code.google.c.../downloads/list [*]Webserver: can be WAMP or XAMPP, just google them, but i prefer WAMP if your using Windows OS Steps: Install your webserver(WAMP or XAMPP) After you install the webserver, open a browser and type: http://localhost and look for the phpmyadmin link if you cannot find it just type in your address bar: http://localhost/phpmyadmin In your phpmyadmin create a database of your desired name. After creating the database, import the tables list in the Rathena SVN SQL Files(above) After importing the tables, now locate your webserver folder and extract your fluxCP for XAMP: mostly it is installed in C: ex: C:xamp, you will extract fluxCP in this folder example: C:xamphtdocs for WAMP:mostly it is installed in C: ex: C:wamp, you will extract fluxCP in this folder example: C:wampwww [*]After you extract your fluxCP, go to your fluxCP folder and edit the following exampleFluxCP/config/application.php - for control panel basic settings 'ServerAddress' => 'localhost', // This value is the hostname:port under which Flux runs. (e.g., example.com or example.com:80) 'BaseURI' => '', // The base URI is the base web root on which your application lies. exampleFluxCP/config/servers.php - for database configuration 7. After you edit the required files, now open your browser and type: http://localhost/myFluxCPFolder 8. This will ask you a password for the installation of the CP, the password can be found at your myfluxcpfolder/config/application.php in which the default password is secretpassword 9. After the installation, you have now fluxCP installed. Note: secretpassword is not your database password. Note: if you havent made any changes in your mysql root account such as password change. Probably your mysql username password can be: root and root or root and blankpassword(it means you will not enter anything in the password field)
×
×
  • Create New...