Jump to content

Cyro

Members
  • Posts

    1138
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by Cyro

  1. Real ro... It will show skills and you can even use them with gm Account... Use normal account.. skills are visible but you can't out skill points on them with normal Account
  2. payon,163,127,3 script OneTimeItemGiver 790,{ if( !#onetimeitem ){ set #onetimeitem,1; mes "Hie there!!"; mes "you here for the item??."; next; mes "Here you go! Enjoy!"; getitem youritemidhere,quantity ; //getitembound << use this to give bounded items }else{ mes "You already claimed your item."; } close; OnInit: waitingroom "Item Giver!",0; end; }
  3. You can just use freebies script or reward giving script... Just try searching
  4. I just suggest to get a vps/dedicated based on your location and specifications from any reliable hosts like digital ocean/ovh etc. And setup everything yourself.. unlike reseller/readymade servers
  5. https://github.com/rathena/rathena/blob/master/db/re/item_noequip.txt Go through this file
  6. Check your msgstringtable.txt in your grf edit this lines on number 1254,1255 as shown below to your need Voulez-vous vraiment acheter cet item? Cela vous coutera %d sPoints.# Vous n'avez pas assez de sPoints.# to what ever you wanted it to be
  7. check #define PACKET_OBFUSCATION in src/config/core.h and check your client version in mmo.h, client.xml version as mmo.h
  8. <admin>place your gm id here</admin> and patch client.xml like this <admin>2000000</admin> <admin>2000001</admin> <admin>2000562</admin> <admin>2000658</admin>
  9. Really? Can you elaborate please I want it to be safe anyways
  10. https://www.ringsec.net/ Try this! released recently working so far good as geprad! one of my client server running this shield
  11. welcome back bro i remember u sending me a dvd in courier to play vintagero! still have it in my collections
  12. Hie this table working fine for me! CREATE TABLE `cp_v4p_sites` ( `site_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `address` text NOT NULL, `points` int(10) unsigned NOT NULL DEFAULT '0', `blocking_time` int(10) unsigned NOT NULL DEFAULT '0', `banner` blob, `banner_url` text, `site_name` varchar(50) NOT NULL, `banner_file_type` varchar(30) NOT NULL, PRIMARY KEY (`site_id`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; CREATE TABLE `cp_v4p_votelogs` ( `rtid` int(10) unsigned NOT NULL AUTO_INCREMENT, `f_site_id` int(10) unsigned NOT NULL, `unblock_time` datetime NOT NULL, `account_id` int(10) unsigned NOT NULL, `ip_address` varchar(100) DEFAULT '0', PRIMARY KEY (`rtid`) ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; CREATE TABLE `cp_v4p_voters` ( `account_id` int(10) unsigned NOT NULL, `points` int(10) unsigned NOT NULL, PRIMARY KEY (`account_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  13. this is giving 3rd job skill also
  14. check your cp_tables in mysql! you might deleted one of them by mistake try deleting all cp tables and reinstalling fluxcp!
  15. 32010,trans_ring,Transformation Ring,5,0,,100,,,,1,0xFFFFFFFF,63,2,136,,0,0,0,{},{ changebase 0; },{ changebase Class; } try this
  16. what do you mean by talking npc? you can modify this script and add msgs as you wish!
  17. this is euphy multi currency shop script.... you can sell items for particular cash/item in different tabs with different item cash Multi-Shop v1.2.txt
  18. hi! i have installed fluxcp with a theme which have hall of fame! its working so far fine but when we login to account panel! its not showing anything on halloffame tab here is my hall fame php file for reference! i am pretty sure error lies in this file itself! but unable to figure it out <?php if (!defined('FLUX_ROOT')) exit; if (!$session->isLoggedIn()): if($params->get('action') == 'login') { $chars = array(); $guilds = array(); $sex = array(); $bsex = 'F'; $bclass = 0; } else { $sex = "<img src='".$this->themePath('img/potm/M/0.gif')."' alt=\"Sex\"/>"; $sqlpvp = "SELECT pvpladder.name AS char_name, pvpladder.kills AS kills, pvpladder.deaths AS deaths, char.char_id, char.class AS bclass, login.sex, guild.name as gname FROM pvpladder LEFT JOIN `char` ON pvpladder.char_id = char.char_id LEFT JOIN `login` ON char.account_id = login.account_id LEFT JOIN `guild` ON char.guild_id = guild.guild_id ORDER BY kills DESC LIMIT 1"; $sthpvp = $server->connection->getStatement($sqlpvp); $sthpvp->execute(); $chars = $sthpvp->fetchAll(); if (empty($chars[0]->sex)) { $bsex = $chars[0]->sex; $bclass = $chars[0]->bclass; $sex = "<img src='".$this->themePath('./img/potm/'.$bsex.'/'.$bclass.'.gif')."' alt=\"Sex\"/>"; } else { $bsex = 'F'; $bclass = 0; } $sqlgvg = "SELECT g.guild_id, g.name AS gname, g.emblem_len, ( SELECT COUNT( c.castle_id ) FROM guild_castle c WHERE c.guild_id = g.guild_id ) AS castles, g.master, ( SELECT COUNT( char_id ) FROM `char` WHERE `char`.guild_id = g.guild_id ) AS members FROM guild AS g LEFT JOIN `char` AS ch ON ch.char_id = g.char_id LEFT JOIN login ON login.account_id = ch.account_id ORDER BY castles DESC, members DESC , g.max_member DESC , g.next_exp ASC LIMIT 1"; $sthgvg = $server->connection->getstatement($sqlgvg); $sthgvg->execute(); $guilds = $sthgvg->fetchall(); } ?> <div id="tabs"> <ul> <li><a href="#player"><img src="<?php echo $this->themePath('img/bestplayer.png'); ?>" /></a></li> <li><a href="#guild"><img src="<?php echo $this->themePath('img/bestguild.png'); ?>" /></a></li> </ul> <div id="player"> <?php if ( $chars ): ?> <table cellspacing="0" cellpadding="0" class="ranking"> <tr><td class="sex"><?php echo $sex; ?></td></tr> <tr><td><b><font color="#4cc5e4">NAME:</font> </b><font color="#ffa500"><?php echo htmlspecialchars(substr($chars[0]->char_name,0, 12)) ?></font></td></tr> <tr><td><b><font color="#4cc5e4">KILLS/DEATHS:</font> </b> <font color="#ffa500"><?php echo number_format($chars[0]->kills) ." / ". number_format($chars[0]->deaths) ?></font></td></tr> </table> <?php endif; ?> </div> <div id="guild"> <?php if( $guilds ): ?> <table cellspacing="0" cellpadding="0" class="ranking"> <tr><td class="guild_logo"> <?php if ($guilds[0]->emblem_len): ?> <img width="24" src="<?php echo $this->emblem($guilds[0]->guild_id) ?>" /> <?php else: ?> <b>No Emblem</b> <?php endif ?> </td></tr> <tr><td><b><font color="#4cc5e4">NAME:</font> </b><font color="#ffa500"><?php echo htmlspecialchars(substr($guilds[0]->gname,0 ,15)) ?></font></td></tr> <tr><td><b><font color="#4cc5e4">MASTER:</font> </b><font color="#ffa500"><?php echo htmlspecialchars(substr($guilds[0]->master,0 ,15)) ?></font></td></tr> </table> <?php endif ?> </div> </div> <?php endif ?>
  19. i had this error before! ended up downloading with new updated KRO
  20. i guess you changed it already after you change make sure you refresh your and reload your website! cntrl+refresh works fine normally!
  21. For vote points you need to install votepoints addon and add vote tables in mysql redirect your donations image to donations page! and for setting up paypal account for donations goto confi/application.php for changing images goto your theme/img and update new images with same existing names and sizes
  22. as Aureon said check your maps_athena and check those maps are activated or not
  23. What kina error? Gravity?? You must be more specific! I guess you need to re-check your map cache anyways
  24. As I remember gmh guys relocate client.xml file in book folder in your grf... And they diff client to read that file as client.xml... that is why you can't connect I guess... Edit original client.xml file on your grf and retry Ps-why don't you raise a support ticket for help
  25. I think you are looking for a proxy server! It was available with eathena! Following this topping!
×
×
  • Create New...