Jump to content

darking123

Members
  • Posts

    931
  • Joined

  • Last visited

Everything posted by darking123

  1. What to edit so that when an item turned to costume. the effect of the item will not take effect. https://github.com/Sehrentos/rathena/commit/21a1a32203b6a48664c97bfd93b0ae09de80d06e https://github.com/Sehrentos/rathena/commit/c7b5fbb828e369c4cd0200bba67491e62360e3da
  2. why is it that When I added a mod for the parrying skill to work with SG class. LK parrying when linked turns to level 1 only? but when in SG it is level 10
  3. we tried again. but in my IPn history it says Retrying, I'm only using premier account. the donator didn't receive any donation credits but i received the payment also the HTTP response code 500
  4. after turning IPN. what would be the next step?
  5. I'm using premier. I saw IPN thing. I want to enable it. what to put in the notification URL?
  6. A player donated via paypal in my donation shop. but the donation credits didn't show up to the players account automatically? how to fix. im using personal account
  7. thank you. eadev is the developer of my theme. I haven't edited my module folder. I just changed my flux integ from renewal to pre-renewal then it prompt me to reinstall. then when all things are already installed. that thing appeareed
  8. Notice: Trying to get property of non-object in /home/itest/public_html/modules/main/preprocess.php on line 86 Fatal error: Call to a member function get() on a non-object in /home/itest/public_html/modules/main/preprocess.php on line 86
  9. do anyone got a .diff for rA? in harmony.
  10. Is it really abandoned? if yes. what would be your solid proof?
  11. // Can Rogues plagiarize advanced job skills // 0 = no restriction // 1 = only stalker may plagiarize advanced skills // 2 = advanced skills cannot be plagiarized by anyone // Official servers setting: 2 copyskill_restrict: 2 I can't locate those settings in my skill.conf
  12. invek,135,164,5 script Guild Package 734,{ .@req_online = 11; // how many players need to online to claim. Default: 11 .@req_lv = 255; // minimum level of .@online players that has to be. Default: MAX_LEVEL in mmo.h mes "^FF0000The Guild Level must be level 50^000000"; mes ""; mes "^FF0000You must have 11 players online^000000 in your guild including the guild master"; mes ""; mes "^FF0000All you the player in the guild must be level 255^000000"; mes ""; mes "^00FF00Bound items^0000FF that gained cannot be "; mes "traded it to other account,sold,"; mes "nor dropped"; next; mes "The Guild Master Will Receive The Following"; mes " ^FF0000 1x Ghostring Card ^000000"; mes " ^FF0000 1x Moonlight Card ^000000"; mes " ^FF0000 4x Turtle General Card ^000000"; mes " ^FF0000 1x Thara Frog Card ^000000"; mes " ^FF0000 1x Orc hero Card ^000000"; mes " ^FF0000 1x Evil Snake Lord Card ^000000"; mes " ^FF0000 1x Raydric Card ^000000"; mes " ^FF0000 1x General Egnigem Cenia Card ^000000"; mes " ^FF0000 1x Hollow Mask(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Helm(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Armor(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Mantue(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Shoes(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Shield(BOUND) ^000000"; mes " ^FF0000 1000x Super Fish Slice(BOUND) ^000000"; mes " ^FF0000 10x Emergency Level 3 Scroll(BOUND) ^000000"; mes "^00FF00 1x Wing of Choice ^000000"; mes " ^FF0000 Arch demon wing OR Deviling Wing OR Angeling Wing(BOUND) ^000000"; mes "^00FF00 Random Items(BOUND) ^000000"; mes " ^FF0000 1x Earth Headprotector ^000000"; mes " ^FF0000 1x Fire Headprotector ^000000"; mes " ^FF0000 1x Lightning Headprotector ^000000"; mes " ^FF0000 1x Sound Headprotector ^000000"; mes " ^FF0000 1x Water Headprotector ^000000"; next; mes "The Guild Member Will Receive The Following"; mes " ^FF0000 1x Ghostring Card ^000000"; mes " ^FF0000 1x Moonlight Card ^000000"; mes " ^FF0000 4x Turtle General Card ^000000"; mes " ^FF0000 1x Thara Frog Card ^000000"; mes " ^FF0000 1x Orc hero Card ^000000"; mes " ^FF0000 1x Evil Snake Lord Card ^000000"; mes " ^FF0000 1x Raydric Card ^000000"; mes " ^FF0000 1x General Egnigem Cenia Card ^000000"; mes " ^FF0000 1x Hollow Mask(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Helm(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Armor(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Mantue(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Shoes(BOUND) ^000000"; mes " ^FF0000 1x Silver Valkyrie Shield(BOUND) ^000000"; mes " ^FF0000 500x Super Fish Slice(BOUND) ^000000"; mes "^00FF00 1x Wing of Choice ^000000"; mes " ^FF0000 Arch demon wing OR Deviling Wing OR Angeling Wing(BOUND) ^000000"; mes "^00FF00 Random Items(BOUND) ^000000"; mes " ^FF0000 1x Earth Headprotector ^000000"; mes " ^FF0000 1x Fire Headprotector ^000000"; mes " ^FF0000 1x Lightning Headprotector ^000000"; mes " ^FF0000 1x Sound Headprotector ^000000"; mes " ^FF0000 1x Water Headprotector ^000000"; next; if ( !getcharid(2) ) { mes "You must have a guild"; close; } if ( getguildmasterid( getcharid(2) ) != getcharid(0) ) { mes "You cannot request the Guild Package,"; mes "only the guild master can request for the package"; close; } query_sql "SELECT guild_lv FROM guild WHERE guild_id = "+getcharid(2), .@guild_lv; if ( .@guild_lv != 50 ) { mes "You're guild level must be level 50"; close; } getguildmember getcharid(2), 1; getguildmember getcharid(2), 2; for ( .@i = 0; .@i < $@guildmembercount; .@i++ ) if ( isloggedin( $@guildmemberaid[.@i], $@guildmembercid[.@i] ) ) .@online++; if ( .@online < .@req_online ) { mes "Your guild must have "+ .@req_online +" guild members online including the guild master"; close; } .@origin = getcharid(3); for ( .@i = 0; .@i < $@guildmembercount; .@i++ ) { if ( isloggedin( $@guildmemberaid[.@i], $@guildmembercid[.@i] ) ) { attachrid $@guildmemberaid[.@i]; if ( BaseLevel < .@req_lv ) { .@deny_name$[.@c] = strcharinfo(0); .@c++; } } } attachrid .@origin; if ( .@c ) { mes "There are "+ .@c +" member does not meet the level requirement"; mes "All members must be level 255"; mes implode( .@deny_name$, "," ); close; } for ( .@i = 0; .@i < $@guildmembercount; .@i++ ) { if ( isloggedin( $@guildmemberaid[.@i], $@guildmembercid[.@i] ) ) { attachrid $@guildmemberaid[.@i]; if ( #guild_package_claimeddd ) { .@deny_name$[.@c] = strcharinfo(0); .@c++; } } } attachrid .@origin; if ( .@c ) { mes "There are "+ .@c +" members already claimed this package within their account"; mes implode( .@deny_name$, "," ); close; } if ( query_sql( "select account_id as aaa, ( select last_ip from login where account_id = aaa ) as last_ip from guild_member where guild_id = "+ getcharid(2) +" group by last_ip", .@aid, .@ip$ ) < .@req_online ) { mes "same ip detected"; .@nb = query_sql( "select name, account_id as aaa, ( select last_ip from login where account_id = aaa ) as last_ip from guild_member where guild_id = "+ getcharid(2), .@name$, .@aid, .@ip$ ); for ( .@i = 0; .@i < .@nb; .@i++ ) mes (.@i +1)+". "+ .@name$[.@i] +" ("+ .@ip$ +")"; next; } mes "pass"; mes "Please choose what wing do you want"; mes "Arch demon wing"; mes "Dex + 3, Agi + 3"; mes "Deviling Wing"; mes "Str + 3, Vit + 2"; mes "Angeling Wing"; mes "Int + 3, Agi + 2"; mes "Choose wisely"; for ( .@i = 0; .@i < $@guildmembercount; .@i++ ) { if ( isloggedin( $@guildmemberaid[.@i], $@guildmembercid[.@i] ) ) { attachrid $@guildmemberaid[.@i]; if ( getguildmasterid( getcharid(2) ) != $@guildmembercid[.@i] ){ getitem 4047,1; getitem 4058,1; getitem 4143,1; getitem 4330,1; getitem 4133,1; getitem 4352,1; getitem 4131,1; getitem 4305,4; getitembound 30021,1,1; getitembound 30032,1,1; getitembound 30033, 1,1; getitembound 30034, 1,1; getitembound 30035, 1,1; getitembound 30036, 1,1; getitembound 14524, 500,1; getitembound callfunc( "F_Rand", 30082, 30083, 30084, 30085, 30086, 30087 ), 1,1; switch( select( "Arch demon wing:Deviling Wing:Angeling Wing" ) ) { case 1: //getitem <item id>,<amount> getitembound 30027,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; case 2: //getitem <item id>,<amount> getitembound 30028,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; case 3: //getitem <item id>,<amount> getitembound 30030,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; default: break; } } if ( getguildmasterid( getcharid(2) ) == $@guildmembercid[.@i] ){ //guild master getitem 4047, 1; getitem 4058, 1; getitem 4143, 1; getitem 4330, 1; getitem 4133, 1; getitem 4352, 1; getitem 4131,1; getitem 4305,4; getitembound 30021, 1,1; getitembound 30032, 1,1; getitembound 30033, 1,1; getitembound 30034, 1,1; getitembound 30035, 1,1; getitembound 30036, 1,1; getitembound 14524, 1000,1; getitembound 12970, 10,1; getitembound callfunc( "F_Rand", 30082, 30083, 30084, 30085, 30086, 30087 ), 1,1; switch( select( "Arch demon wing:Deviling Wing:Angeling Wing" ) ) { case 1: //getitem <item id>,<amount> getitembound 30027,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; case 2: //getitem <item id>,<amount> getitembound 30028,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; case 3: //getitem <item id>,<amount> getitembound 30030,1,1; skilleffect 361,0; sc_start SC_ASSUMPTIO,360000,5; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; break; default: break; } } #guild_package_claimeddd = 1; } } attachrid .@origin; close; } All the members must be given gpack. but out of 11 players. 2 players was only given. I think thr switch( select( function is the problem. Because after obtaining the freebies. each player including the guild master will choose there own choice of wing
  13. when caster amplify magic power matk doesn't change in alt+q I'm using git 12427 pre-renewal
  14. if i put 1 Vit..how many hp will be added if for example 1 VIT= 10HP i want to make it 1 VIt = 20 HP what will i edit?
  15. Market_clone_1.3.1_rA_r12540.patch = if your out of sight of your clone pub. the pub disappears but the clone is still there
  16. The problem is when I use the VIP ticket to broadcast. the VIP ticket disappears
  17. Anyone have an update regarding Internal Guard? There website is currently down. I didn't receive any news regarding IG. also ro services doesn't reply my tickets.
  18. Market_clone_1.3.1_rA_r12540.patch under script.c in // Market Clone [AnnieRuru/Dastgir] if ( md->market_chat_id ) return 0 change it to // Market Clone [AnnieRuru/Dastgir] if ( md->market_chat_id ) return 0;
  19. How to disable GM account from using any kind of skills?
  20. how to make cell_novending can be bypassed by GM
×
×
  • Create New...