Jump to content

GmOcean

Members
  • Posts

    666
  • Joined

  • Last visited

  • Days Won

    4

Community Answers

  1. GmOcean's post in Nerf Heal Bomb was marked as the answer   
    The Below should make it back to normal heal damage. Not sure though, didn't test it.
     
    In Battle.c find:
    switch (skill_id) { //Calc base damage according to skill case AL_HEAL: case PR_BENEDICTIO: case PR_SANCTUARY: /** * Arch Bishop **/ case AB_HIGHNESSHEAL: ad.damage = skill_calc_heal(src, target, skill_id, skill_lv, false); break; And then add
    ad.damage = ( skill_calc_heal(src, target, skill_id, skill_lv, false) / 5); Below AL_HEAL, so should look like:
    switch (skill_id) { //Calc base damage according to skill case AL_HEAL: ad.damage = ( skill_calc_heal(src, target, skill_id, skill_lv, false) / 2 ); case PR_BENEDICTIO: case PR_SANCTUARY: /** * Arch Bishop **/ case AB_HIGHNESSHEAL: ad.damage = skill_calc_heal(src, target, skill_id, skill_lv, false); break;
  2. GmOcean's post in R>NPC that generates random text was marked as the answer   
    Okay, so here is what you were asking for I guess. You can increase the strength of this by using methods that Euphy mentioned in addition to the showdigit time method. But for now this is in itself pretty strong D: ( i guess lol).
     
    Okay, so the way this script works is the following:
    1. It shows a time at the top of the screen for 5 seconds. (Same format as used when your #1 in PvP).
    2. It generates 3 random strings of text each different in length depending on what you specify.
    3. The FIRST and LAST string of text is highlighted red, and are what the player needs to type in.
    4. It is case sensitive.
    5. Format inputted is:  string1+string2+numbers.
    ex: asdf234asdfqwer5678qwer012345678
    6. The player has a limited amount of time to input the password. (This can be specified in the script).
    7. After the player logs in there is a random amount of time until the player is given the test. ( between 1min -> 15min by default ).
    8. Lastly the length of the text is random from 10->48 (by default. can be changed).
    ex: Ae16455934     OR    ex: 1234AsDf5678qwERgh34awTGTJhiiL9ku8765Fta14593402
    So, yeah it's up to you on what you wanna change it to.
    First off, change this to a number higher than those your players are. This prevents them from using commands to bypass the bot check.
    // Only group with level more than or equal this value can use atcommand while talking with NPC. atcommand_enable_npc: 0 Then simply install this script and make the changes as needed.
    - script bot_test -1,{ OnInit: set .mim,1; //Minimum Wait time before starting bot test. set .mxm,15; //Maximum Wait time before starting bot test. set .often,60; //How often a bot test is given in minutes. set .timetest,30; //Seconds for players to input test before they auto-fail. set .minstr,1; //DO NOT CHANGE //Max Length each section of the string will be. set .maxstr,20; // ( .maxstr * 2 ) + 8 = Password Length. //DO NOT CHANGE THE BELOW// .day = 86400; .hour = 3600; .min = 60; setarray .0$[0],"a","b","c","d","e","f","g","h","i","j","k","L","m","n","o","p","q","r","s","t","u","v","w","x","y","z"; setarray .1$[0],"A","B","C","D","E","F","G","H","ii","J","K","LL","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z"; setarray .2$[0],"0","1","2","3","4","5","6","7","8","9"; setarray .day$[1],"01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30"; setarray .hour$[0],"00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23"; setarray .min$[0],"00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29", "30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59"; setarray .second$[0],"00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29", "30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52","53","54","55","56","57","58","59"; OnPCLoginEvent: addtimer (60000 *rand(.@min,.@mxm) ), strnpcinfo(3)"+::OnBotTest"; //Starts timer to trigger bot timer end; OnBotTest: set @pass,0; addtimer .timetest * 1000, strnpcinfo(3)"+::OnTestCheck"; set .@d,rand(1,30); set .@h,rand(1,23); set .@m,rand(60); set .@s,rand(60); set .@a,rand(20); set .@b,rand(20); set .@c,rand(20); freeloop(1); while( .@i <= .@a ){ .@d = rand(3); if( .@d == 2 ){ set .@str1$,.@str1$ + getd(".@"+ .@d +"$["+ rand(10) +"]"); } if( .@d == 0 || .@d == 1 ){ set .@str1$,.@str1$ + getd(".@"+ .@d +"$["+ rand(26) +"]"); } .@i++; } while( .@j <= .@a ){ .@e = rand(3); if( .@e == 2 ){ set .@str2$,.@str2$ + getd(".@"+ .@e +"$["+ rand(10) +"]"); } if( .@e == 0 || .@e == 1 ){ set .@str2$,.@str2$ + getd(".@"+ .@e +"$["+ rand(26) +"]"); } .@j++; } while( .@l <= .@a ){ .@f = rand(3); if( .@f == 2 ){ set .@str3$,.@str3$ + getd(".@"+ .@f +"$["+ rand(10) +"]"); } if( .@f == 0 || .@f == 1 ){ set .@str3$,.@str3$ + getd(".@"+ .@f +"$["+ rand(26) +"]"); } .@l++; } freeloop(0); showdigit ( (.@day * .@d) + (.@hour * .@h) + (.@min * .@m) + (.@s) ); mes "Input the ^FF0000TEXT^000000 only + the numbers above"; mes "^FF0000"+ .@str1$ +"^0000FF"+ .@str2$ +"^FF0000"+ .@str3$ +"^000000"; //For Debug purposes //mes ""+ .@day$[.@d]+""+ .@hour$[.@h] +""+ .@min$[.@m] +""+ .@second$[.@s]+""; input .@password$; if( .@password$ != ""+ .@str1$ +""+ .@str3$ +""+ .@day$[.@d] +""+ .@hour$[.@h] +""+ .@min$[.@m] +""+ .@second$[.@s] +"" ){ mes "^FF0000 FAILED"; //Punishment close; } addtimer (60000 * .often), strnpcinfo+"::OnBotTest"; set @pass,1; close; OnTestCheck: if( @pass ){end;} //Punishment end; } Right now, this script does not provide any form of punishment. To punish a person (ban/kick or other wise), simply search for //Punishment and replace with your punishment method.
  3. GmOcean's post in How to give Enchant Item to a character was marked as the answer   
    *getitem2 <item id>,<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>{,<account ID>};
    *getitem2 "<item name>",<amount>,<identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>{,<account ID>};
    This command will give an amount of specified items to the invoking character.
    If an optional account ID is specified, and the target character is currently
    online, items will be created in their inventory instead. If they are not
    online, nothing will happen. It works essentially the same as 'getitem' but is
    a lot more flexible.
    Those parameters that are different from 'getitem' are:
    identify - Whether you want the item to be identified (1) or not (0).
    refine - For how many pluses will it be refined.
    It will not let you refine an item higher than the max refine.
    attribute - Whether the item is broken (1) or not (0).
    card1,2,3,4 - If you want a card compound to it, place the card ID number into
    the specific card slot.
    Card1-card4 values are also used to store name information for named items, as
    well as the elemental property of weapons and armor. You can create a named item
    in this manner, however, if you just need a named piece of standard equipment,
    it is much easier to the 'getnameditem' function instead.
    You will need to keep these values if you want to destroy and then perfectly
    recreate a named item, for this see 'getinventorylist'.
    If you still want to try creating a named item with this command because
    'getnameditem' won't do it for you cause it's too limited, you can do it like
    this. Careful, minor magic ahead.
    // First, let's get an ID of a character who's name will be on the item.
    // Only an existing character's name may be there.
    // Let's assume our character is 'Adam' and find his ID.
    @charid = getcharid(0,"Adam");
    // Now we split the character ID number into two portions with a binary
    // shift operation. If you don't understand what this does, just copy it.
    @card3 = @charid & 65535;
    @card4 = @charid >> 16;
    // If you're inscribing non-equipment, @card1 must be 254.
    // Arrows are also not equipment.
    @card1 = 254;
    // For named equipment, card2 means the Star Crumbs and elemental
    // crystals used to make this equipment. For everything else, it's 0.
    @card2 = 0;
    // Now, let's give the character who invoked the script some
    // Adam's Apples:
    getitem2 512,1,1,0,0,@card1,@card2,@card3,@card4;
    This wasn't tested with all possible items, so I can't give any promises,
    experiment first before relying on it.
    To create equipment, continue this example it like this:
    // We've already have card3 and card4 loaded with correct
    // values so we'll just set up card1 and card2 with data
    // for an Ice Stiletto.
    // If you're inscribing equipment, @card1 must be 255.
    @card1 = 255;
    // That's the number of star crumbs in a weapon.
    @sc = 2;
    // That's the number of elemental property of the weapon.
    @ele = 1;
    // And that's the wacky formula that makes them into
    // a single number.
    @card2 = @ele+((@sc*5)<<8);
    // That will make us an Adam's +2 VVS Ice Stiletto:
    getitem2 1216,1,1,2,0,@card1,@card2,@card3,@card4;
    Experiment with the number of star crumbs - I'm not certain just how much will
    work most and what it depends on. The valid element numbers are:
    1 - Ice, 2 - Earth 3 - Fire 4 - Wind.
    You can, apparently, even create duplicates of the same pet egg with this
    command, creating a pet which is the same, but simultaneously exists in two
    eggs, and may hatch from either, although, I'm not sure what kind of a mess will
    this really cause.


    prontera,150,180,4 script npc_name 123,{ getitem2 2137,1,1,0,0,0,0,0,4800; end; }

  4. GmOcean's post in How can i copy npc array from another NPC? was marked as the answer   
    "." - A NPC variable. They exist in the NPC and disappear when the server restarts or the NPC is reloaded. Can be accessed from inside the NPC or by calling 'getvariableofnpc'. Function objects can also have .variables which are accessible from inside the function, however 'getvariableofnpc' does NOT work on function objects. *getvariableofnpc(<variable>,"<npc name>") Returns a reference to a NPC variable (. prefix) from the target NPC. This can only be used to get . variables. Examples: //This will return the value of .var, note that this can't be used, since the value isn't caught. getvariableofnpc(.var,"TargetNPC"); //This will set the .v variable to the value of the TargetNPC's .var variable. set .v, getvariableofnpc(.var,"TargetNPC"); //This will set the .var variable of TargetNPC to 1. set getvariableofnpc(.var,"TargetNPC"), 1; Note: even though function objects can have .variables, getvariableofnpc will not work on them. @1: Yes, it should be possible using this method.
    @2: You need to use getvariableofnpc for each instance of needing to use the variable from another NPC.
    @3: As Skorm mentions, as long as the NPC is a duplicate of another NPC, the scope variables will be the same as another.
    @4: When using deletearray command, the documentation is right, but also wrong. It should read:
    *deletearray <array name>{[<first value>],<how much to delete>}; This is because, when a start & end value is omitted, it defaults to:   deletearray <arrayname>[0],<script_max_array_size>;
    So it should be completely erasing your array from existence.
     
     
    Hope that helps D: and anyone else who feels I am wrong on a certain matter, please don't hesitate to correct me !!
  5. GmOcean's post in Guilds System was marked as the answer   
    setarray .map$[0],"Guild Map 1","Guild Map 2","Guild Map 3"; //Replace with the name of the maps each guild owns setarray .guild[0],1,2,3; //Replace with the guild ids that belong to the corresponding guild maps. You should know all of this information already if your requesting this script.
  6. GmOcean's post in drop items was marked as the answer   
    - script On1956Dead -1,{
    OnNPCKillEvent:
    if( killedrid == 1956 ) && rand(100) < 10 )
    { getmapxy(.@m$,.@x,.@y,0); makeitem( .item[ rand( .item_size ) ],1,.@m$,.@x,.@y; }
    end;
    OnInit:
    setarray .item[0],18113,2016,1586,1395,1832,21001;
    .item_size = getarraysize( .item );
    end;
    }

  7. GmOcean's post in Is this error was normal btw how to fix it?..? was marked as the answer   
    Your script doesn't have the NPC it's looking for.
    disablenpc "Dice Event Warper#dice"; So either you need to redownload it, or look for it else where.
  8. GmOcean's post in how to delete varibles from offline players was marked as the answer   
    Try this.
    prontera,155,160,4 script Global Reg Deleter 123,{ set .@a, getarraysize( .global_delete$ ); while( .@b < .@a ) {query_sql("DELETE FROM `global_reg_value` WHERE `str` = '"+ .global_delete$[.@b] +"'"); set .@b,.@b+1;} end; OnInit: setarray .global_delete$[0],"Kill","Death","KillingStreak","MultiKill","KillingSpree","Dominating","MegaKill","Unstoppable","WickedSick","MonsterKill","Godlike","BeyondGodlike","DoubleKill","TripleKill","UltraKill","NemesisKill","NemesisKilled","FeedCount"; end; }
  9. GmOcean's post in R> someone please fix my script :( was marked as the answer   
    //===== rAthena Script ======================================= //= Alberta Guides //===== By: ================================================== //= L0ne_W0lf //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= [Official Conversion] //= Guides for the city of Alberta //===== Additional Comments: ================================= //= 1.0 First version, Renewal guides. //= 1.1 Navigation system update. [Euphy] //============================================================ glemior,185,329,5 script Newbie Guide 105,{ mes "[Petunjuk Pemain Baru]" mes "Halo, "+strcharinfo(0)+"!" mes "Selamat datang di ^8B4513High Eternity Ragnarok^000000," mes "Kamu butuh informasi?"; next; mes "[Petunjuk Pemain Baru]" mes "Silahkan pilih apa yang ingin kamu ketahui :)"; menu "Status Tambahan",lvling,"Farming",farmz,"NPC Event",npcevent; close; lvling: mes "Bagi pemain baru harap mencari level seperti biasa" mes "Setelah kalian mencapai level 250 silahkan berbicara pada NPC statplus" mes "Pilih reset status kemudian mintalah status tambahan" mes "Mudah kan? Apa ada yang perlu kamu ketahui lagi?"; menu "Menu Sebelumnya",Previous Menu,"Tutup",close; farmz: mes "Bingung dimana dan bagaimana dapetin bahan quest?" mes "Gampang kok, kamu bisa ikutin petunjuk di bawah ini^^)" mes "Ada beberapa cara untuk ngumpulin bahan quest" mes " 1. Mancing (di Fishing spot yang sudah di sediakan) ( untuk quest headgear ) " mes " 2. Mengikuti event-event yang ada ( untuk bermacam-macam hadiah ) " mes " 3. Ikutan WOE dan dapatkan hadiahnya ( untuk quest headgear & ring ) " mes " 4. Berburu di Farm Room ( untuk Blue & Red Badge bahan quest ring ) " mes " 5. Join main Deathmatch ( untuk TCG Cards ) " mes "Gampang kan? Apa ada yang perlu kamu ketahui lagi?"; menu "Ya, Masih Ada Yang Perlu Aku Ketahui",Previous Menu,"Tidak, Itu Sudah Cukup",close; npcevent: mes "Ada banyak event di High Eternity Ragnarok" mes "Entah itu Event dari NPC yang sudah di sediakan atau dari GM" mes "Nah, disini akan di jelasin cara-cara jalanin event-event itu" mes "Silahkan pilih event apa yang kamu ga tau cara mainnya?"; menu "Hunting Mission",hunting,"Brain Memory(Mavis Vermillion)",mavis,"Soul Hunter",soul,"Mining(Hermoining)",mining,"Disguise",disg,"Clucker",cluckz; hunting: mes "Hunting Mission" mes "Event bagi pecinta hunting ^^" mes "Hadiah dari Event ini bisa di gunakan untuk membeli Costume" mes "NPC ini akan merandom mob(monster) yang akan menjadi buruan kalian" mes "Kalian akan di minta untuk membunuh mob(monster) yang sudah ditentukan oleh NPC ini" mes "Jumlahnya pun ber variasi, semakin banyak jumlahnya semakin besar hadiahnya" mes "Kalau kamu lupa apa aja monster yang mesti di buru, kamu bisa cek di NPCnya, pilih Mission Status" mes "Disitu kalian bisa lihat apa aja monster yang mesti di buru dan juga hadiah apa aja yang kalian dapatkan"; close; mavis: mes "Mavis Vermillion" mes "NPC Brain Memory" mes "Jangan lupa untuk mengaktifkan effect (ketik /effect)" mes "Seperti pada umumnya permainan Brain Memory" mes "Kalian di haruskan memasang-masangkan gambar yang sama" mes "Cuman kalo umumnya pake kartu, disini kita menggunakan telur skill" mes "Jadi kalian mesti memasangkan skill-skill yang sama" mes "Betul 1x dapet (Bronze Coin), kalau bisa selesai dapet (Gold Coin)" mes "Dijamin NPC yang satu ini ga ngebosenin broo ^^" mes "Oh ya, kalian hanya memiliki 20x kesempatan untuk membuka telur skill ini" mes "Gunakan sebaik baiknya ya..hehehe"; close; soul: mes "Soul Hunter" mes "NPC ini tercipta bagi pecinta call of duty" mes "Minimal pemain yang harus memainkan game ini adalah 5 player" mes "Salah satu dari player akan berubah menjadi zombie" mes "Yang tugasnya mengejar pemain lainnya ^^" mes "Siapakah yang akan menang? Manusia ato Zombienya??" mes "Ayo ikuti event ini yang pastinya seru abiss"; close; mining: mes "Hermoining" mes "NPC mining" mes "Sebelum jalanin ni event, kalian harus beli pick axe(hoe)" mes "Yang tersedia di NPC ini" mes "Setelah itu kalian tinggal berangkat deh ke ruangan mining" mes "Tugasnya gampang, kalian tinggal cangkul monster yang ada di ruangan itu" mes "Jika berhasil 1 momon akan jatuhin bronze coin / silver coin" mes "1 momon membutuhkan 1 pick axe(hoe) jadi bawa yang banyak!" mes "Disini kalian akan dapetin mining exp, jika level mining meningkat, presentasi berhasil meningkat pula" mes "Jadi...Happy Mining ya ^^ "; disg: mes "Disguise" mes "event yang hampir selalu ada di setiap private RO" mes "tugasnya mudah, kalian cukup ketik nama monster yang muncul" mes "1x betul dapatkan 1 bronze coin ^^"; cluckz: mes "Clucker" mes "ayam imut yang nyebelin" mes "ayam ini mencuri hadiah yang menarik dari GM" mes "tugas kalian klik ni ayam sampe ada yang sukses dapetin itu hadiah" mes "ada beberapa kemungkinan yang muncul ketika klik ni ayam" mes "frozen(beku),stone curse,nuke(mati langsung),dll" mes "jadi disarankan menyiapkan diri sebelum memainkan permainan ini" mes "angeling card/marc card(anti beku), evil druid (anti stone curse)"; close; } Try that. There seemed to be a few '  ;  '  missing from your script.
     
    doing the following is fine, just make sure the last one has a semi-colon at the end.
    mes "Text here" mes "Text here as well" mes "Text here lastly but end with a ' ; ' before you use a new command such as menu."; menu "This",-; Additionally, your script uses a weird calling for some menu labels, of which I've never seen used before so I'm not sure if they'll work.
    menu "Menu Sebelumnya",Previous Menu,"Tutup",close; As you can see, you put, " Previous Menu ". I'm not sure that's going to work, but if it does good for you then.
  10. GmOcean's post in Translator NPC was marked as the answer   
    Then what you'll need to do is the following...
    1. Copy and paste the Kafra Functions into a new txt document  OR  you can just paste it at the very end of the current file.
    2. Translate all the text in the functions you just copied (This is why it helps to make a new file instead ). Here is an example:
    function script F_Kafra { callfunc "F_ClearGarbage"; switch(getarg(0)){ default: case 0: mes "[ Kafra Employee]"; //Translate mes "Welcome to the"; // Translate mes "Kafra Corporation."; // Translate break; case 1: mes "Good bye."; // Translate close; } } After you are done translating all the text, which shown above, is set by the command " mes ". We'll move on to step 3.
     
    3. Now this is where it gets a little tricky / difficult, but you should be able to manage. Your going to be looking for, all of the Labels in your new copy. Most of which should be labeled like so:  F_LabelName:
    all your going to do, is add an extra letter after the F, in your case G for german. Should look like this when your done:  FG_LabelName:     upon completing that it is time to move on to step 4.
     
    4. Now that we have translated the functions what we need to do is make sure they are called for those using the translation. Look for your kafra employee script file.
    Which should be located in: rathena/npc/kafras/kafras.txt   assuming your using a default kafra. Your going to make translations for all of this text using the following as an example.
    prontera,146,174,4 script Translator#tr01::Translator 727,{ mes "[Translator]"; mes " * Please choose a language"; mes " * Bitte wähle eine Sprache"; next; menu "English",-,"German",L_Ger; set #language,0; next; mes "[Translator]"; mes "Thank you."; mes "Have fun on " + $server_Name$ + "."; close; L_Ger: set #language,1; next; mes "[Translator]"; mes "Danke."; mes "Viel Spaß auf " + $server_Name$ + "."; close; } and yes that is the code you posted before, so should be easy.
     
    Now for #5, were almost done so, don't worry, only 1 more step after this.
     
    5. Now, in that same file, your going to see sections like this:
    aldebaran,143,119,4 script Kafra Employee::kaf_aldebaran 113,{ cutin "kafra_05",2; callfunc "F_KafSet"; mes "[Kafra Employee]"; mes "The Kafra Corporation"; mes "is always working to provide"; mes "you with convenient services."; mes "How may I be of assistance?"; callfunc "F_Kafra",5,0,1,20,600; savepoint "aldebaran",143,109; callfunc "F_KafEnd",0,1,"in the city of Al De Baran"; } Notice that you see the lines, callfunc "F_XXXXXX",a,b,c,d,e,f,g;   and such. Were going to modify it a little using the example of above, but were going to add in our custom Labels we made in step 3. Here is an example.
    aldebaran,143,119,4 script Kafra Employee::kaf_aldebaran 113,{ cutin "kafra_05",2; if( #Language == 1 ){ callfunc "F_KafSet"; } else { callfunc "FG_KafSet"; } mes "[Kafra Employee]"; mes "The Kafra Corporation"; mes "is always working to provide"; mes "you with convenient services."; mes "How may I be of assistance?"; if( #Language == 1 ){ callfunc "F_Kafra",5,0,1,20,600; } else { callfunc "FG_Kafra",5,0,1,20,600; } savepoint "aldebaran",143,109; if( #Language == 1 ){ callfunc "F_KafEnd",0,1,"in the city of Al De Baran"; } else { callfunc "FG_KafEnd",0,1,"GermanTranslation Al De Baran"; } } When that is complete, we'll move on to the 6th and final, easiest step, atleast in my opinion it's the easiest.
     
    6. If you created a new file in step 1, then all your going to do is add it to your server, the same way you would any other script. Which I can safely assume you know how to do already. However if you didn't make a new file in step 1, then guess what, your done already and you can play your server, with now newly translated Kafras. Enjoy.
  11. GmOcean's post in color code was marked as the answer   
    By using color codes before each section that has a different color (this includes if you want text to display as black).
    mes "- ^FF0000"+ getd(".@pt_"+ .@j3 +"["+ (.@i+1) +"]") +" ^0000FF"+ getitemname(getd(".@pt_"+ .@j3 +"["+ .@i +"]")); That will make your above message display as wanted.
    ^RRGGBB ex. ^FF0000 = RED ex. ^00FF00 = GREEN ex. ^0000FF = BLUE ex. ^FFFFFF = WHITE ex. ^000000 = BLACK You can also refer to here: Color Codes for a list of other colors, the middle 6 Letters/numbers are what you use.
  12. GmOcean's post in Rentitem Rand? was marked as the answer   
    if(Sex){rentitem( rand(28103,28104),TIME );} else {rentitem( rand(28101,28102), TIME );}

  13. GmOcean's post in Best way to keep track of deaths in an instance was marked as the answer   
    It doesn't bind to maps individually but it i the best method to track deaths, in comparison to other methods such as seeing if anyone dropped to 0 HP in a continuous every second.
     
    Just add a map check with the OnPCDieEvent to compare it to it's instanced version.
    OnPCDieEvent: if( instance_mapname(strcharinfo(3)) == instance_mapname("prontera") ){end;} dispbottom "A shame. Maybe next time. Come back when your stronger kid."; instance_destroy; end; I don't know why it is like this, but from my tests, the if(statement) needs to be == instead of != to actually end. Otherwise people outside of an instance would trigger the event. But it could just be that my revision is outdated. At any rate, you should be able to properly run a similar check to fit your needs, so that you can perform script functions without interference from other scripts.
  14. GmOcean's post in MVP Ranker map exclusion was marked as the answer   
    for ( set .@i,0; .@i < getarraysize(.restrictedMap$); set .@i, .@i + 1 ) if(strcharinfo(3) == .restrictedMaps$[.@i]) end; Change INTO
    for ( set .@i,0; .@i < getarraysize(.restrictedMaps$); set .@i, .@i + 1 ) if(strcharinfo(3) == .restrictedMaps$[.@i]) end; The problem was you were missing an ' S ' which made the loop useless. Though this shouldn't REALLY matter since, it would set the loop to 0 and end, making .@i = 0.
  15. GmOcean's post in Get player level & monster level OnNpcKill was marked as the answer   
    Player's Level
    BaseLevel - Character's base level. Monster's Level
    *getmonsterinfo(<mob ID>,<type>) This function will look up the monster with the specified ID number in the mob database and return the info set by TYPE argument. It will return -1 if there is no such monster (or the type value is invalid), or "null" if you requested the monster's name. Valid types are listed in 'db/const.txt': MOB_NAME 0 MOB_LV 1 MOB_MAXHP 2 MOB_BASEEXP 3 MOB_JOBEXP 4 MOB_ATK1 5 MOB_ATK2 6 MOB_DEF 7 MOB_MDEF 8 MOB_STR 9 MOB_AGI 10 MOB_VIT 11 MOB_INT 12 MOB_DEX 13 MOB_LUK 14 MOB_RANGE 15 MOB_RANGE2 16 MOB_RANGE3 17 MOB_SIZE 18 MOB_RACE 19 MOB_ELEMENT 20 MOB_MODE 21 MOB_MVPEXP 22 For more details, see the sample in 'doc/sample/getmonsterinfo.txt'. So for you it would be something like this:
    OnNPCKillEvent: @bonus = ( getmonsterinfo(killedrid,1) - BaseLevel ); // killedrid is the ID of the monster killed. if( !@bonus ){ @bonus = 1; } @score += (1 + ( getmonsterinfo(killedrid,1) / 2 ) + @bonus); end;
  16. GmOcean's post in PvP Rank Error was marked as the answer   
    Look for this in your script:
    {OnInit: waitingroom "PvP Rank",0,0; // Look on the configuration! } You need to copy that, place it at the bottom of the script.
    And then delete the original. What's happening is , when ever you click on the NPC it goes to this label, and tries to create a waitingroom. However, every time you start the server or use @reloadscript it creates one already.
  17. GmOcean's post in about max itemratio mobs was marked as the answer   
    That doesn't make a monster drop more than that amount of items.... thats for mob_item_ratio.txt  It allows you to list more than 10mobs per ItemID to affect the drop rate of specified items.
     
    Edit: Perhaps this can be of use to you.... http://rathena.org/board/files/file/2746-mapflag-mobitemadder/
  18. GmOcean's post in Adding a custom effect when equip was marked as the answer   
    yea sorry lol. I didn't notice it right away.... I was seeing CR_FullProtect and it clicked as correct, but Emistry is right, it should be those listed SC effects...
    8145,creator_flamel_card,Creator Card,6,20,,10,,,,,,,,16,,,,,{ bonus bNoKnockback,0; },{ sc_start4 SC_CP_WEAPON,60000,5,0,0,1; sc_start4 SC_CP_SHIELD,60000,5,0,0,1; sc_start4 SC_CP_ARMOR,60000,5,0,0,1; sc_start4 SC_CP_HELM,60000,5,0,0,1; },{ sc_end SC_CP_WEAPON; sc_end SC_CP_SHIELD; sc_end SC_CP_ARMOR; sc_end SC_CP_HELM; } So yea, the above should do what you wanted...
  19. GmOcean's post in where can I get a complete list of Scripting Syntax for SQL? was marked as the answer   
    Ofcourse there is, it's in every version of rAthena.
    https://github.com/rathena/rathena/blob/master/doc/script_commands.txt
  20. GmOcean's post in showevent with different npc was marked as the answer   
    Problem here is: donpcevent requires a player to be attached, while doevent does not.
    Additionally, your thinking too hard for this, and in a result made it over complicated. You can just combine both of those scripts....
    prontera,164,174,4 script Newbie Gift 115,{ if( !#Freebiess ){ set #Freebiess,1; mes "Welcome...this is your gift..."; getitem 1530,1; showevent 0,0; }else{ mes "You have claim the Reward already."; } close; OnPCLoginEvent: if(!#Freebiess){ showevent 1,0; } end; } There, I combined them, also, I changed it to check to see if they received the Item when they login, so it only does " showevent 1,0 " when a NEW account logs in, not just anybody.
  21. GmOcean's post in PvP Warper/Locker (Please help me fix my script) was marked as the answer   
    I see, though, it'd be easier if you just did this:
    celestiaj,73,86,6 script PVP Warper 497,{ if(.locked){mes "Sorry, PVP Rooms are currently Locked."; close;} mes "^ff0000[PVP Warper]^000000"; mes "Which PVP room do you want to warp to?"; next; menu "Normal - No Restrictions",normal,"Trans - 2nd jobs only!",trans,"Non-donate Normal",nodonate,"Non-donate Trans",nodonate2,"Classic PVP - No Customs",classic,"Cancel",canc; normal: next; announce "PVP: "+strcharinfo(0)+" just entered PVP:Normal!",bc_all,0x33FF99; warp "pvp_n_1-5",0,0; end; trans: next; mes "^ff0000[PVP Warper]^000000"; mes "WARNING! If you're not a 2nd job trans player, you will be automatically warped out of the map!"; next; mes "What will you do?"; menu "Proceed",proceed1,"Cancel",out1; proceed1: announce "PVP: "+strcharinfo(0)+" just entered PVP:Trans!",bc_all,0x33FF99; warp "pvp_y_1-2",0,0; end; out1: next; close; nodonate: next; mes "^ff0000[PVP Warper]^000000"; mes "WARNING! If you are equipped with donate equipments upon entering the map, you will be automatically be warped back to your save point!"; next; mes "What will you do?"; menu "Proceed",proceed,"Cancel",out; proceed: next; announce "PVP: "+strcharinfo(0)+" just entered PVP:Non-Donate!",bc_all,0x33FF99; warp "pvp_n_4-3",0,0; end; out: next; close; nodonate2: next; mes "Feature not yet impelemented"; close; classic: next; mes "^ff0000[PVP Warper]^000000"; mes "WARNING! If you are equipped with any custom equipments upon entering the map, you will be automatically be warped back to your save point!"; next; mes "What will you do?"; menu "Proceed",pro123,"Cancel",out123; pro123: next; announce "PVP: "+strcharinfo(0)+" just entered PVP:Classic!",bc_all,0x33FF99; warp "5@tower",0,0; end; out123: next; canc: close; OnClock1450: OnClock2050: announce "WoE is starting soon! PvP Rooms will be inaccessible!",bc_all,0x99FFFF; set .locked,1; end; OnClock1601: OnClock2201: announce "WoE has ended! PvP Rooms are now accessible!",bc_all,0x99FFFF; set .locked,0; end; } This, eliminate the need to have multiple NPCs, also, gets rid of all the enable/disable NPC commands in there. All this script does, is set a variable to 1 (active) or 0 (inactive). If it's 1 then it'll tell players it's locked, if it's 0 it will act as normal.
  22. GmOcean's post in armor upgrading script was marked as the answer   
    prontera,150,180,4 script npc name 123,{ mes "I can turn a "+ getitemname(.before) +" into a "+ getitemname(.after) +""; mes "All I need is the following:"; for(set .@i,0; .@i<.items; set .@i,.@i+1) {mes "["+ .amt[.@i] +"]x "+ getitemname(.req[.@i]) +"";} if(switch(select("Turn in items:Cancel"))==2){close;} Case 1: for(set .@j,0; .@j<.items; set .@j,.@j+1) {if(countitem(.req[.@j]) < .amt[.@j]){mes "You don't have enough, "+ getitemname(.req[.@j]) +". You have ^FF0000"+ countitem(.req[.@j]) +"/"+ .amt[.@j] +""; close;}} for(set .@a,0; .@a<.items; set .@a,.@a+1) {delitem(.req[.@a],.@amt[.@a]);} getitem(.after,1); close; OnInit: set .before,25500; set .after,25508; setarray .req[0],501,502,503; //Replace with any items you want, can go upto 128 items. setarray .amt[0],1,1,1;//Replace with amount for it's respective item above. set .items,getarraysize(.req); end; } That should do it O.o assuming I have the items right lol.
  23. GmOcean's post in mapusers in a certain area was marked as the answer   
    I think, Patskie just accidentally linked the wrong command:
    *getareausers("<map name>",<x1>,<y1>,<x2>,<y2>) This function will return the count of connected characters which are located within the specified area - an x1/y1-x2/y2 square on the specified map. This is useful for maps that are split into many buildings, such as all the "*_in" maps, due to all the shops and houses.
  24. GmOcean's post in war of emperium script was marked as the answer   
    Your issue here is, that what ever ' guild ' & ' guild2 ' folders you used to replace the originals, don't have those labels. As such Euphy's script can't find them. I suggest you use fresh Guild & Guild2 folders from rAthena's latest revison. And then try and running your server again. If a problem still persists, post back with any map_serv errors.
  25. GmOcean's post in Poison bottle script edit was marked as the answer   
    CHANGE
    678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION2,60000,0; } else { if (strcharinfo(3) != "bat_a01 || bat_a02 || bat_b01 || bat_b02" ) { percentheal -100,-100;};}; },{},{} INTO
    678,Poison_Bottle,Poison Bottle,2,5000,,100,,,,,0xFFFFFFFF,7,2,,,,,,{ if(Class == Job_Assassin_Cross || Class == Job_Guillotine_Cross_T) { sc_start SC_DPoison,60000,0; sc_start SC_ASPDPOTION2,60000,0; } else if ( !compare( "bat_a01,bat_a02,bat_b01,bat_b02",strcharinfo(3) ) ) { percentheal -100,-100;} },{},{}
×
×
  • Create New...