Jump to content

Meister

Members
  • Posts

    841
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Meister

  1. Its a tab. the same thing I did on my demo4 By chance, can you teach me how to make that tab? TY!
  2. Just a question how do you make the news / links buttons? what I mean when I click news it shows the option while clicking links it'll show links.. just what you did? ty!
  3. Ahh the copy right is located upper left part. It's "PAPER CUTS" font
  4. yeah its my first time hihi. thanks! if not for the base designs and for codes I can't do it. all credits to them hehe.
  5. I will but not for free. but doesn't cost that much..
  6. Indeed! It was from rahul's website that was posted here before
  7. Please be kind to me <3 Thanks! Base design: Website available here Base Code: gerome's free patcher (slowly learning how) Hihi.
  8. OOps. I have a new questions. Does the script capable to check players who are on vend mode? if players are in vend mode then they will not be included in the count.. is it possible?
  9. How about increasing the exp gain for every player invited..
  10. How can I calculate its value? what if I set it to 20? what is the formula for it?
  11. Where can I find it? Or How to increase exp party per people? e.g. for every one player who joins the party.. the exp gained by the part is increased by 25% .. how to do it?
  12. where can i find the js for it? or any tutorial? ty!
  13. Yes this help, but I'm confused on how to insert it here.. <?php if (!defined('FLUX_ROOT')) exit; ?> <?php /** * ====================================== * TOP pvp Ranking Base on Kills * Ranks are base on Player Kills ratio * -------------------------------------- * Author: "Gerome" John Gerome Baldonado * Email: [email protected] * http://rathena.org/board/user/715-gerome/ * Requirements: Pvpladder Script by Annie.. or any Pvpladder Script */ $pvpladder = Flux::config('FluxTables.pvpladder'); $minimumkills = 1; // Minimum Kills.. $player = array(); $minimumRank = 5; // Minimim Player(s) that will Display. if the value is 3 it will display 1st - 3rd $sql = "SELECT `char`.`name` , `kills`, `streaks` FROM {$server->charMapDatabase}.`char` JOIN $pvpladder ON $pvpladder.char_id = `char`.char_id WHERE `kills` > $minimumkills ORDER BY `kills` DESC LIMIT 5 "; $sth = $server->connection->getStatement($sql),; $sth->execute(); $rankings= $sth->fetchAll(); $x = 1; foreach($rankings as $rank): $player['name'][$x] = $rank->name; $player['kills'][$x] = $rank->kills; $player['streaks'][$x] = $rank->streaks; $x+=1; endforeach; ?> Cause there will be conflicts. What to do? do i need to redo it?
  14. on your putty.exe if you're using it. stop the server.. then ./configure > make clean > make sql
  15. I have this question, My current exp is set at 500 and also declared here that OnPCLoginEvent: if(getusers(1) >= 2 && $@brate == 500){ set $@brate,rand(1000,1500); set $@jrate,rand(1000,1500); set $@drate,rand(1000,15000); but doesn't work how to fix it?
  16. Where's the sql format for this? for its tables?
  17. my lua files is correct but still got this Problem.. as Vach said is your client diffed to view the view_id? what I mean is, what is the view_id of your client?
  18. Make sure that the entry in your item_db2 particularly view_id is the same with the entry on your accessoryid.lub since you're using renewal client. What I mean is this.. e.g. entry for accessoryid.lub ACCESSORY_BUNNYBAND = 15, your entry in item_db should like like this.. #,#,,,,,,,,,,15,{},{},{}
×
×
  • Create New...