Jump to content

Sryx

Members
  • Posts

    520
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Sryx

  1. prontera,155,181,5 script Soul Buffer#1:SB 992,{ mes " Msg "; mes " Msg 2"; set .@i,select( "Buff","Link","Both" ); set .@cost,( ( .@i == 3 )? 400000:200000 ); if( Zeny < .@cost ){ mes "You dont have enough "+.@cost+" zeny."; }else{ set Zeny,Zeny - .@cost; if( .@i & 1 ){ percentheal 100,100; skilleffect 34,0; sc_start SC_BLESSING,360000,10; skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10; } if( .@i & 2 ){ switch ( basejob ) { case Job_Alchemist: set .@spirit, 445; break; case Job_Monk: set .@spirit, 447; break; case Job_Star_Gladiator: set .@spirit, 448; break; case Job_Sage: set .@spirit, 449; break; case Job_Crusader: set .@spirit, 450; break; case Job_SuperNovice: set .@spirit, 451; break; case Job_Knight: set .@spirit, 452; break; case Job_Wizard: set .@spirit, 453; break; case Job_Priest: set .@spirit, 454; break; case Job_Bard: case Job_Dancer: set .@spirit, 455; break; case Job_Rogue: set .@spirit, 456; break; case Job_Assassin: set .@spirit, 457; break; case Job_Blacksmith: set .@spirit, 458; break; case Job_Hunter: set .@spirit, 460; break; case Job_Soul_Linker: set .@spirit, 461; break; default: if ( upper == 1 && baselevel < 70 ) set .@spirit, 494; } if ( .@spirit ) { sc_start4 sc_spirit, 360000, 5, .@spirit,0,0; skilleffect .@spirit, 5; } } mes "DONE"; } close; }
  2. Sryx

    My SQL problem

    Download again the files, it should not be empty.
  3. Post your Script here so we can edit it for you.
  4. Sryx

    iOS or Android?

    iOS because there is only FEW group that propose iOS App. Unity3D - cost lots of $$$$$$ Android - You can code it on your Windows w/o Virtual and Android use JAVA Language (Java Eclipse). Much better if you propose both Android and iOS, same features different language. Goodluck!
  5. Download Microsoft Visual Studio / C++
  6. Diff again your client and check the Skip Packet Header Obfuscation Skip Packet Header Obfuscation R2
  7. 1. Use rsu-kro-rag-lite/rsu-kro-renewal-lite to patch your kRO. 2. Go to your terminal/server files then type SVN Update.
  8. Much better if you are going to instruct them to run the kRO(rsu-kro-rag-lite/renewal-lite).
  9. Change your Emperium Script from mob_db. Use pre-renewal Emperium Script. from. 1288,EMPELIUM,Emperium,Emperium,90,700,1,0,0,1,60,73,64,50,1,17,80,50,26,20,10,12,0,8,26,0x160,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 to 1288,EMPELIUM,Emperium,Emperium,90,68430,0,0,0,1,60,71,40,50,1,17,80,50,26,20,10,12,0,8,26,0x120,300,1288,288,384,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
  10. Check mo yung Diff mo sa client, or tama ba yung lagay mo ng MD5?
  11. Sryx

    1 Item 1 Account

    Use the Global/Account Based Variable "#" set #Onetime,1;
  12. Buying? It is free dude. Just download TortoiseSVN so you can checkout that. You can find the links here. Popular Requested Links Unless you wan't a fully working server. You can check the Paid Services for the Full Setup . Come on dude. rAthena SVN is free.
  13. http://rathena.org/wiki/Compiling try to type: SVN INFO
  14. I don't know that you are saying but maybe you are asking for this? #ifndef PACKETVER #define PACKETVER 20120410 #endif
  15. Read clearly he want to buy harmony.. so how he can post on harmony forum without harmony account peace... o.O haha.
  16. Dito ka mag edit ng slots para sa Client side.(Dapat na ayos mo na ung sa Item DB bago mo edit yan) itemslotcounttable Halimbawa: 1101#3# Kungs TestRO lang diff mo nlng ung Client mo ng "Read Data Folder First" para di ka mahirapan Or gamit ka ng Thor Patcher.
  17. // Show eAthena version to users when the login? display_version: yes to // Show eAthena version to users when the login? display_version: no Any. You can use LUA or LUB it depends on how you diff your Cient.
  18. Sryx

    Exchanger

    Here's mine. prontera,138,184,5, script Credit Agent 828,{ mes "[^000088 Mr. Credit ^000000]"; mes "I Can Change Credits to Zeny"; mes "and Zeny to Credits"; mes "Remember 1 Credit = ^64000010,000,000z^000000."; mes "Max Zeny is ^6400002,000,000,000z^000000 so be careful with your Credits"; mes "Exchanging Credits with Max Zeny your Credits will be Wasted"; mes "So what do you want?"; menu "Credits To Zeny",-,"Zeny To Credits",ztc; next; mes "[^000088 Mr. Credit ^000000]"; mes "Are you sure you want to exchange your Credits to Zeny?"; menu "Yes",-,"No",G_no; next; mes "[^000088 Mr. Credit ^000000]"; mes "How many Credits do you want to exchange?"; next; input .@t; if(countitem(8055) < .@t) goto L_NOTENOUGH; mes "[^000088 Mr. Credit ^000000]"; mes "Thanks. . See you again. . . !"; delitem 8055,.@t; set Zeny,Zeny+10000000*.@t; close; ztc: next; mes "[^000088 Mr. Credit ^000000]"; mes "Are you sure you want to exchange your Zeny to Credits?"; menu "Yes",-,"No",G_no; next; mes "[^000088 Mr. Credit ^000000"; mes "How many Credits do you want to exchange?"; next; input .@t; if(Zeny < 10000000*.@t) goto L_NOTENOUGH2; mes "[^000088 Mr. Credit ^000000]"; mes "Thanks. . See you again. . . !"; set Zeny,Zeny-10000000*.@t; getitem 8055,.@t; close; L_NOTENOUGH: next; mes "[^000088 ^000088 Mr. Credit ^000000]"; mes "You are lacking some credits."; close; L_NOTENOUGH2: next; mes "[^000088 ^000088 Mr. Credit ^000000]"; mes "You are lacking some Zeny."; close; G_no: next; mes "[^000088 ^000088 Mr. Credit ^000000]"; mes "Please use my service next time"; close; end; }
  19. Sryx

    RO2

    ragezone
  20. Sryx

    RO2

    Ragnarok Online 2 https://www.facebook.com/PlayRO2?fref=ts
  21. Sryx

    RO2

    Yes but most likely RO Features. xD
  22. Sryx

    RO2

    Don't know, awesome graphics and there is a lot of players from different country. Fun !
×
×
  • Create New...