-
Posts
794 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Everything posted by AinsLord
-
anyone can help me about adding custom weapon on 2015 client i've tried any possible way for me to view it thnx in advance
-
coz im using the latest rA well thnk you for your script
-
and i dont have any idea how to do that hahaha i already PMed the script author so he can help me
-
yes i already PMed the author of the script and no response yet
-
[SQL]: DB error - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM `guild_package` WHERE `acc_id` = '2000004'' at line 1 [Debug]: at script.cpp:16625 - SELECT FROM `guild_package` WHERE `acc_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM `guild_package` WHERE `claim_ip` = '180'' at line 1 [Debug]: at script.cpp:16625 - SELECT FROM `guild_package` WHERE `claim_ip` = '180' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_mac' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_mac` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_cpu' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_cpu` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_motherboard' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_motherboard` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Duplicate entry '2000004' for key 'acc_id' [Debug]: at script.cpp:16625 - INSERT INTO `guild_package` (`acc_id`, `char_id`, `char_name`, `guild_id`, `guild_name`, `guild_master`, `claim_ip`, `claim_mac`, `claim_cpu`, `claim_motherboard`) VALUES ('2000004','150011','GrandFarmer','4','DiggyDiggy','GrandFarmer','180.191.94.99','','','') every time i get GPack on the NPC i got that error thats for no code needed to bypass same IP // Copyrights Notice // ======================================================== // This work is licensed under the Creative Commons Attribution-NonCommercial 4.0 International License. // To view a copy of this license, visit http://creativecommons.org/licenses/by-nc/4.0/. // ======================================================== // Introduction // ======================================================== // Copyrights 2015-2020 Jordan Lacandula All rights reserved // ======================================================== // Script: Guild Package Giver/Redeemer NPC // ======================================================== // Programmer: Jordan Lacandula // Website: For more info, visit http://jordanlacandula.tk/ // ======================================================== // Bug Report/Job Request // ======================================================== // Email: [email protected] // Skype: jordan.lacandula // ======================================================== // Features/Includes // ======================================================== // SQL Database Support // used table names `gpack_code` and `guild_package` // Duplicate IP Checking (also supports same IP, see below) // Account Checking // Online Status Checker // Easy to change Package items for guild master // Easy to change Package items for guild member // Minimum Guild members Checking (default: 8) // ======================================================== // Multiple IP ( Use gpack code to bypass IP Checking ) // ======================================================== // End Introduction // ======================================================== prontera,203,135,4 script Guild Master 421,{ if( getgmlevel() == 99 ){ set .c_length,10; setarray .g_code$[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","0","1","2","3","4","5","6","7","8","9"; mes "What can i do for you Sire?"; switch(select("Nothing:View Code List:^FF0000 Add Package Code^000000")){ case 1: break; case 2: query_sql("SELECT `guild_id`, `gcode`,`status` FROM `gpack_code` ORDER BY `status` DESC",.@glist,.@codeview$,.@stts); dispbottom "Status | GPack Code"; for(set @ei,0; @ei < getarraysize(.@codeview$); set @ei,@ei + 1){ query_sql("SELECT `name` FROM `guild` WHERE `guild_id` = '"+.@glist[@ei]+"'",.@gn$); dispbottom ""+.@stts[@ei]+" | "+.@codeview$[@ei]+" | "+.@gn$+""; } close; break; case 3: next; mes "Creating New Code for Guild: "; input .@rguild$; set .@cr,query_sql("SELECT `guild_id` FROM `guild` WHERE `name` = '"+.@rguild$+"'",.@g); if(.@cr <= 0){ mes "^FF0000 Guild Not Found!^000000"; close; } for(set @i, 0; @i< .c_length; set @i, @i+1) { set @random_char, rand(0,(getarraysize(.g_code$)-1)); set @new_code$, @new_code$ + .g_code$[@random_char]; } query_sql "INSERT INTO `gpack_code` (`guild_id`, `gcode`, `status`) VALUES ('"+.@g+"', '"+@new_code$+"', '0')"; set @new_code$, ""; next; mes "Added Code for Guild"; mes "^FF0000 "+.@rguild$+"^000000"; close; break; } mes "Proceeding to Player View"; next; } set .@hascode,0; set .@code$,"null"; setarray .@gmaster[0],49994,1; //gmaster pack setarray .@gmember[0],49995,1; //gmember pack if(getcharid(2) == 0){ mes "you're not member of a guild"; close; } query_sql("SELECT `master` FROM `guild` WHERE `guild_id` = '"+getcharid(2)+"'",.@gid$); if(.@gid$ != strcharinfo(0)){ mes "Only Guild Masters can claim the packages"; close; } mes "^FF0000 Guild Package^000000"; mes "Greetings ^FF0000 "+strcharinfo(0)+"^000000"; mes "Master of the Guild^FF0000 "+strcharinfo(2)+"^000000."; next; mes "Do you have code?"; switch(select("No:Yes")){ case 1: break; case 2: input .@code$; mes "Verifying Code"; mes "Please Wait...."; set .@csr,query_sql("SELECT `gcode` FROM `gpack_code` WHERE `gcode` = '"+.@code$+"'"); if ( .@csr <= 0 ){ next; mes "^FF0000 Invalid Code^000000"; mes "Codes are Case-Sensitive, Please make sure of it."; close; } query_sql("SELECT `status` FROM `gpack_code` WHERE `gcode` = '"+.@code$+"'",.@used); if( .@used != 0 ){ mes "Guild Package code has been used already"; close; } set .@hascode,1; break; } next; mes "Do you wish to claim your ^FF0000 Guild Package^000000 ?"; switch(select("No:Yes")){ case 1: close; break; case 2: next; mes "^FF0000 CLAIM GUILD PACKAGE^000000 "; mes "Master will receive the following:"; for ( set .@i, 0; .@i < getarraysize(.@gmaster); set .@i, .@i + 2 ) mes .@gmaster[.@i+1] + " x " + getitemname(.@gmaster[.@i]); next; mes "^FF0000 CLAIM GUILD PACKAGE^000000 "; mes "Members will receive the following:"; for ( set .@i, 0; .@i < getarraysize(.@gmember); set .@i, .@i + 2 ) mes .@gmember[.@i+1] + " x " + getitemname(.@gmember[.@i]); next; mes "[^FF0000 Warning^000000 ]"; mes "Every one in your Guild can only claim Once regarding of their IP."; mes "Only Online characters can claim a Guld Package"; mes "No special treatments if characters go offline while in process of claiming"; next; mes "^FF0000 NOTE:^000000 You can only claim once."; mes "^FF0000 NOTE:^000000 All members should be online."; mes "^FF0000 NOTE:^000000 Make sure everyone have lots of Space in their inventory."; next; mes "^FF0000 CLAIM GUILD PACKAGE^000000 "; mes "Claim now?"; switch(select("No:Yes")){ case 1: close; break; case 2: next; set .@mm,1; //required minimum members setarray .@claimerlist$[0],"null"; set .@resultcount,query_sql("SELECT `name` FROM `guild_member` WHERE `guild_id` = '"+getcharid(2)+"'",.@claimerlist$); if( .@resultcount < .@mm ){ mes "Should have Total of "+.@mm +" members."; close; break; } // enforce IP check when code is not available if( .@hascode == 0 ){ setarray .@iplist$[0],"null"; // same ip check for( set .@i,0; .@i < .@resultcount; set .@i,.@i+1 ){ query_sql("SELECT `account_id` FROM `char` WHERE `name` = '"+.@claimerlist$[.@i]+"'",.@z); query_sql("SELECT `last_ip` FROM `login` WHERE `account_id` = '"+.@z+"'",.@il$); //check for duplicates for( set .@j,0; .@j < .@i; set .@j,.@j+1 ){ if( .@il$ == .@iplist$[.@j] ){ mes "^FF0000 Duplicate IP Address^000000"; mes "^FF0000 NOTE:^000000 Each player should have different IP address"; mes "If you should not see this, Please report to admin"; close; } } //add to list setarray .@iplist$[.@i],.@il$; } } for( set .@i,0; .@i < .@resultcount; set .@i,.@i+1 ){ //account check query_sql("SELECT `account_id` FROM `char` WHERE `name` = '"+.@claimerlist$[.@i]+"'",.@x); set .@haspack,query_sql("SELECT FROM `guild_package` WHERE `acc_id` = '"+.@x+"'"); //ip check query_sql("SELECT `last_ip` FROM `login` WHERE `account_id` = '"+.@x+"'",.@xx); set .@haspack,query_sql("SELECT FROM `guild_package` WHERE `claim_ip` = '"+.@xx+"'"); //character name check set .@haspack3,query_sql("SELECT `char_name` FROM `guild_package` WHERE `char_name` = '"+.@claimerlist$[.@i]+"'"); if(.@haspack > 0 || .@haspack2 > 0 || .@haspack3 > 0){ mes "One or more in your member(s) has already received the package."; close; break; } } // TODOs: check if master and all members are online set .@onlinechk,query_sql("SELECT `name` FROM `guild_member` WHERE `guild_id` = '"+getcharid(2)+"' AND `online` = 0"); if( .@onlinechk > 0 ){ mes "Make sure all members are online"; close; break; } for ( set .@j,0; .@j < .@resultcount; set .@j,.@j+1 ){ if( .@claimerlist$[.@j] == strcharinfo(0)){ for ( set .@i, 0; .@i < getarraysize(.@gmaster); set .@i, .@i + 2 ) getitem .@gmaster[.@i], .@gmaster[.@i+1]; }else{ for ( set .@i, 0; .@i < getarraysize(.@gmember); set .@i, .@i + 2 ) atcommand "#item "+.@claimerlist$[.@j]+" "+.@gmember[.@i]+" "+.@gmember[.@i+1]+""; } set .@acid,"null"; query_sql("SELECT `account_id` FROM `guild_member` WHERE `name` = '"+.@claimerlist$[.@j]+"'",.@acid); query_sql("SELECT `last_ip` FROM `login` WHERE `account_id` = '"+.@acid+"'",.@c_ip$); query_sql("SELECT `last_mac` FROM `login` WHERE `account_id` = '"+.@acid+"'",.@c_mac$); query_sql("SELECT `last_cpu` FROM `login` WHERE `account_id` = '"+.@acid+"'",.@c_cpu$); query_sql("SELECT `last_motherboard` FROM `login` WHERE `account_id` = '"+.@acid+"'",.@c_mb$); query_sql("SELECT `char_id` FROM `char` WHERE `name` = '"+.@claimerlist$[.@j]+"'",.@mem_id); query_sql "INSERT INTO `guild_package` (`acc_id`, `char_id`, `char_name`, `guild_id`, `guild_name`, `guild_master`, `claim_ip`, `claim_mac`, `claim_cpu`, `claim_motherboard`) VALUES ('"+.@acid+"','"+.@mem_id+"','"+.@claimerlist$[.@j]+"','"+getcharid(2)+"','"+strcharinfo(2)+"','"+strcharinfo(0)+"','"+.@c_ip$+"','"+.@c_mac$+"','"+.@c_cpu$+"','"+.@c_mb$+"')"; } next; mes "Package has been Distributed."; close2; query_sql("UPDATE `gpack_code` SET `guild_id` = '"+getcharid(2)+"', `status` = '1' WHERE `gcode` = '"+.@code$+"'"); announce "The Guild "+strcharinfo(2)+" has Signed Up for war",BC_ALL,0xFF0000; break; } break; } switch(rand(1,4)){ case 1: npctalk "Hey you noob, your turn"; sleep 1000; npctalk "Oh you're not noob? Then prove it in WOE"; break; case 2: npctalk "Next!"; break; case 3: npctalk "NEXT NEXT NEXT, Move Faster"; break; case 4: npctalk "No more? Good."; } OnInit: waitingroom "Claim Guild Package Here",0; query_sql "CREATE TABLE IF NOT EXISTS `guild_package` ( `acc_id` INT NOT NULL UNIQUE, `char_id` INT NOT NULL, `char_name` TEXT NOT NULL, `guild_id` INT NOT NULL, `guild_name` TEXT NOT NULL, `guild_master` TEXT NOT NULL, `claim_ip` TEXT NOT NULL, `claim_mac` TEXT NOT NULL, `claim_cpu` TEXT NOT NULL, `claim_motherboard` TEXT NOT NULL ) ENGINE=MyISAM"; query_sql "CREATE TABLE IF NOT EXISTS `gpack_code` (`guild_id` INT NOT NULL, `gcode` VARCHAR(10) NOT NULL, `status` INT NOT NULL ) ENGINE=MyISAM"; end; } This one here when i input the CODE to bypass same IP [Warning]: script:query_sql: Too many columns, discarding last 1 columns. [Debug]: Source (NPC): Guild Master at prontera (203,135) then this one again after getting the item [SQL]: DB error - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM `guild_package` WHERE `acc_id` = '2000004'' at line 1 [Debug]: at script.cpp:16625 - SELECT FROM `guild_package` WHERE `acc_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM `guild_package` WHERE `claim_ip` = '180'' at line 1 [Debug]: at script.cpp:16625 - SELECT FROM `guild_package` WHERE `claim_ip` = '180' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_mac' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_mac` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_cpu' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_cpu` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Unknown column 'last_motherboard' in 'field list' [Debug]: at script.cpp:16625 - SELECT `last_motherboard` FROM `login` WHERE `account_id` = '2000004' [Debug]: Source (NPC): Guild Master at prontera (203,135) [SQL]: DB error - Duplicate entry '2000004' for key 'acc_id' [Debug]: at script.cpp:16625 - INSERT INTO `guild_package` (`acc_id`, `char_id`, `char_name`, `guild_id`, `guild_name`, `guild_master`, `claim_ip`, `claim_mac`, `claim_cpu`, `claim_motherboard`) VALUES ('2000004','150013','ChampSeki','5','NoOneCan','ChampSeki','180.191.94.99','','','') [Debug]: Source (NPC): Guild Master at prontera (203,135) dunno what to do with this thnx for the help
-
but my question is as the example above my inter_athena.conf has a different password to ragnarok database i i change it the same password im using on phpmyadmin it wont connect did you get my point here?? like this (SERVER IP)/phpmyadmin then your gonna log in using your username and pass ryt ex User : root pass : 12345611 my inter_athena.conf use 12345622 if i changed it to 12345611 it wont connect login_server_ip: (my server IP) login_server_port: 3306 login_server_id: root login_server_pw: 12345622 ( if i change this to 12345611 it wont connect) login_server_db: ragnarok
-
coz here's what happen i have different password on my phpmyadmin login and settiing on inter_athena.conf tried to change it on my log in password on php to my inter_athena.conf it wont connect but when i tried the password i setup upon creating the mysql/php it works?? how is that possible? its like on phpmyadmin log in i have EX: root 12345611 and on my inter_athena.conf login_server_ip: (my server IP) login_server_port: 3306 login_server_id: root login_server_pw: 12345622 ( if i change this to 12345611 it wont connect) login_server_db: ragnarok something like that happens thnx for the help
-
Utility: Punching Bag with DPS counter
AinsLord replied to Secrets's topic in Utility Script Releases
dummy disappear once mushroom event or disguise event started -
i do have script found here it says automated pvp?? prontera,147,140,5 script 10v10 PVP 757,{ mes "I am Party Match Manager."; mes "Party Leader may create a PVP Match here."; next; switch( select( ( .Created )?"Join Game[ ^FF0000"+.No+"vs"+.No+"^000000 ]":"Create Game", ( ( getgmlevel() >= .GMLevel || getcharid(0) == getpartyleader( getcharid(1),2 ) ) && .Created )?"^FF0000Remove Game^000000":"" )){ Case 1: switch( .Created ){ Case 0: getpartymember getcharid(1),1; if( getcharid(0) != getpartyleader( getcharid(1),2 ) || !getcharid(1) ){ mes "Sorry, but only a ^FF0000Party Leader^000000 can register a game here."; }else{ mes "How many Players for each Party Team ?"; mes "Min = 1 Max = "+$@partymembercount; mes "Because you only have "+$@partymembercount+" member right now."; next; input .No,1,$@partymembercount; announce "[ "+.No+"vs"+.No+" Party Match ] created by "+strcharinfo(0)+", you may register to join.",0; set .Team[0],getcharid(1); set .Created,1; } close; Case 1: if( !.Team[1] && getcharid(1) == .Team[0] ){ mes "Please wait for ^FF0000Team 2^000000 to Register."; }else{ if( getcharid(0) != getpartyleader( getcharid(1),2 ) || !getcharid(1) ){ mes "Sorry, but only a ^FF0000Party Leader^000000 can register a game here."; close; } getpartymember getcharid(1),1; if( $@partymembercount < .No ){ mes "You didnt have enough of "+.No+" Member for the Game."; mes "You only have "+$@partymembercount+" Member."; }else{ mes "Confirm Registration ?"; if( select("Yes:No") == 1 ){ set .Team[1],getcharid(1); set .Created,2; setarray .Members[0],.No,.No; for( set .@party,0; .@party < 2; set .@party,.@party + 1 ){ getpartymember .Team[.@party],1; for( set .@i,0; .@i < .No; set .@i,.@i + 1 ) warpchar .Map$,0,0,$@partymembercid[.@i]; } end; } } } close; Case 2: mes "^FF0000The Game is in Progress.^000000"; mes "[ A "+.No+" vs "+.No+" Game ]"; mes "Team ^FF0000"+getpartyname( .Team[0] )+"^000000 vs Team ^FF0000"+getpartyname( .Team[1] )+"^000000 ."; close; } close; Case 2: mes "Done, Match will be terminated right away."; mapannounce .Map$,"Match has been Cancelled by a GM.",0; close2; OnReset: deletearray .Team[0],getarraysize( .Team ); deletearray .Members[0],getarraysize( .Members ); if( .Winner ){ getpartymember .Winner,2; for( set .@i,0; .@i < .No; set .@i,.@i + 1 ){ getitem 512,100,$@partymemberaid[.@i]; getitem 607,1,$@partymemberaid[.@i]; } set .Winner,0; } sleep2 2000; set .Created,0; mapwarp .Map$,"prontera",155,181; end; } close; OnPCDieEvent: OnPCLogoutEvent: if( strcharinfo(3) == .Map$ && .Created ){ for( set .@i,0; .@i < 2; set .@i,.@i + 1 ) if( getcharid(1) == .Team[.@i] ) set .Members[.@i],.Members[.@i] - 1; if( .Members[0] < 1 ) set .Winner,.Team[1]; else if( .Members[1] < 1 ) set .Winner,.Team[0]; if( .Winner ){ mapannounce .Map$,"Team "+getpartyname( .Winner )+" Win the "+.No+"vs"+.No+" Game.",0; donpcevent strnpcinfo(0)+"::OnReset"; }else{ warp "prontera",155,181; } } end; OnInit: set .GMLevel,80; set .Map$,"06guild_01"; end; } 06guild_01 mapflag nobranch 06guild_01 mapflag nowarpto 06guild_01 mapflag nowarp 06guild_01 mapflag nogo 06guild_01 mapflag pvp 06guild_01 mapflag noreturn 06guild_01 mapflag nosave 06guild_01 mapflag nomemo i got this error what is this error on to?? [Error]: buildin_sleep2: no unit is attached [Debug]: Source (NPC): 10v10 PVP at prontera (147,140) thnx for the help and how can i set this like it needs minimum of 5 members to register?? thnx
-
lemme try EDIT : WORKING NOW THNX
-
WC nice script imma wait
-
-
thnx to this one
-
help with freebies item with option on it
AinsLord replied to AinsLord's question in Scripting Support
i do have specific option in mind thnx for the help if you have one -
owkie thnx i've tried 2 account same pc so i have same ip i selected IP protection i claimed the item on the same IP it suppose to be one only on those 2 accounts can claim since im logged in on the same PC same IP
-
what if i dont have gepard?? coz i notice there is like a sql table for gepard will i get some error if i dont have gepard??
-
like this one when new players click the freebies NPC the items got options on it is that possible thnx for the help
-
kase gusto ko po gumawa ng like 5 option per item or more ex: Armor HP + HP Regen + Redu demi + Redu Fire + HP% pano ko po gagwin un nag hi2wlaay kc sakin eh parang ganto e2 po ung script ko // MaxHP //RDMOPTG_MaxHP,100,RDMOPT_VAR_MAXHPAMOUNT,100,0 //RDMOPTG_MaxHP,60,RDMOPT_VAR_MAXHPAMOUNT,150,0 //RDMOPTG_MaxHP,30,RDMOPT_VAR_MAXHPAMOUNT,200,0 //RDMOPTG_MaxHP,12,RDMOPT_VAR_MAXHPAMOUNT,300,0 //RDMOPTG_MaxHP,6,RDMOPT_VAR_MAXHPAMOUNT,400,0 RDMOPTG_MaxHP,1000,RDMOPT_VAR_MAXHPAMOUNT,600,0,RDMOPT_VAR_HPACCELERATION,10,0 RDMOPTG_MaxHP,2,RDMOPT_VAR_MAXHPAMOUNT,600,0,RDMOPT_VAR_HPACCELERATION,10,0,RDMOPT_VAR_MAXHPPERCENT,5,0 RDMOPTG_MaxHP,1,RDMOPT_VAR_MAXHPAMOUNT,600,0,RDMOPT_VAR_HPACCELERATION,20,0,RDMOPT_VAR_MAXHPPERCENT,7,0 // MaxSP RDMOPTG_MaxSP,100,RDMOPT_VAR_MAXSPAMOUNT,50,0 RDMOPTG_MaxSP,60,RDMOPT_VAR_MAXSPAMOUNT,100,0 RDMOPTG_MaxSP,30,RDMOPT_VAR_MAXSPAMOUNT,150,0 RDMOPTG_MaxSP,12,RDMOPT_VAR_MAXSPAMOUNT,250,0 RDMOPTG_MaxSP,6,RDMOPT_VAR_MAXSPAMOUNT,350,0 RDMOPTG_MaxSP,3,RDMOPT_VAR_MAXSPAMOUNT,500,0,RDMOPT_VAR_SPACCELERATION,10,0 RDMOPTG_MaxSP,2,RDMOPT_VAR_MAXSPAMOUNT,500,0,RDMOPT_VAR_SPACCELERATION,10,0,RDMOPT_VAR_MAXSPPERCENT,5,0 RDMOPTG_MaxSP,1,RDMOPT_VAR_MAXSPAMOUNT,500,0,RDMOPT_VAR_SPACCELERATION,20,0,RDMOPT_VAR_MAXSPPERCENT,7,0 // EleResist RDMOPTG_EleRes,1000,RDMOPT_MDAMAGE_PROPERTY_WATER_USER,20,0 gs2 ko sana nasa isang armor lng ung HP+resists+HP% etc thnx po sa help
-
im trying to do like HP + HP regen + EleRes + RaceRes + Attk and some other combination on item but it came out only like this it separates how can i combine this 3 effects or option in 1 item thnx for the help
-
is it possible to do item option even the item is custom??
AinsLord posted a question in General Support
like if you made a custom item armor and put it on mob_drop.txt will it dropped by poring eventhou its not listed on the poring drops on mob_db.txt?? -
thnx guys i love it sorry im used to old process of rathena interms of compiling and im using 2012 client for a long time hehehe same process to add custom item on this Zackdreaver ROEnglishRE / PRE?? EDIT : i notice that it doesnt read the idnum2 files for custom items??? why and how will i add custom items?? - already figure this one out my questions are 1. how can i add custom card?? - figured out 2. how can i patch new item if the desc/resname/slotcount/itemname is on iteminfo.lub 3. is there any way like make it the way it was before like i can add item on my grf without doing anything on iteminfo.lub?? 4. do i really need a full KRO client to make the 2015 client run?? coz i do have like a LITE client that needs only like the data.grf 2012 client runs if not needed a full KRO then what files do i need to run it properly thnx for the answers upon adding custom item i got this error i do have every thing after pasting it on my iteminfo.lua T_T i really dun get it on how to add custom armors / headgears on this one thnx for the help
-
what if i put the files on system folder to lua files on grf is that possible?? or it will occur errors?? what i mean is from system folder to lua files on grf?