-
Posts
109 -
Joined
-
Last visited
-
Days Won
1
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Rizta
-
i look in rathena for an script like this and got no lucky, so i found it on hercules. This script are made by @Cretino but i think he left from emulators(and maybe ragnarok life?). Here's my error log when the script r loaded: [Info]: npc_parse_function: Overwriting user function [extra_drop_compatibility] (npc/custom/extradrop.txt:1282) [Info]: npc_parse_function: Overwriting user function [deletearrayd] (npc/custom/extradrop.txt:1293) [Info]: npc_parse_function: Overwriting user function [copyarrayd] (npc/custom/extradrop.txt:1321) [Info]: npc_parse_function: Overwriting user function [cleararrayd] (npc/custom/extradrop.txt:1366) [Info]: npc_parse_function: Overwriting user function [setarrayd] (npc/custom/extradrop.txt:1390) [Info]: npc_parse_function: Overwriting user function [getelementofarrayd] (npc/custom/extradrop.txt:1460) [Info]: npc_parse_function: Overwriting user function [getarraysized] (npc/custom/extradrop.txt:1477) [Info]: npc_parse_function: Overwriting user function [percent_format] (npc/custom/extradrop.txt:1496) [Info]: npc_parse_function: Overwriting user function [cap_value] (npc/custom/extradrop.txt:1501) [Info]: npc_parse_function: Overwriting user function [max] (npc/custom/extradrop.txt:1506) [Info]: npc_parse_function: Overwriting user function [remove_expired_mob] (npc/custom/extradrop.txt:1511) [Info]: npc_parse_function: Overwriting user function [global_drop_string_format] (npc/custom/extradrop.txt:1656) [Info]: npc_parse_function: Overwriting user function [mob_drop_exists] (npc/custom/extradrop.txt:1684) [Info]: npc_parse_function: Overwriting user function [get_rate] (npc/custom/extradrop.txt:1741) And here when i try to use any command in script: [Error]: npc_event: event not found [extra_drop_manager::OnAtcommand] So the label OnAtCommand is missing, right? If the case, its possible to reproduce this? extradrop.txt
-
Try it, same results.:/ Yes. I think ive changed everything at least 4x and everytime i get a different behavior from script. Currently have no idea of what to do or what change...
-
So are you suggesting me to use rand(x,y) ?
-
Oh, thanks a lot for helping me! In talk with @Stolao he give me the same answer and i do some modifications to the script. I still getting errors but atm i can enchant some slots(randomically). Let me post the actual code for you see. I tried replace the numbers in array for constant full name and got the same errors. If you download and test script you'll see a strange behaviour for script.
-
how to add produce weapon with socket?
Rizta replied to JoshuaBright's question in Scripting Support
If i understand, you want to add slots to a produced item. If it is, you cant. Please refer to script_commands.txt in your docs and look at: Using that you'll be able to understand how the system works and maybe, create strong combinations? ? -
Well, im looking for a way to give different(and random) options by index slot(0, 1 , 2, 3, 4 = 5 slots) and equipment slot( headgear, weapon, armor etc). Based on that, found one script that do it but completely random and then i edited to do what i want. But, once im newbie(or simple noob hehe) its obvious i got erros and lots of doubts. Here's the full code: I really want to give credits for the person that created this script, used by me to create this one above, but, im really dont know who did it (if you are the owner or know him, pls contact me) Original: Now im looking for an way to optimize and solve the followying errors: [Error]: buildin_setrandomoption: Random option ID 0 does not exists. [Error]: buildin_disableitemuse: fatal error ! player not attached! - SOLVED Edit: When the first error didnt happen, the item is enchanted, but, only with ID 1 and 2(MaxHP or MaxSP). I dont know if i will get more errors after solve this ones. Thx for all that read this topic!
-
Entao pessoal... eu estou usando um sistema de quest aqui, mas, ocorre que quando os membros estao em party, caso estejam em mapas diferentes e matem monstros diferentes, a quest conta da mesma forma... eu nunca vi acontecer e nao sei a razão. Esse é o código que uso para atribuir tal função: nNPCKillEvent: if(getcharid(1) != 0) addrid(2,1,getcharid(1)); Usei como referencia essa parte especifica do DOC *getcharid(<type>{,"<character name>"}) This function will return a unique ID number of the invoking character, or, if a character name is specified, of that player. Type is the kind of associated ID number required: 0 - Character ID 1 - Party ID 2 - Guild ID 3 - Account ID 4 - Battle Ground ID 5 - Clan ID For most purposes other than printing it, a number is better to have than a name (people do horrifying things to their character names). If the character is not in a party or not in a guild, the function will return 0 if guild or party number is requested. If a name is specified and the character is not found, 0 is returned. If getcharid(0) returns a zero, the script got called not by a character and doesn't have an attached RID. Note that this will cause the map server to print "player not attached!" error messages, so it is preferred to use "playerattached" to check for the character attached to the script. if (getcharid(2) == 0) mes "Only members of a guild are allowed here!"; *addrid(<type>{,<flag>{,<parameters>}}); This command will attach other RIDs to the current script without detaching the invoking RID. It returns 1 if successful and 0 upon failure. <type> determines what RIDs are attached: 0: All players in the server. 1: All players in the map of the invoking player, or the invoking NPC if no player is attached. 2: Party members of a specified party ID. [ Parameters: <party id> ] 3: Guild members of a specified guild ID. [ Parameters: <guild id> ] 4: All players in a specified area of the map of the invoking player (or NPC). [ Parameters: <x0>,<y0>,<x1>,<y1> ] 5: All players in the map. [ Parameters: "<map name>" ] Account ID: If type is Account ID, attach the specified account ID. <flag> can prevent certain players from being attached: 0: Players are always attached. (default) 1: Players currently running another script will not be attached. O que eu posso fazer pra resolver essa questao dos monstros e do mapa?
-
Bump this because i have a new doubt related. i got this script that do what i want.: OnNPCKillEvent: if (getarraysize($dq_id) > .freeloop_size_active) .@free = freeloop(true); for(.@i = 0; .@i < getarraysize($dq_id); .@i++) { .@close = false; .@min_lv = getd("$dq_req_lv_" + $dq_id[.@i]); .@max_lv = getd("$dq_max_lv_" + $dq_id[.@i]); if (.@max_lv < BaseLevel && .@max_lv > 0) continue; if (.@min_lv > BaseLevel && .@min_lv > 0) continue; switch($dq_type[.@i]) { // Global case 1: .@qs_type$ = "#dq_"; deletearray .@tmp_values$; explode(.@tmp_values$, getd("$dq_" + $dq_id[.@i] + "_info$"), ":"); .@tmp_value = atoi(.@tmp_values$[1]); .@tmp_delay = atoi(.@tmp_values$[2]); .@tmp_accept = atoi(.@tmp_values$[3]); deletearray .@tmp_values$; explode(.@tmp_values$, getd(.@qs_type$ + $dq_id[.@i] + "_info$"), ":"); .@player_accept = atoi(.@tmp_values$[3]); break; // Account case 2: .@qs_type$ = "#dq_"; deletearray .@tmp_values$; explode(.@tmp_values$, getd(.@qs_type$ + $dq_id[.@i] + "_info$"), ":"); .@tmp_value = atoi(.@tmp_values$[1]); .@tmp_delay = atoi(.@tmp_values$[2]); .@tmp_accept = atoi(.@tmp_values$[3]); break; // Character case 3: .@qs_type$ = "dq_"; deletearray .@tmp_values$; explode(.@tmp_values$, getd(.@qs_type$ + $dq_id[.@i] + "_info$"), ":"); .@tmp_value = atoi(.@tmp_values$[1]); .@tmp_delay = atoi(.@tmp_values$[2]); .@tmp_accept = atoi(.@tmp_values$[3]); break; } if ($dq_type[.@i] == 1) { if (.@player_accept == false && .dq_player_accept == true) continue; if (.@tmp_delay > 0 && .@tmp_delay < gettimetick(2) && .@delay != -1 && .@tmp_accept == false) .@tmp_accept = true; } if (.dq_player_accept == true) { if (.@tmp_accept == false) continue; } else { if (.@tmp_accept == false && $dq_type[.@i] == 1) continue; } .@delay = getd("$dq_delay_" + $dq_id[.@i]); if (.@tmp_value >= $dq_count[.@i] && $dq_count[.@i] > 0) { if (.@tmp_delay > 0 && .@tmp_delay > gettimetick(2) && .@delay != -1) continue; else if (.@delay == -1) continue; } setarray .@hunting_array$[0], "$dq_hunting_id_" + $dq_id[.@i], "$dq_hunting_amount_" + $dq_id[.@i]; .@tmp_var$ = .@qs_type$ + $dq_id[.@i] + "_hunting_count$"; deletearray .@tmp_kill$; explode(.@tmp_kill$, getd(.@tmp_var$), ","); .@tmp_size = getarraysize(.@tmp_kill$); for(.@j = 0; .@j < getarraysize(getd(.@hunting_array$[0])); .@j++) { .@hunting_id = getd(.@hunting_array$[0] + "[" + .@j + "]"); .@hunting_kill = getd(.@hunting_array$[1] + "[" + .@j + "]"); if (.@hunting_id != killedrid) continue; .@found = false; setd .@tmp_var$, ""; for(.@k = 0; .@k < .@tmp_size; .@k++) { deletearray .@tmp_values$; explode(.@tmp_values$, .@tmp_kill$[.@k], ":"); .@tmp_id = atoi(.@tmp_values$[0]); .@tmp_count = atoi(.@tmp_values$[1]); if (.@tmp_count < .@hunting_kill && .@hunting_id == .@tmp_id) { if (.@k > 0) setd .@tmp_var$, getd(.@tmp_var$) + "," + .@tmp_id + ":" + (.@tmp_count + 1); else setd .@tmp_var$, .@tmp_id + ":" + (.@tmp_count + 1); if (.dq_display_hunt == true) dispbottom .npc_name$[1] + ": [" + $dq_name$[.@i] + "] - " + strmobinfo(1, .@tmp_id) + " [" + (.@tmp_count + 1) + "/" + .@hunting_kill + "]."; if (.@close == false) .@close = true; } else { if (.@k > 0) setd .@tmp_var$, getd(.@tmp_var$) + "," + .@tmp_id + ":" + .@tmp_count; else setd .@tmp_var$, .@tmp_id + ":" + .@tmp_count; } if (.@hunting_id == .@tmp_id) { if (.@found == false) .@found = true; } } if (.@found == false) { if (.@tmp_size >= 1) setd .@tmp_var$, getd(.@tmp_var$) + "," + .@hunting_id + ":" + 1; else setd .@tmp_var$, .@hunting_id + ":" + 1; if (.dq_display_hunt == true) dispbottom .npc_name$[1] + ": [" + $dq_name$[.@i] + "] - " + strmobinfo(1, .@hunting_id) + " [" + 1 + "/" + .@hunting_kill + "]."; if (.@close == false) .@close = true; } if (.@close == true) break; } } if (.@free == true) .@free = freeloop(false); end; but unfortunately, cant support party kills and i dont know how to add. I figure i can do it with: if(getcharid(1) != 0) addrid(2,1,getcharid(1)); And now my question is: where i can put this code to work with party members? I tried this on start and work, but i got new bugs: If party members are in different maps, still counting. The party count only began after you kill a quest mob 1 time(and it sucks if you arent a killer). After killing a mob, every single mob(even one not in the quest request) count +1 (ex: killing a poring count as +1 quest progress for everyone in the party). Probably there r more bugs. What can i do?
-
it is possible to reupload this?
-
Hello everyone. Today i have a new question (and need support for becaus im newbie :P). I want to create a question progression function/script that'll interact with some quests npc(or every single one). Course this progression i want its only for mob hunting and item collect. I found a script that made quest and have the @checkquest command(i want a command too) but unfortunately the script have some limitations and obviously i dont have the knowledge to modify it and a plus, it is in SQL(i know nothing in SQL). Here's the code: // Custom atcommand: @checkquest bindatcmd "checkquest","QuestSysEvents::OnPCLoginEvent"; set $@QSys,1; // Quest System loaded end; } - script QuestSysEvents -1,{ OnNPCKillEvent: if(!$@q_tab) end; set .KilledMob,killedrid; // Player in Party? if(getcharid(1) != 0) addrid(2,1,getcharid(1)); if(getarraysize(@quest_mobid) < 1) query_sql "SELECT `mob_id` , `mob_am` , `req_am` , `npc_id` , `quest_id` FROM `quest_player` WHERE `char_id` = '"+getcharid(0)+"'",@quest_mobid,@quest_mobam,@quest_mobreq,@quest_npcid,@quest_qid; for ( set .@m,0; .@m < getarraysize(@quest_mobid); set .@m,.@m + 1) if(@quest_mobid[.@m] == killedrid) if(@quest_mobam[.@m] < @quest_mobreq[.@m]) { set @quest_mobam[.@m],@quest_mobam[.@m] + 1; query_sql "SELECT `npc_name` , `npc_map` FROM `quest_npc` WHERE `npc_id` = '"+@quest_npcid[.@m]+"'",.@n_name$,.@n_map$; dispbottom .@n_name$+"@"+.@n_map$+": Caça - "+getmonsterinfo(killedrid,MOB_NAME)+" : "+@quest_mobam[.@m]+"/"+@quest_mobreq[.@m],0x00FF00; } else if(@quest_mobam[.@m] >= @quest_mobreq[.@m]) continue; end; OnPCLogoutEvent: for ( set .@m,0; .@m < getarraysize(@quest_mobid); set .@m,.@m + 1) query_sql "UPDATE `quest_player` SET `mob_am` = '"+@quest_mobam[.@m]+"' WHERE `npc_id` = '"+@quest_npcid[.@m]+"' AND `mob_id` = '"+@quest_mobid[.@m]+"' AND `quest_id` = '"+@quest_qid[.@m]+"'"; end; OnPCLoginEvent: if(!$@q_tab) end; query_sql "SELECT DISTINCT `quest_id` , `npc_id` FROM `quest_player` WHERE `char_id` = '"+getcharid(0)+"'",.@q_id,.@n_id; set .@n$,"[Quest System]"; if(getarraysize(.@q_id) < 1) { dispbottom .@n$+": Você não tem missões ativas."; end; } dispbottom .@n$+": Você tem"+getarraysize(.@q_id)+" Missões ativas."; dispbottom .@n$+": Eu vou agora listá-los por NPC com as informações sobre o NPC:"; // Updating SQL Entries for Monster Hunting before displaying Quest Progress for ( set .@m,0; .@m < getarraysize(@quest_mobid); set .@m,.@m + 1) query_sql "UPDATE `quest_player` SET `mob_am` = '"+@quest_mobam[.@m]+"' WHERE `npc_id` = '"+@quest_npcid[.@m]+"' AND `mob_id` = '"+@quest_mobid[.@m]+"' AND `quest_id` = '"+@quest_qid[.@m]+"' AND `char_id` = '"+getcharid(0)+"'"; // Displaying Quest Progress for ( set .@l,0; .@l < getarraysize(.@q_id); set .@l,.@l + 1) { set .@q_name$,0; set .@q_type,0; deletearray .@req1[0],getarraysize(.@req1); deletearray .@req2[0],getarraysize(.@req2); query_sql "SELECT `quest_name` , `quest_type` FROM `quest_list` WHERE `npc_id` = '"+.@n_id[.@l]+"' AND `quest_id` = '"+.@q_id[.@l]+"'",.@q_name$,.@q_type; dispbottom " [* ====== Quest - "+.@q_name$+" - Progress: ====== *] "; dispbottom " > Type: "+( (.@q_type == 1)?"Caça":"Item Coletar"); if(.@q_type == 1) query_sql "SELECT `mob_id` , `mob_am` FROM `quest_list` WHERE `npc_id` = '"+.@n_id[.@l]+"' AND `quest_id` = '"+.@q_id[.@l]+"'",.@req1,.@req2; else query_sql "SELECT `item_id` , `item_am` FROM `quest_list` WHERE `npc_id` = '"+.@n_id[.@l]+"' AND `quest_id` = '"+.@q_id[.@l]+"'",.@req1,.@req2; for ( set .@p,0; .@p < getarraysize(.@req1); set .@p,.@p + 1) if(.@q_type == 1) { query_sql "SELECT `mob_am` FROM `quest_player` WHERE `npc_id` = '"+.@n_id[.@l]+"' AND `quest_id` = '"+.@q_id[.@l]+"' AND `char_id` = '"+getcharid(0)+"' AND `mob_id` = '"+.@req1[.@p]+"'",.@m_got; dispbottom " > Mob#"+(.@p+1)+": "+getmonsterinfo(.@req1[.@p],MOB_NAME)+" - "+.@m_got+"/"+.@req2[.@p]; } else dispbottom " > Item#"+(.@p+1)+": "+getitemname(.@req1[.@p])+" - "+countitem(.@req1[.@p])+"/"+.@req2[.@p]; query_sql "SELECT `npc_name` , `npc_map` , `npc_x` , `npc_y` FROM `quest_npc` WHERE `npc_id` = '"+.@n_id[.@l]+"'",.@n_name$,.@n_map$,.@n_x,.@n_y; dispbottom " > From "+.@n_name$+", located at: "+.@n_map$+", X: "+.@n_x+", Y: "+.@n_y; } end; } i have o idea how to reproduce the SQL parts of the code in to a normal code. Thanks for everyone that read this and try to help me. NPC: Quest System SQL by: llchrisll
-
HOLY! YOU ARE AMAZING! Problem solved, someone can close, archive, kill topic and kill me after that. Thanks a lot for your time guys
-
im sure i do it like in options, inside game but i really cant remember haha
-
i dont know if im posting it in the right place, so sorry if im not! I change the display name to top character instead bottom and i dont remember how!! Anyone know how?
-
Sorry for this bump, i really need help here :c
-
im not 100% sure if i understand you, but, if yes, just look at conf/battle/pet.conf
-
Well, my doubt is: It is possible to get a Named item(like produce or getnameditem) with slot(if original item has, obviously)? If wes, how could i do that? I read the doc and try to do that with @item2 , but, without any success :/
-
theres someone to have this to share ?
-
Thanks! And yes... consider it as an "instance" and when player reach lvl 111 they need to be kicked once the "instances" is separed to levels. Lv 100-110 = moc_fild04 Lv 110-120 = moc_fild05 and etc.. And now i got this from nothing in map server O_o: Detected unsupported UTF-8 BOM in file <- wtf is this?
-
Ok, lemme try D Edit: All things r "magically" working now! Thx alot sader, you r always helping me Some mod/staff can close the topic
-
Ok, it worked o-O ill try to learn with ur corrections XDD So one problem still happening: The second NPC (Manager) still not warping
-
Ok, i dont know if i understand you, so i try somethings based on what u said and nothing work. Currently Script: - script OnFeatures -1,{ OnInit: setarray .blvl$[0],111,121,131,141,151,161; .blvl = getarraysize(.blvl$); for ( .@j = 0; .@j < .blvl; .@j++) { .@blvl$ = .blvl$[.@j]; } setarray .maps$[0],"moc_fild04","moc_fild05","moc_fild06","moc_fild08","moc_fild09","moc_fild10","moc_fild14","moc_fild15"; .maps = getarraysize(.maps$); for ( .@i = 0; .@i < .maps; .@i++) { .@map$ = .maps$[.@i]; } end; OnPCLoadMapEvent: if(strcharinfo(3) == .maps$[.@i]) { mes "[^ff0000Ajudante^000000]"; mes "Bom up!"; close; percentheal 100,100; sc_start SC_FOOD_STR_CASH,36000000,7; sc_start SC_FOOD_AGI_CASH,36000000,7; sc_start SC_FOOD_INT_CASH,36000000,7; sc_start SC_FOOD_VIT_CASH,36000000,7; sc_start SC_FOOD_DEX_CASH,36000000,7; sc_start SC_FOOD_LUK_CASH,36000000,7; } end; OnPCBaseLvUpEvent: if(BaseLevel == .@blvl$[.@j] || strcharinfo(3) == .@map$[.@i]) { mes "[^ff0000Alerta^000000]"; mes "Voce alcançou o nivel maximo"; mes "desse mapa!"; mes " "; mes "Voce sera teleportado em 5 segundos!"; warp "prontera",157,173; end; } } - script Manager::Ajudante -1,{ mes "[^ff0000Ajudante^000000]"; mes "Em que posso ajudar?"; if(select("~ Quero me Buffar!:~ Quero voltar!")) { mes "[^ff0000Ajudante^000000]"; mes "Ok... La vai!"; close; sc_start SC_FOOD_STR_CASH,18000000,7; sc_start SC_FOOD_AGI_CASH,18000000,7; sc_start SC_FOOD_INT_CASH,18000000,7; sc_start SC_FOOD_VIT_CASH,18000000,7; sc_start SC_FOOD_DEX_CASH,18000000,7; sc_start SC_FOOD_LUK_CASH,18000000,7; } else { mes "[^ff0000Ajudante^000000]"; mes "Certo, volte sempre!"; close; warp "prontera",157,173; } end; } Still not kicking player when reach level 111, 121, 131, 141, 151 or 161 and NPC still not warping too.
-
lol... its my only mistake? Edit: Ok, it isnt my only mistake. Now i got this when i level up to 111 in map 1(moc_fild04) [Error]: script:op_2: invalid data for operator C_EQ [Debug]: Data: number value=111 [Debug]: Data: string value="" [Debug]: Source (NPC): OnFeatures (invisible/not on a map) My currently labels: And now warp from NPC isnt working
-
A 2 days ago i started a new script for a server i play, but, im a little "newbie" at it, so, somethings dont happen as we want... The script r working and im get 0 mapserver errors with, but, a little part of the script (one of most important) isnt work! Edit: I want the script "kick" players in the listed maps when they reach the max level that i set for each one. (Currently script simple kick everyone that reach the lvl in a world-wide maps.) Here the full code: And here the part of scripting that i have no idea how to make it work: Thx for all will try to help me and pls ignore the language of script(and my english lol).
-
Yea, you can consider me as a real newbie haha i only want to use that to run in my own PC for me and my friends test some features, quests, npcs, system etc... i dont want to start out a real server with this package(or any other) xD Thank you again for the answer and sorry for bothering you with newbie questions.