Jump to content

clydelion

Members
  • Posts

    754
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by clydelion

  1. don't forget to disable packet obfuscation for your client.
  2. the files inside the zip should be present in your ro folder..try putting those rofolder.zip
  3. I don't know why you can find it. I can see it right here. anyway if you manage to find it.. here's a new diff for that exact revision.. Index: skill.c =================================================================== --- skill.c (revision 16328) +++ skill.c (working copy) @@ -13000,8 +13000,11 @@ *------------------------------------------*/ int skill_castfix_sc (struct block_list *bl, int time, int skill_id, int skill_lv) { struct status_change *sc = status_get_sc(bl); + struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd && sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 );
  4. how about Judas' setup? http://supportmii.com/ro1/Clients/Judas_Setups/2012_Setup/Setup.exe
  5. lol. anyway, try using this exe. replace the current Setup.exe http://svn6.assembla.com/svn/ClientSide/Diff_Project/HKCU_Setup/Setup_patched.exe
  6. When diffing your client. ex. Shin's Diffpatcher, k3dt's diffpatch
  7. that's why I'm asking, on what revision are you? 3ceam? eathena? rathena? what revision number?
  8. oh ok... btw, when you diff.. don't enable HKLM to HKCU
  9. what revision are you? compiled successfully for me.
  10. what setup are you using? the original setup.exe? or the new (blue) one?
  11. try this out.. Index: skill.c =================================================================== --- skill.c (revision 16356) +++ skill.c (working copy) @@ -13011,7 +13011,9 @@ struct status_change *sc = status_get_sc(bl); struct map_session_data *sd = BL_CAST(BL_PC,bl); #ifdef RENEWAL_CAST - int fixed = skill_get_fixed_cast(skill_id, skill_lv); + int fixed = 0; + if(sd->class_&JOBL_THIRD) + fixed = skill_get_fixed_cast(skill_id, skill_lv); if( !fixed ) { fixed = skill_get_cast(skill_id, skill_lv); fixed = ( fixed > 1 ? ( fixed * 20 / 100 ) : 0 );
  12. check ip in servers.php, if nothing's wrong.. verify that your webserver allows port access to rathena's default ports or whatever you are using.
  13. Actually it is working with SMF Change the NewsURL to this for SMF 'NewsUrl' => 'http://www.yourwebsite.com/forum/index.php?action=.xml;sa=news;board=1;limit=10', change the values accordingly.. limit=x - display only "x" items board=y - display only news topics from board "y"
  14. Added a screenshot for a better preview.. TODO: Add a facebook-like updating of news feed.. (not necessary if you do not update every hour but will make a better user-experience)
  15. sa npc/scripts_custom.conf ka magdagdag para perma NPC
  16. File Name: rss2news File Submitter: clydelion File Submitted: 06 Jul 2012 File Category: Web Resources Content Author: clydelion a.k.a. Rad/Skullcandy This addon for FluxCP enables the control panel to retrieve rss feeds. rss2news utilizes MagpieRSS to integrate FluxCP with IPB(and other forums that can generate RSS 2.0) and tinyscrollbar for neat display of news. Requirement: FluxCP RSS 2.0 The sample below retrieves news from a live rss feed. News Source : 'http://www.gmanetwork.com/news/rss/news' Screenshot: config: 'NewsUrl' => 'http://www.gmanetwork.com/news/rss/news', 'scrollbarbuttonsize' => '30', // WARNING! scrollbarbuttonsize must be less that scrollbarsize 'scrollbarsize' => '100', Reference: http://magpierss.sourceforge.net http://baijs.nl/tinyscrollbar/ For suggestions contact me via forums or messenger. yahooid: [email protected] To use, edit this... themes/default/main/index.php should look like.. <?php if (!defined('FLUX_ROOT')) exit; $this->redirect($this->url('news','index')); ?> Thank you for using this add-on.. rss2news by clydelion is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License. Click here to download this file
  17. LOL. I really thought CeresCP was dead or have stopped development. Good to know that it's alive and is getting better than ever.
  18. manually diff those. open the diff file. the file to be edited is defined in the header of every part.. search for the lines and add those with + sign. of course, omit those + signs.
  19. cygwin dre. para kang nasa linux, command prompt interface. ang gagagamitin mong commands ay ./configure make clean make sql http://www.cygwin.com/
  20. in src/common/mmo.h #ifndef PACKETVER #define PACKETVER 20110713 //#define PACKETVER 20111116 #endif change this line to whatever your client date is #define PACKETVER 20110713 in your case it should be #define PACKETVER 20120410 then recompile
  21. i didn't get this. Is it the same as @changelook command?
  22. sa data folder.. nakita mo ba yung username mo dun? dapat makita mo dun yun e pati yung ip..
  23. prontera,136,203,4 script Skill Point Merchant 758,{ set @skprice, 1000000; set @sksellprice, 500000; mes "[^CC0000Skill Point Merchant^000000]"; mes "Hello "+strcharinfo(0)+"!"; mes "Each point will cost [^ff0000" +@skprice+ "z^000000] zeny."; mes "and I can buy it for [^ff0000" +@sksellprice+ "z^000000] zeny."; mes "What do you want to do?"; next; menu "Buy skill points!",L_skill,"Sell skill points!",L_sellskill,"No, thanks.",L_decline; L_decline: mes "[^CC0000Skill Point Merchant^000000]"; mes "Please come back soon."; close; L_skill: if(Zeny<@skprice){ emotion 17; mes "[^CC0000Skill Point Merchant^000000]"; mes "Sorry. You don't have enough money"; close; } else { mes "[^CC0000Skill Point Merchant^000000]"; mes "How many skill points do you want to buy?"; input @skpoints; next; if(Zeny<@skpoints*@skprice){ mes "[^CC0000Skill Point Merchant^000000]"; mes"I'm sorry you don't have enough money for that..."; close;} else{ set Zeny, Zeny-(@skpoints*@skprice); set skillpoint, skillpoint+ @skpoints; mes "[^CC0000Skill Point Merchant^000000]"; mes "There you go! Have a nice day."; emotion 15; close; end; }} L_sellskill: if(skillpoint<1){ emotion 17; mes "[^CC0000Skill Point Merchant^000000]"; mes "Sorry. You don't have any skillpoint."; close; } else { mes "[^CC0000Skill Point Merchant^000000]"; mes "How many skill points do you want to sell?"; input @skpoints; next; if(@skpoints>skillpoint){ mes "[^CC0000Skill Point Merchant^000000]"; mes"I'm sorry you don't have enough skillpoints for that..."; close;} if(@skpoints<1){ mes "[^CC0000Skill Point Merchant^000000]"; mes"Huh?!"; close;} else{ set Zeny, Zeny+(@skpoints*@sksellprice); set skillpoint, skillpoint- @skpoints; mes "[^CC0000Skill Point Merchant^000000]"; mes "There you go! Have a nice day."; emotion 15; close; end; } } }
  24. hmmmm.. tama ba ip mo sa clientinfo.xml? may nakita ka bang nagconnect sa window ng login-server_sql?
  25. para matest mo.. try mo maglogin ng ganito kunyari gusto mo username 'pogiako'. ganito ka maglogin.. username: pogiako_m , tas yung password mo... _m or _f for new accounts
×
×
  • Create New...