Jump to content

Jupeto

Members
  • Posts

    225
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Jupeto

  1. From wiki http://rathena.org/wiki/Compiling#Unix
  2. Oopps I forgot to mention in my reply thanks But that's already included in my video tut =))
  3. It's a great add-on idol! useful on any server type. I just wanted to suggest if you can send a whole guild or party so it will automatically send the prizes for all members of guild or party. Is it free add-on or paid? That's already in my to do list paid I guess hehe
  4. Default max monster entries was set to 4000. 3000 entries for monster clones and 1000 reserved ids for player clones. So all you have to do is to increase your max mob db here's how, watch ( Just wait for it to be uploaded ) or read belowopen 'src/map/mob.h' find: change the value 4000 to 6000 so that it makes upto 5000 monster ids and 1000 ids for player clones I tried changing it to 6000 and it worked for me having my custom cloned monster with id 4999
  5. Does the map server says anything like npc_parse_mob: Unknown mob ID 3000 (file 'npc/re/mobs/fields/payon.txt', line '40'). NOTE: 3000 is my custom monster's ID and the is where I put my custom mob spawn
  6. As to what I see those css is for default fluxcp theme ( Maybe a link to download the files is enough for us to troubleshoot your problem ), if it's just a css then all you have to do is to upload it in your theme's css folder and include it in the header after flux.css so that it'll override the default css Open 'themes/your_theme/css' and upload the files there. Open 'themes/your_theme/header.php' At around line 12 find: <link href="<?php echo $this->themePath('css/flux/unitip.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" /> and insert the code below after it <link rel="stylesheet" href="<?php echo $this->themePath('css/downloaded_css.css') ?>" type="text/css" media="screen" title="" charset="utf-8" /> change the 'downloaded_css.css' to the filename of your downloa Now see if there are any differences
  7. +100? la naman aq rep sa post q tahaha
  8. WARNING: MUTE YOUR SOUND Here's a showing how to install my woe status.PS: Sorry for the background music, it's already late here and I'm still awake. I tried to listen to those music to try to make me feel sleepy but no effect @ALL I have a new add-on working on just check it out So what do you think?
  9. My snippets and add-on can be used on all existing FluxCP versions.
  10. FluxCP Addon :: Giveaways, yet another functionality to your control panel is coming soon... ^_^

  11. Is this the full pvprankings addon? why is it that data folder is empty? Wanna add this.. No, it isn't... I just used to create those folders by default whenever I work with add-ons for me to easily navigate to affected files and troubleshoot problems even for a small work like this. Anyways, the attached file is just a revised version of jezu's code.
  12. There you go pvpranking.rar
  13. Oh!!! I see, Thanks +1 to you case solved!
  14. How do the server save those values in mail table specifically when someone sent an elemental item. Here are the fields I want to know attributes, card0, card1, card2, card3. Be reminded that the item attached in the mail is an elemental weapon. I tried to send one and this is what I got in my mail table attribute = 0 ( I really don't know ) card0 = 255 ( I really don't know ) card1 = 4 which is wind ( I believe this is from 0 - 4 value, elements neutral, ice, earth, flame, and wind ) card2 = 18941 and the other row has 18942 ( this is what I suspect is the name of the forger, but where do that value came from? ) card3 = 2 ( I really don't know )
  15. Ekk then what's the use of that function in onChange property? find: onChange="MM_jumpMenu('parent',this,0)" replace with: onChange="window.location.href=this.value" or just copy below <form name="form1"> <strong>Admin</strong>: <select name="menu1" onChange="window.location.href=this.value"> <option value="javascript:void(0);">Choose Menu</option> <?php foreach ($adminMenuItems as $menuItem) : ?> <option value="<?php echo $menuItem['url']; ?>"><?php echo $menuItem['name']; ?></option> <?php endforeach; ?> </select> </form>
  16. Admin Drop Down Menu <form name="form1"> <strong>Admin</strong>: <select name="menu1" onChange="MM_jumpMenu('parent',this,0)"> <?php foreach ($adminMenuItems as $menuItem) : ?> <option value="<?php echo $menuItem['url']; ?>"><?php echo $menuItem['name']; ?></option> <?php endforeach; ?> </select> </form> I don't know what your 'MM_jumpMenu()' function does but that code should work... Just play around EDIT: and btw, sprintf('<a href="%s">%s</a>', $menuItem['url'], $menuItem['name']) that code produce a url tag which you cannot put inside a combo box, use '<?php echo $menuItem['url']; ?>' instead if you want to get just the url of the menu and place it in the value property of an option tag
  17. Please create a separate post for that topic since it is not related anymore with diff patching. This topic will now be marked as solved and locked. Thanks,
  18. download https://subversion.a...insDiffPatcher/ via subversion client ( tortoise for example ) or if you have no subversion client, then find a way to download those files. Manually or create a script it's up t you ( I can't help you anymore with this ) after downloading, open ShinsDiffPatcher.exe in the first box, locate and select the exe you want to be patched ( in my case it is 2011-03-15aRagexeRE.exe which was downloaded here ) in the second box, leave empty in the third box, locate and select the output folder where you want it to be saved. Make sure that you specify the filename as well. in the 'Select patch engine' select box, select WeeDiffGenerator v1.0.2 just wait for the dll to be initialized until it ask you to 'Auto-Select recommended patches?' click 'Yes' then if some patch needs an input, it'll prompt you to input a value after all is done, patcher will now list all the patch selected the most recommended patches Follow through the patches selected in the video You're done with client patching. I'm using SVN Revision : 1653912
  19. Are there any auction module available over the net?
  20. ***yawn*** anyone who can suggest what fluxcp add-on which is not yet available everywhere you want to apply in your cp

  21. Description So after the success of my create character fluxcp add-on, I pursue my knowledge reading athena web related applications. I happened to find ceres control panel and think of what if I also integrate my add-ons to that cp. While converting one of my add-on, I see that adding a menu item is a little confusing ( I don't know if other find it confusing too ), you have to edit the whole keys and indexes if you want to add let's say a sub menu for characters menu. So I did rewrite some codes to support easy adding of menus and sub menus via array of values. Make sure that you have a backup of your current menu.php file in case something bad happened. All you have to do is to download the revised code ( menu.php ) and overwrite theyour current menu.php located in the root folder of your ceres cp. This update is intended to those who are having difficulties adding their own custom menu and sub menus. How to add new menus and sub menus? Open menu.php and find Adding Main Menu '$mainmenu' array, create a new array something like this array( 'label' => 'Custom Menu', 'index' => 7, 'level' => -1, 'file' => 'custompage.php' ) label : this is the label / text of your menu index : this is the unique number for your menu level : players with equal or above this level can see the menu, -1 means all can see the menu file : if this is a page and intended to have no sub menus, specify the filename of the page like what you did in sub menus. If this menu has sub menus, this will be ignored and will act as a normal menu. Order of menus is according to their chronological orders. So if you want your menu to be next in 'My Account' menu, you have to put your custom menu array next to 'My Account's array like this array( 'label' => $lang['MENU_MYACCOUNT'], 'index' => 1, 'level' => 0, 'file' => '' ),array( 'label' => 'Custom Menu', 'index' => 7, 'level' => -1, 'file' => 'custompage.php' ) Adding Sub Menus '$submenu' array, create a new array something like this array( 'parent' => 0, 'label' => 'Custom Sub Menu', 'file' => "motd.php", 'enabled' => 1 ) parent : is the index you set in $mainmenu, so if I want this sub menu to be seen under 'Custom Menu' above, I'll set this to 7 since 7 is the unique index of 'Custom Menu' label : this is the label / text of your sub menu file : is the filename of the page enabled : is this menu enabled or not? 1 for enabled, 0 or below 0 for disabled
×
×
  • Create New...