Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/28/19 in all areas

  1. A big thanks to rAthena Development Team for the scripts, sources, tools and tutorials! I'm just 13 years old running a Ragnarok Private Server! Long live rAthena!
    1 point
  2. I patched your EXE. Use these files. It works for me. https://mega.nz/#!wM0gTAja!4EgppGPYSVEErOMyu1TLx-xMJnt2jdno4EjpV81Jn_0
    1 point
  3. Fíjate en el nivel, si es 1 o 2 necesitas pegarte a una pared, si es nivel 3 te irá bien.
    1 point
  4. The pull request is for both pre-re and re.
    1 point
  5. pc_setglobalreg(sd, add_str("ProducePoints"), pc_readglobalreg(sd, add_str("ProducePoints")) + 1);
    1 point
  6. It looks simple but nice, smooth and clean. There are a lot screen issues. If u need help just let me know it. In average good work. Keep it forward! Rynbef~
    1 point
  7. I really don't like to spoonfeed people, but since I already have the code: 18666,CD_In_Mouth,CD In Mouth,4,20,,200,,0,,0,0xFFFFFFFE,63,2,1,,20,0,815,{ autobonus "{ bonus3 bAutoSpell,8013,5,40; bonus3 bAutoSpell,8013,4,40; bonus3 bAutoSpell,8013,3,40; bonus3 bAutoSpell,8013,2,40; bonus3 bAutoSpell,8013,1,40; bonus3 bAutoSpell,13,1,10; bonus3 bAutoSpell,13,2,10; bonus3 bAutoSpell,13,3,10; bonus3 bAutoSpell,13,4,10; bonus3 bAutoSpell,13,1,10; }",60,5000,0,"{ specialeffect2 EF_POTION_BERSERK; }"; },{},{} Notes: Skill ID 8013 = Caprice; 13 = Soul Strike. Autobonus doesn't support skill names since they (skill names) break the quotation ("") marks. Caprice randomly casts FB, LB, CB and ES. I gave it a 4% chance of autocasting so as if each bolt is casted at a 1% rate. Edit: Should have been posted at the requests section?
    1 point
  8. I made this private mvp room script, which using almost the same system as your script weird, I remembered I made a snippet script before inside eathena script support section ... but right now I couldn't find back that topic ( wahahahah I got 6.6k post count there, I also can't find my own post myself xD ) anyway I just write this again from scratch prontera,155,187,5 script sdfjhsdfkj 100,{ // script check for empty room for ( .@i = 1; .@i <= 8; .@i++ ) if ( getmapusers( "06guild_0"+ .@i ) == 0 ) .password$[.@i] = ""; mes "select a room"; mes " "; for ( .@i = 1; .@i <= 8; .@i++ ) if ( .password$[.@i] != "" ) mes "^000000Room no."+ .@i +" = ^0000FF"+ .creater_name$[.@i]; next; for ( .@i = 1; .@i <= 8; .@i++ ) if ( .password$[.@i] == "" ) .@menu$ = .@menu$ +"^000000Room no."+ .@i +" = ^FF0000<Free>:"; else .@menu$ = .@menu$ +"^000000Room no."+ .@i +" = ^0000FF"+ .creater_name$[.@i] +":"; .@room = select( .@menu$ ); if ( .password$[ .@room ] == "" ) { if ( zeny < 50000 ) { mes "you need 50,000 zeny to rent a room"; close; } mes "this room is available"; mes "please input a password"; mes "string length : min 4, max 30"; next; if ( input( .@pass$, 4, 30 ) ) { mes "invalid string length"; close; } if ( .@pass$ == " " ) close; mes "password set to this ?"; mes "^FF0000"+ .@pass$; next; if ( select ( "Yes", "No" ) == 2 ) close; // double check is there anyone rent faster than you if ( .password$[ .@room ] != "" ) { mes "I'm sorry but somebody rent this room faster than you"; close; } // again double check the zeny requirement because of Ragnarok stupid mail system (send mail using friend list) <.< always make a habit to counter check item and zeny requirement if ( zeny < 50000 ) { mes "don't cheat me"; close; } zeny -= 50000; // OOOOPPSS !! .password$[ .@room ] = .@pass$; .creater_name$[ .@room ] = strcharinfo(0); warp "06guild_0"+ .@room, 49, 49; end; } mes "input the password"; // always have some recovery system for GMs to recover password if ( getgmlevel() == 99 ) { mes " "; mes "^FF0000 Admin ONLY"; mes "^0000FF"+ .password$[ .@room ]; } next; input .@pass$; if ( .@pass$ != .password$[ .@room ] ) { mes "wrong password input"; close; } warp "06guild_0"+ .@room, 49, 49; end; } 06guild_01 mapflag nowarpto 06guild_02 mapflag nowarpto 06guild_03 mapflag nowarpto 06guild_04 mapflag nowarpto 06guild_05 mapflag nowarpto 06guild_06 mapflag nowarpto 06guild_07 mapflag nowarpto 06guild_08 mapflag nowarpto
    1 point
  9. yes... // Note 3: Value is a bit field. If no description is given, // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun) the number just used for the server to enable what / who can have those effect take place in game.
    1 point
×
×
  • Create New...