Jump to content

Kido

Members
  • Posts

    1445
  • Joined

  • Last visited

  • Days Won

    10

Everything posted by Kido

  1. hello, i would like to know what's the max number of ids that i can put on here https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/mob_item_ratio.txt it says // - By default you can list up to 10 MonsterIDs per ItemID. // It can be changed in src/map/mob.c by adjusting MAX_ITEMRATIO_MOBS. what i want to know is what is the max to put on MAX_ITEMRATIO_MOBS o: thank you so much in advance o:! (i wasn't sure at all if this was a src or db topic, since this touches both folders and affect in both a file D: sry if it was wrong section)
  2. cool o: i had one but wasnt working!
  3. do you get any map error? try to get some items by using any of these cards http://ratemyserver.net/index.php?page=item_db&item_id=&iname=&itype=6&iclass=-1&islot_sign=-1&islot=-1&ij%5B+%5D=-1&iju=-1&idesc=box+of&iscript=&i_ele=-1&i_status=-1&i_race=-1&i_bonus=-1&icfix=&sort_r=0&sort_o=0&isearch=Search then if you get any one it means that it should work also, try to set the drop chance of one of that cards to 100% so you can make sure it works here is mine drop // The rate adjustment for card-granted item drops. item_rate_adddrop: 10000 item_drop_add_min: 10000 item_drop_add_max: 10000 give a try and let me know if you get any errors lol
  4. Kido

    Quote me

    LOL how you di it?
  5. that npc/custom/ it's amazing o:!!! good month <3 thank you all devs. :33
  6. Kido

    NPC Searching

    click the npc and then input the name of an items the npc will search how many players have that item the npc even detects similar items and will give you a list of which item may be the npc window shows you firs the location of where the items are if you need more explanation let me know o; so i can elaborate more this, give a try (:
  7. oh god that's src DDD: i don't touch it a bit sorry pal you will have to wait a little for a dev. to take a look at it
  8. you are welcome, if wemay help you in something more don't hesitate to ask in the support forums (:
  9. it confuses me a bit o: but i can half understand it o:! thank you i will try to play with it and see if it works o;! gonna update any results o:
  10. i know, that's what im asking because i dont know hot to put the input for search name in the sql and then delet D:
  11. Kido

    Quote me

    i got the last Quote.. so did i win?? HAhaha lol we do start again and repeat until 99 messages? @_@ i got the last Quote.. so did i win?? HAhaha lol we do start again and repeat until 99 messages? @_@ actually only we are playing this lol, let's wait until someone else enters and lets hear what it might want xd
  12. Main Central View File Join me at facebook: https://www.facebook.com/OlroxMaps This main central map is good as a start map or an event map. This sky map has the idea to bring the most common functions of a main area to one place. Features: Area for mining systems at north with poring themed models with working helms. Billboards to place top players, events or news. You can customize these textures inside the pack up to your needs. Area to add quest area, mall area at the sides Area for War of Emperium Flags. Submitter Olrox Submitted 02/28/2014 Category Map  
  13. yeah actually it works fine with 'zeny' and 'Zeny' but it's matking me as an error one more question if i may huh it won't show more errors only unless i correct the first error that it shows? o: just saying, it would be cool too to show all the errors at 1 time huhh but come to think, if it's an horendous script it may mark the whole script as an error lol again thank you for such release o:!!! it saves a lot of trouble to live test or to have a home server o:!!!!
  14. lately i'm feeling like a googler more than a scripter or something like x_x i was going to do your request manually, with a lot of checks for each job lol but then i found that so, credits to emistry lol have fun (:
  15. Kido

    NPC Searching

    hello, this was made by capachue, i'm not sure if it will work for eathena, give a try ok (:? prontera,144,158,6 script Espia 56,{ if ( getgmlevel() < 99 ) end; mes "Enter an item id or item name. Display a list order by max amount found."; input .@tmp$; set .@item_id, atoi( .@tmp$ ); if ( .@item_id == 0 && getstrlen( .@tmp$ ) > 2 ) {// item name, eventually set .@count, searchitem( .@tmp_array, .@tmp$ ); if ( .@count == 0 ) {// none item found mes "None item found."; close; } mes "I found the following items: "; next; while( .@i < .@count ) { set .@menu$, .@menu$ + getitemname( .@tmp_array[.@i] ) +" (ID "+ .@tmp_array[.@i] +"):"; set .@i, .@i +1; } set .@s, select( .@menu$ ) -1; set .@item_id, .@tmp_array[.@s]; } else if ( .@item_id == 0 || getiteminfo( .@item_id,2 ) == -1 ) { mes "Wrong item id"; close; } set .@search$, "`nameid` = "+ .@item_id +" or `card0` = "+ .@item_id +" or `card1` = "+ .@item_id +" or `card2` = "+ .@item_id +" or `card3` = "+ .@item_id; while(1) { set .@count, query_sql( "SELECT `char`.`name`, "+ "( SELECT COALESCE( SUM(`amount`),0 ) FROM `inventory` WHERE `char`.`char_id` = `inventory`.`char_id` and ( "+ .@search$ +" ) ) AS inv, "+ "( SELECT COALESCE( SUM(`amount`),0 ) FROM `cart_inventory` WHERE `char`.`char_id` = `cart_inventory`.`char_id` and ( "+ .@search$ +" ) ) AS cart, "+ "( SELECT COALESCE( SUM(`amount`),0 ) FROM `storage` WHERE `storage`.`account_id` = `char`.`account_id` and ( "+ .@search$ +" ) ) AS sto, "+ "( SELECT COALESCE( SUM(`amount`),0 ) FROM `guild_storage` WHERE `guild_storage`.`guild_id` = `char`.`guild_id` and ( "+ .@search$ +" ) ) AS gsto "+ "FROM `char` order by ( inv + cart + sto + gsto ) desc limit "+ ( .@page * 100 ) +", 100", .@name$, .@inventory, .@cart, .@storage, .@gstorage ); if ( .@count == 0 ) break; for ( set .@i, 0; .@i < .@count && .@name$[.@i] != ""; set .@i, .@i +20 ) { mes "^ff0000<player>^000000 <inv>,^00ff00<cart>,^0000ff<sto>,^006600<gsto>"; for ( set .@j, 0; .@j < 20 && .@name$[ (.@i+.@j) ] != ""; set .@j, .@j +1 ) { set .@tmp, .@i + .@j; if ( ( .@inventory[.@tmp] + .@cart[.@tmp] + .@storage[.@tmp] + .@gstorage[.@tmp] ) == 0 ) { next; goto L_end;// XP! } set .@num, .@num +1; mes .@num +"/ ^ff0000"+ .@name$[.@tmp] +"^000000 : < "+ .@inventory[.@tmp] +", ^00ff00"+ .@cart[.@tmp] +", ^0000ff"+ .@storage[.@tmp] +", ^006600"+ .@gstorage[.@tmp] +"^000000 >"; } next; } set .@page, .@page +1; } L_end: mes "*end of the list*"; close; }
  16. ah o: why don't you post it so we can take a look o: ? lol thanks WhatFT
  17. Well i just want to request a npc that deletes a character on a player account by inputing the name when talked to only usable by gm lv 99 this due to some clients can't delete the char or are having problems with that thanks in advance o:!
  18. thaaanks o: i tested it with a few and the loved o:! ty again o:!
  19. wow my players love it ! they also asked and i wonder too, if i can duplicate this script to make something ike @ammo so they type that and then buy arrows or bullets, or for example o have a lot of shops npc, let's say i want to make it @alchemist and then they will open a shop with alchemist items o: ? for example it would be like this right o:? //======Name======================================== // Mini Mart //======Version===================================== // 1.0 //======Author(s)=================================== // Sandbox //======Comments==================================== // This serves as a portable tool dealer.. // For players who are too busy or lazy // going back to town just to restock their supplies // or sell their junk //================================================== - script AlchemistShop -1,{ OnInit: bindatcmd "minimart",strnpcinfo(3)+"::OnAtcommand",0,40; //Disabled on WoE maps? 1 = Yes, 0 = No set .WoeCheck,1; //Disabled on PvP maps? 1 = Yes, 0 = No set .PvpCheck,1; end; OnAtcommand: if(.WoeCheck == 1 && getmapflag(strcharinfo(3),mf_gvg)) { message strcharinfo(0),"You cannot use this command on GvG maps."; end; } else if (.PvpCheck == 1 && getmapflag(strcharinfo(3),mf_pvp)){ message strcharinfo(0),"You cannot use this command on PvP maps."; end; } callshop "AlchemistShop",0; end; } //Modify to your liking, by default it sells like the Tool Dealer - shop AlchemistShop -1,7134:-1,501:-1,502:-1,503:-1,504:-1,505:-1,657:-1,545:-1,546:-1,547:-1,921:-1,905:-1,7144:-1,1093:-1,507:-1,508:-1,509:-1,510:-1,911:-1,7133:-1,1092:-1,952:-1,1017:-1,708:-1,713:-1,518:-1,704:-1,7434:-1,716:-1,1012:-1,717:-1,950:-1,715:-1,7126:-1,1057:-1,7127:-1,7033:-1,7128:-1,1059:-1,7129:-1,929:-1,7130:-1,1032:-1,7131:-1,1050:-1,1051:-1,7132:-1,950:-1,1044:-1,7144:-1,7140:-1,7141:-1,7143:-1,7136:10000,7135:10000,1061:-1 o:!
  20. and what do you want? unpatch? modify so they can hit the emp o:?
  21. sorry i can't understand you at all, can you elaborate more the topic please o: ? thanks o:!
  22. Kido

    GRF Issue

    make sure to read multiple grf and to uncheck on de diff the box "Read data folder first" maybe you bad diffed it
  23. Kido

    Quote me

    looool let's count them so we can now know what's the limit 99 notifications was too anbicious lol /sigh me too
  24. lol'd i stealed your best answer loool
  25. lol no problem you are very welcome
×
×
  • Create New...