Jump to content

Byakuran

Members
  • Posts

    229
  • Joined

  • Last visited

Everything posted by Byakuran

  1. the name after the lv? i cannot change it anymore? how about when adding a new job/class ?? how can i see the name in the client??
  2. i want to know if its possible to change the job name like Professor to Prof ?/
  3. hello is theres a guide on how can i make a custom skill in ragre? cuz the guide is on xray only
  4. panu maging 5% chance na maging +7 lahat ng iuups?
  5. i need is the item_script bump!!
  6. can i request a freebies npc (IP Based) and how many i make this item script disguise them to 3rd job but they cant use or add 3rd job skill.. since i have a skill point seller ingame
  7. Byakuran

    request

    the npc only give 1 fix item... >.< i want to change it to any item
  8. Byakuran

    request

    can someone change this script ... i want this to be give price what ever i want heres the script //===== eAthena Script ======================================= //= Itemizer //===== By: ================================================== //= Latheesan (Modified by Pancake for rAthena) //===== Current Version: ===================================== //= 1.5.1 //===== Compatible With: ===================================== //= Any SQL eAthena Version //===== Description: ========================================= //= To prevent GM Corruption, you can disable all item related //= commands and use this NPC to distribute Items and/or KCP. //===== Additional Comments: ================================= //= v1.0 - Initial Release (Report Bugs On eAthena Board) //= v1.1 - Fixed A Few Typo In Script //= v1.2 - Fixed GM Detection Bug and Cleaned Up The Code //= v1.3 - Added User Menu In GM Menu //= v1.4 - Added New @check_online and @notify_player Config //= v1.5 - Added Announce Feature and code optimized //============================================================ // // WARNING // // // THIS SCRIPT IS USING GETGROUPID, YOU MUST BE USING AN SVN THAT HAS GROUP_ID AND NOT GM LEVEL. // //===== SQL Table ============================================ //= Execute This Query On Your Ragnarok Database Prior To Use. //= //CREATE TABLE IF NOT EXISTS `itemizer` ( // `id` int(11) unsigned NOT NULL auto_increment, // `item_id` int(11) NOT NULL, // `item_amount` int(11) NOT NULL, // `item_name` varchar(255) NOT NULL, // `char_id` int(11) NOT NULL, // `char_name` varchar(255) NOT NULL, // `reason` varchar(255) NOT NULL, // `by_gm` varchar(255) NOT NULL, // `when` datetime NOT NULL, // `for` varchar(255) NOT NULL, // `collected` tinyint(1) NOT NULL, // PRIMARY KEY (`id`) //) ENGINE=MyISAM ; // // Script Interface For Event Prize NPC // dicastes01,244,163,4 script Rewards 906,{ // Script Config set @npc$,"^008000[ Rewards ]^000000"; // NPC Name // Advance Script Config set @dummy_kcp_id,123; // Dummy Item ID Used To Identify If Collection Item == KCP set @check_weight,1; // 1 == Yes | 0 == No (Check If Player Is Over Weight) set @min_gm_lvl,2; // Minimum GM Level Required To "Make Item" (Not used in this version) set @min_eventgm_lvl,2; // Minimum Group ID Required To "Give Item" and "Give KCP" <- set @min_item_amount,1; // Minimum Item Amount <- !! set @max_item_amount,2; // Maximum Item Amount <- !! set @min_kcp_amount,1; // Minimum KCP Amount set @max_kcp_amount,10; // Maximum KCP Amount set @check_online,1; // Check If Target Player Is Online Before Giving Item set @notify_player,1; // 1 == Yes | 0 == No (Notify Player When GM Gives Them Item) set @allow_announce,1; // 1 == Yes | 0 == No (Let GM Choose If He/She Wants To Announce) set @ep_item_id,7711; //event ticket id <- If you have a different event ticket, or want to use Poring coins change this! setarray @announce_loc$, // Possible Announce Locations "bc_all", "bc_map", "bc_area"; // Main Script L_Main: mes @npc$; mes " "; if (getgroupid() > @min_gm_lvl) { mes "Hello GM "+ strcharinfo(0) +"."; mes " "; mes "What would you like today?"; switch(select("Give Prize","Player Menu","Nothing")) { // Give Item case 1: goto L_EP_GiveItem; break; // Give KCP // Player Menu case 2: goto L_EP_Collect; break; // Nothing default: close; break; } } else { mes "Hello, what would you like today?"; switch(select("Collect Event Prize","Collection Log","Nothing")) { // Collect Event Prize case 1: goto L_EP_Collect; break; // Collection Log case 2: goto L_EP_CLog; break; // Nothing default: close; break; } } // Make Item [GM] L_EP_MakeItem: next; mes @npc$; mes " "; mes "What item would you like?"; mes "Enter the ID."; input @ep_item_id; next; if (getitemname(@ep_item_id) == "" || getitemname(@ep_item_id) == "null") { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_item_id +" is an invalid item ID.^000000"; close; } mes @npc$; mes " "; mes "Okay, how many "+ getitemname(@ep_item_id) +" do you want?"; mes " "; mes "Min "+ @min_item_amount +" and Max "+ @max_item_amount +"."; input @ep_item_count; next; if (@ep_item_count < @min_item_amount || @ep_item_count > @max_item_amount) { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_item_count +" is an invalid amount."; mes " "; mes "Min "+ @min_item_amount +" and Max "+ @max_item_amount +".^000000"; close; } if (@check_weight && checkweight(@ep_item_id, @ep_item_count) == 0) { mes @npc$; mes " "; mes "^CC0000Sorry, you cannot hold "+ @ep_item_count +"x "+ getitemname(@ep_item_id) +"."; mes " "; mes "Your inventory is full.^000000"; close; } set @when$,callfunc("makeTimestamp"); set @nb,query_sql("INSERT INTO `itemizer` VALUES(NULL,'"+ escape_sql(@ep_item_id) +"','"+ escape_sql(@ep_item_count) +"','"+ escape_sql(getitemname(@ep_item_id)) +"','"+ escape_sql(getcharid(0)) +"','"+ escape_sql(strcharinfo(0)) +"','N/A','[GM] "+ escape_sql(strcharinfo(0)) +"','"+ escape_sql(@when$) +"','gm','1')"); getitem @ep_item_id,@ep_item_count; mes @npc$; mes " "; mes "All done ~"; close; // Give Item [GM] L_EP_GiveItem: next; mes @npc$; mes " "; if (getgroupid() < @min_eventgm_lvl) { mes "^CC0000Access Denied!"; mes " "; mes "You must be atleast level "+ @min_eventgm_lvl +" GM.^000000"; close; } mes "You may only give 1 event ticket, 2 in special occasions, or for long running events."; next; if (getitemname(@ep_item_id) == "" || getitemname(@ep_item_id) == "null") { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_item_id +" is an invalid item ID.^000000"; close; } mes @npc$; mes " "; mes "Okay, how many "+ getitemname(@ep_item_id) +" do you want to give a player?"; mes " "; mes "Min "+ @min_item_amount +" and Max "+ @max_item_amount +"."; input @ep_item_count; next; if (@ep_item_count < @min_item_amount || @ep_item_count > @max_item_amount) { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_item_count +" is an invalid amount."; mes " "; mes "Min "+ @min_item_amount +" and Max "+ @max_item_amount +".^000000"; close; } mes @npc$; mes " "; mes "Okay, who do you want to give "+ @ep_item_count +"x "+ getitemname(@ep_item_id) +"?"; mes " "; mes "Enter player name"+ (@check_online ? " (must be online)." : " ."); input @ep_char_name$; next; set @ep_char_id,getcharid(0,@ep_char_name$); if (@check_online && !isloggedin(getcharid(3,@ep_char_name$))) { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_char_name$ +" is invalid."; mes " "; mes "This player either doesn't exist or s/he is not online now.^000000"; close; } mes @npc$; mes " "; mes "Now, enter the reason for giving "+ @ep_item_count +"x "+ getitemname(@ep_item_id) +" to "+ @ep_char_name$ +"."; input @ep_reason$; next; if (@ep_reason$ == "") { mes @npc$; mes " "; mes "^CC0000Sorry, that is not a valid reason.^000000"; close; } if (@allow_announce) { mes @npc$; mes " "; mes "Do you want to announce the following message?"; mes " "; set @anounce_msg$,"[GM] "+ strcharinfo(0) +" Gave "+ @ep_item_count +"x "+ getitemname(@ep_item_id) +" to "+ @ep_char_name$ +". Reason - "+ @ep_reason$; mes @anounce_msg$; if (select("Yes:No") == 1) { set @do_announce,1; } else { set @do_announce,0; } next; if (@do_announce) { mes @npc$; mes " "; mes "Where would you like to announce this message?"; mes " "; mes @anounce_msg$; set @options$,""; for (set @i,0; @i < getarraysize(@announce_loc$); set @i,@i+1) { if (@announce_loc$[@i] == "bc_all") { set @options$,@options$+"Server Wide"; } else if (@announce_loc$[@i] == "bc_map") { set @options$,@options$+"Everyone In The Same Map"; } else if (@announce_loc$[@i] == "bc_area") { set @options$,@options$+"Everyone Near You"; } if (@i != (getarraysize(@announce_loc$) - 1)) { set @options$,@options$+":"; } } set @choice,select(@options$); set @a_loc$,@announce_loc$[@choice]; next; mes @npc$; mes " "; mes "What color do you want to announce in?"; if (select("Yello:Blue") == 1) { set @a_color$,"bc_yellow"; } else { set @a_color$,"bc_blue"; } next; } } mes @npc$; mes " "; mes "Is this correct?"; mes " "; mes "Give ^0000FF"+ @ep_item_count +"x^000000 ^008000"+ getitemname(@ep_item_id) +"^000000 to ^CC0000"+ @ep_char_name$ +"^000000."; mes " "; mes "Reason : "+ @ep_reason$; if (select("Yes:No") == 1) { next; set @when$,callfunc("makeTimestamp"); set @nb,query_sql("INSERT INTO `itemizer` VALUES(NULL,'"+ escape_sql(@ep_item_id) +"','"+ escape_sql(@ep_item_count) +"','"+ escape_sql(getitemname(@ep_item_id)) +"','"+ escape_sql(@ep_char_id) +"','"+ escape_sql(@ep_char_name$) +"','"+ escape_sql(@ep_reason$) +"','[GM] "+ escape_sql(strcharinfo(0)) +"','"+ escape_sql(@when$) +"','player','0')"); mes @npc$; mes " "; mes "All Done~"; close2; if (@notify_player) { message @ep_char_name$,"[GM] "+ strcharinfo(0) +" Has Given You "+ @ep_item_count +"x "+ getitemname(@ep_item_id) +"."; } if (@do_announce) { if (@a_color$ == "bc_yellow") { if (@a_loc$ == "bc_all") { announce @anounce_msg$,bc_yellow|bc_all; } else if (@a_loc$ == "bc_map") { announce @anounce_msg$,bc_yellow|bc_map; } else { announce @anounce_msg$,bc_yellow|bc_area; } } else { if (@a_loc$ == "bc_all") { announce @anounce_msg$,bc_blue|bc_all; } else if (@a_loc$ == "bc_map") { announce @anounce_msg$,bc_blue|bc_map; } else { announce @anounce_msg$,bc_blue|bc_area; } } } end; } close; // Give KCP [GM] L_EP_GiveKCP: next; mes @npc$; mes " "; if (getgroupid() < 99) { mes "^CC0000Access Denied!"; mes " "; mes "This function is not implimented yet!"; close; } mes "Okay, how many KCP would you like to give?"; mes " "; mes "Min "+ @min_kcp_amount +" and Max "+ @max_kcp_amount +"."; input @ep_kcp_count; next; if (@ep_kcp_count < @min_kcp_amount || @ep_kcp_count > @max_kcp_amount) { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_kcp_count +" is an invalid amount."; mes " "; mes "Min "+ @min_kcp_amount +" and Max "+ @max_kcp_amount +".^000000"; close; } mes @npc$; mes " "; mes "Okay, who do you want to give "+ @ep_kcp_count +" KCP?"; mes " "; mes "Enter player name"+ (@check_online ? " (must be online)." : " ."); input @ep_char_name$; next; set @ep_char_id,getcharid(0,@ep_char_name$); if (@check_online && !isloggedin(getcharid(3,@ep_char_name$))) { mes @npc$; mes " "; mes "^CC0000Sorry, "+ @ep_char_name$ +" is invalid."; mes " "; mes "This player either doesn't exist or s/he is not online now.^000000"; close; } mes @npc$; mes " "; mes "Now, enter the reason for giving "+ @ep_kcp_count +" KCP to "+ @ep_char_name$ +"."; input @ep_reason$; next; if (@ep_reason$ == "") { mes @npc$; mes " "; mes "^CC0000Sorry, that is not a valid reason.^000000"; close; } if (@allow_announce) { mes @npc$; mes " "; mes "Do you want to announce the following message?"; mes " "; set @anounce_msg$,"[GM] "+ strcharinfo(0) +" Gave "+ @ep_kcp_count +"x Kafra Credit Point (KCP) to "+ @ep_char_name$ +". Reason - "+ @ep_reason$; mes @anounce_msg$; if (select("Yes:No") == 1) { set @do_announce,1; } else { set @do_announce,0; } next; if (@do_announce) { mes @npc$; mes " "; mes "Where would you like to announce this message?"; mes " "; mes @anounce_msg$; set @options$,""; for (set @i,0; @i < getarraysize(@announce_loc$); set @i,@i+1) { if (@announce_loc$[@i] == "bc_all") { set @options$,@options$+"Server Wide"; } else if (@announce_loc$[@i] == "bc_map") { set @options$,@options$+"Everyone In The Same Map"; } else if (@announce_loc$[@i] == "bc_area") { set @options$,@options$+"Everyone Near You"; } if (@i != (getarraysize(@announce_loc$) - 1)) { set @options$,@options$+":"; } } set @choice,select(@options$); set @a_loc$,@announce_loc$[@choice]; next; mes @npc$; mes " "; mes "What color do you want to announce in?"; if (select("Yello:Blue") == 1) { set @a_color$,"bc_yellow"; } else { set @a_color$,"bc_blue"; } next; } } mes @npc$; mes " "; mes "Is this correct?"; mes " "; mes "Give ^0000FF"+ @ep_kcp_count +"^000000 ^008000KCP^000000 to ^CC0000"+ @ep_char_name$ +"^000000."; mes " "; mes "Reason : "+ @ep_reason$; if (select("Yes:No") == 1) { next; set @when,callfunc("makeTimestamp"); set @nb,query_sql("INSERT INTO `itemizer` VALUES(NULL,'"+ @dummy_kcp_id +"','"+ @ep_kcp_count +"','Kafra Credit Point (KCP)','"+ @ep_char_id +"','"+ @ep_char_name$ +"','"+ @ep_reason$ +"','[GM] "+ strcharinfo(0) +"','"+ @when +"','player','0')"); mes @npc$; mes " "; mes "All Done~"; close2; if (@notify_player) { message @ep_char_name$,"[GM] "+ strcharinfo(0) +" Has Given You "+ @ep_kcp_count +" Kafra Credit Point (KCP)."; } if (@do_announce) { if (@a_color$ == "bc_yellow") { if (@a_loc$ == "bc_all") { announce @anounce_msg$,bc_yellow|bc_all; } else if (@a_loc$ == "bc_map") { announce @anounce_msg$,bc_yellow|bc_map; } else { announce @anounce_msg$,bc_yellow|bc_area; } } else { if (@a_loc$ == "bc_all") { announce @anounce_msg$,bc_blue|bc_all; } else if (@a_loc$ == "bc_map") { announce @anounce_msg$,bc_blue|bc_map; } else { announce @anounce_msg$,bc_blue|bc_area; } } } end; } close; // Collect Event Prize (Part 1) [Player] L_EP_Collect: next; mes @npc$; mes " "; mes "Would you like to check if any item is waiting to be collected?"; if (select("Yes Please:No Thanks") == 1) { next; if (getarraysize(@db_id)) { deletearray @db_id,127; deletearray @item_id,127; deletearray @item_name$,127; deletearray @item_amount,127; deletearray @reason$,127; deletearray @by_gm$,127; } set @result,query_sql("SELECT `id`,`item_id`,`item_name`,`item_amount`,`reason`,`by_gm` FROM `itemizer` WHERE (`char_id` = '"+ getcharid(0) +"' AND `for` = 'player' AND `collected` = 0) LIMIT 127", @db_id, @item_id, @item_name$, @item_amount, @reason$, @by_gm$); if (!@result) { mes @npc$; mes " "; mes "^CC0000No items are waiting to be collected by you.^000000"; close; } else { goto L_EP_C_Final; } } close; // Collect Event Prize (Part 2) [Player] L_EP_C_Final: set @options$,""; for (set @i,0; @i < @result; set @i,@i+1) { set @options$,@options$+@item_amount[@i] +"x "+@item_name$[@i]+":"; } mes @npc$; mes " "; mes "Here is a list of item(s) waiting to be collected by you."; mes " "; mes "Pick the item you want to collect now."; set @choice,select(@options$) - 1; next; mes @npc$; mes " "; if (@item_id[@choice] != @dummy_kcp_id) { mes "ID - "+ @item_id[@choice]; } mes "Name - "+ @item_name$[@choice]; mes "Amount - "+ @item_amount[@choice] +"x"; mes "By - "+ @by_gm$[@choice]; mes " "; mes "Reason - "+ @reason$[@choice]; if (select("Collect Now:Collect Later") == 1) { next; if (@item_id[@choice] != @dummy_kcp_id) { if (@check_weight && checkweight(@item_id[@choice], @item_amount[@choice]) == 0) { mes @npc$; mes " "; mes "^CC0000Sorry, you cannot hold "+ @item_amount[@choice] +"x "+ @item_name$[@choice] +"."; mes " "; mes "Your inventory is full.^000000"; close; } } set @nb,query_sql("UPDATE `itemizer` SET `collected` = 1 WHERE (`id` = '"+ @db_id[@choice] +"') LIMIT 1"); if (@item_id[@choice] != @dummy_kcp_id) { getitem @item_id[@choice],@item_amount[@choice]; } else { set #CASHPOINTS,(#CASHPOINTS + @item_amount[@choice]); } set @result,(@result - 1); deletearray @db_id[@choice],1; deletearray @item_id[@choice],1; deletearray @item_name$[@choice],1; deletearray @item_amount[@choice],1; deletearray @reason$[@choice],1; deletearray @by_gm$[@choice],1; goto L_EP_C_Final; } else { next; goto L_EP_C_Final; } // Collection Log [Player] L_EP_CLog: next; mes @npc$; mes " "; if (getarraysize(@item_name$)) { deletearray @item_name$,127; deletearray @item_amount,127; deletearray @reason$,127; deletearray @by_gm$,127; deletearray @when$,127; } if (!@offset){ set @offset,0; } if (!@rows_per_page) { set @rows_per_page,10; } set @result,query_sql("SELECT `item_name`,`item_amount`,`reason`,`by_gm`,`when` FROM `itemizer` WHERE (`char_id` = '"+ getcharid(0) +"' AND `for` = 'player' AND `collected` = 1) ORDER BY `when` DESC LIMIT "+ @offset +","+ @rows_per_page, @item_name$, @item_amount, @reason$, @by_gm$, @when$); if(!@result) { if (@offset == 10) { mes "^CC0000You have not collected any items from me yet.^000000"; } else { mes "^CC0000Sorry, there is no more data.^000000"; } close2; if (@offset) { set @offset,0; } end; } else { for (set @i,0; @i < @result; set @i,@i+1) { mes "^0000FF"+ @item_amount[@i] +"x^000000 ^008000"+ @item_name$[@i] +"^000000"; mes "Reason - "+ @reason$[@i]; mes "By - "+ @by_gm$[@i]; mes "When - "+ @when$[@i]; if (@i != (@result - 1)) { mes " "; } } set @offset,(@offset + @rows_per_page); if (select("Next "+ @rows_per_page +" Logs:Cancel") == 2) { close2; if (@offset) { set @offset,0; } end; } goto L_EP_CLog; } } // // Func To Make MySQL Friendly Timestamp // function script makeTimestamp { // Get Current Date & Time Variables set @curYear,gettime(7); set @curMonth,gettime(6); set @curDay,gettime(5); set @curHour,gettime(3); set @curMinute,gettime(2); set @curSecond,gettime(1); // Start A New Timestamp Variable set @timestamp$,""; // MySQL Timestamp Friendly :: Year set @timestamp$,@timestamp$+@curYear+"-"; // MySQL Timestamp Friendly :: Month if (@curMonth <= 9) { set @timestamp$,@timestamp$+"0"+@curMonth+"-"; } else { set @timestamp$,@timestamp$+@curMonth+"-"; } // MySQL Timestamp Friendly :: Day if (@curDay <= 9) { set @timestamp$,@timestamp$+"0"+@curDay+" "; } else { set @timestamp$,@timestamp$+@curDay+" "; } // MySQL Timestamp Friendly :: Hour if (@curHour <= 9) { set @timestamp$,@timestamp$+"0"+@curHour+":"; } else { set @timestamp$,@timestamp$+@curHour+":"; } // MySQL Timestamp Friendly :: Minute if (@curMinute <= 9) { set @timestamp$,@timestamp$+"0"+@curMinute+":"; } else { set @timestamp$,@timestamp$+@curMinute+":"; } // MySQL Timestamp Friendly :: Second if (@curSecond <= 9) { set @timestamp$,@timestamp$+"0"+@curSecond; } else { set @timestamp$,@timestamp$+@curSecond; } // Return MySQL Friendly Timestamp return @timestamp$; }
  9. tnks need to try it
  10. can someone make this npc announce when someone buy ... but i want it to announce this "Player name" has purchase a "item name" from donation npc heres my npc //================ DONATION Trader=================== turbo_room,99,120,6 script Donation Shop 403,{ mes .name$; mes "You currently have "+countitem(.tcg_item)+" TCG."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) {close;} close2; callshop "Donation_SHOP",1; npcshopattach "Donation_SHOP"; dispbottom "You currently have "+countitem(.Donation_item)+" TCG."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.TCG_ITEMS); set @j,@j+1) { if(.TCG_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.ITEMPRICE[@j]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.tcg_item)) { dispbottom "You don't have enough TCG."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .tcg_item,@totalcost; dispbottom "Thank you for shopping."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "Donation_SHOP",909; // Leave this alone set .name$,"[Donation Trader]"; set .tcg_item,7179; // Input TCG ID setarray .TCG_ITEMS[0],5467,2720,2721,2722,2723,2724,2725,5374,5518,2629,20001,1228,13017,2630,4441,2554,5325; setarray .ITEMPRICE[0],10,7,7,7,7,7,7,10,10,8,6,5,6,4,10,6,4; // Item prices - Should followe ID's order for(set .@item,0; .@item < getarraysize(.TCG_ITEMS); set .@item,.@item+1) { npcshopadditem "Donation_SHOP",.TCG_ITEMS[.@item],.ITEMPRICE[.@item]; } end; } - shop Donation_SHOP -1,909:5
  11. Byakuran

    flux problem

    tnks already solve i forgot to put the folder in themes folder
  12. Byakuran

    flux problem

    i have this problem when i try to put gerome design.. heres the error Error An error occurred while trying to process your request. Please try contacting an administrator: admin@localhost
  13. how can i make that treasure box will drop 10% of a random items ... heres the item id: 20000,20003,20010,20015,20040
  14. why nothing happen to my cast rate even i make my dex 99..
  15. i have a weird problem.. im using calcium basic client and i cant save any msg in shorcut list...
  16. hello is someone has a moonlight flower hat?? cuz green peach is down and i cant get it is theres a new link for green peach?? please someone give me
  17. Byakuran

    request

    1st request can someone give a link for a clean grf/clean data folder... 2nd request can someone suggest whats the best client for rathena revision 16083
  18. napalitan kona nga... nklagay nga dun user:root password:ragnarok and ung sa db:ragnarok.. solve!!
  19. sir.. i change the 5 to 2.. and the party has 5members .. but it do nothing
  20. sir i already did that.. thats the user n pass of my database... i dont know whats the problem w/ my cp
  21. hello sir.. theres a problem w/ the npc.. when the player or i click the npc nothing happen?
  22. hello.. i use other cp but i got lots of error and i dont know why... please help me!! heres my config <?php $statistics = "on"; // write in "" on or off $registration = "on"; // write in "" on or off $md5 = "on"; //if you using md5 encrypt you must write replace off with on $userminlength = "4"; // Username Minimum Length, default is 4 $usermaxlength = "10"; // Username Maximum Length, default is 10 $passminlength = "6"; // Password Minimum Length, recomended is 6 $passmaxlength = "12"; // Password Maximum Length, recomended is 12 $servername = "MyRo"; // You Ragnarok Server Name /************************* Database ********************/ DEFINE(host, "localhost"); // database hostname default is localhost DEFINE(user, "root"); // database username DEFINE(pass, "ragnarok"); // database password DEFINE(db, "ragnarok"); // database /*********************** Main *************************/ DEFINE(Username, "Username"); DEFINE(Password, "Password"); DEFINE(RePassword, "Re-Password"); DEFINE(Email, "Email Address"); DEFINE(Remail, "Re-Email Address"); DEFINE(Rules, "Accept rules"); DEFINE(Email, "Email"); DEFINE(Sex, "Sex"); DEFINE(Male, "Male"); DEFINE(Female, "Female"); DEFINE(captcha, "Captcha"); DEFINE(check, "Check"); DEFINE(reset, "Reset"); DEFINE(submit, "Register"); /********************* Statistics **********************/ DEFINE(rm, "Registered Members"); DEFINE(cc, "Created Characters"); /****************** Registration Errors *****************/ DEFINE(vrules, "You must read and accept rules for complete registration!"); DEFINE(Already, "Username '+document.getElementById('username').value+' is already exits, please choose another Username"); DEFINE(ud, "You didn't enter a Username."); DEFINE(un, "Username is Already Exits"); DEFINE(ul, "Username length must be from ".$userminlength." to ".$usermaxlength.""); DEFINE(ui, "Username contained are Illegal characters."); DEFINE(pd, "You didn't enter a Password."); DEFINE(pl, "Password length must be from ".$passminlength." to ".$passmaxlength.""); DEFINE(pi, "Password contained are Illegal characters."); DEFINE(ed, "You didn't enter a Email."); DEFINE(el, "Invalid Email Address"); DEFINE(ei, "You didn't enter a Username."); DEFINE(rem, "Emails do not mutch"); DEFINE(pem, "Passwords do not mutch"); DEFINE(vcap, "Captcha must contain 5 chars"); DEFINE(vin, "Security code is Incorrect"); DEFINE(reg, "Username ".$username." Registered, now you can join in game<bGood luck!"); /********************* Mainterance **********************/ DEFINE(mainterance, "Sorry Registration are disabled at the moment"); $con = mysql_connect(host,user,pass); ?> i got this from eathena and heres the link http://www.eathena.w...614&hl=register bump... please help me w/ this
  23. i want to try this register form but i dont know why its all error heres my config <?php $statistics = "on"; // write in "" on or off $registration = "on"; // write in "" on or off $md5 = "on"; //if you using md5 encrypt you must write replace off with on $userminlength = "4"; // Username Minimum Length, default is 4 $usermaxlength = "10"; // Username Maximum Length, default is 10 $passminlength = "6"; // Password Minimum Length, recomended is 6 $passmaxlength = "12"; // Password Maximum Length, recomended is 12 $servername = "MyRo"; // You Ragnarok Server Name /************************* Database ********************/ DEFINE(host, "localhost"); // database hostname default is localhost DEFINE(user, "root"); // database username DEFINE(pass, "ragnarok"); // database password DEFINE(db, "ragnarok"); // database /*********************** Main *************************/ DEFINE(Username, "Username"); DEFINE(Password, "Password"); DEFINE(RePassword, "Re-Password"); DEFINE(Email, "Email Address"); DEFINE(Remail, "Re-Email Address"); DEFINE(Rules, "Accept rules"); DEFINE(Email, "Email"); DEFINE(Sex, "Sex"); DEFINE(Male, "Male"); DEFINE(Female, "Female"); DEFINE(captcha, "Captcha"); DEFINE(check, "Check"); DEFINE(reset, "Reset"); DEFINE(submit, "Register"); /********************* Statistics **********************/ DEFINE(rm, "Registered Members"); DEFINE(cc, "Created Characters"); /****************** Registration Errors *****************/ DEFINE(vrules, "You must read and accept rules for complete registration!"); DEFINE(Already, "Username '+document.getElementById('username').value+' is already exits, please choose another Username"); DEFINE(ud, "You didn't enter a Username."); DEFINE(un, "Username is Already Exits"); DEFINE(ul, "Username length must be from ".$userminlength." to ".$usermaxlength.""); DEFINE(ui, "Username contained are Illegal characters."); DEFINE(pd, "You didn't enter a Password."); DEFINE(pl, "Password length must be from ".$passminlength." to ".$passmaxlength.""); DEFINE(pi, "Password contained are Illegal characters."); DEFINE(ed, "You didn't enter a Email."); DEFINE(el, "Invalid Email Address"); DEFINE(ei, "You didn't enter a Username."); DEFINE(rem, "Emails do not mutch"); DEFINE(pem, "Passwords do not mutch"); DEFINE(vcap, "Captcha must contain 5 chars"); DEFINE(vin, "Security code is Incorrect"); DEFINE(reg, "Username ".$username." Registered, now you can join in game<bGood luck!"); /********************* Mainterance **********************/ DEFINE(mainterance, "Sorry Registration are disabled at the moment"); $con = mysql_connect(host,user,pass); ?> heres the link where i get the cp http://www.eathena.ws/board/index.php?showtopic=267614&hl=register help!!! bump!! please help !!
×
×
  • Create New...