Jump to content

Poring King

Members
  • Posts

    1016
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Poring King

  1. 2 and 3 error is very straight forward error . For sure if you already do this the name is miss match . Your server files is trying to connect to rAthena_logs.loginlog so make sure inside your database the name of your database table is same with the error so he can locate it .
  2. Thanks i will look into it . Other suggestion will be appreciated ...
  3. Good day So im just trying to back to RO since its been a while since im gone . I see lot of changes since the last time i made RO server . But currently i experience a new things to me . Seems like the problem is because my PC is new and it runs thru Windows 11 . Seems like im missing some windows file and i dont know how to fix it . Im trying to run a clean RO file and clean client . But it wont launch its just loading then nothing happen . Any idea what file im missing so i can install it to my new PC build ? . Any idea will help me a lot . Thanks
  4. Increase the sprite size of certain sprite file that you want .
  5. Make sure to use upto date client files and use the correct files to avoid that kind of thing
  6. If im not mistaken on NEMO try to hex your client
  7. Use your Cashpoints as a Donate currency to avoid lot of complicated staff
  8. Yes put 7 on it . But base on that picture you sent i think there is no ID
  9. If im not mistaken you can find this on your server files conf
  10. I hope this will add to rA Master . This is really cool idea
  11. Card have a script . Locate it on your item_db.yml and create a custom function or script that will allow all the card skill and block a certain skill
  12. I advise you to go to your server files go to doc folder and read each one of the file try to focus on reading how to use syntax and the rAthena script language which is you can find on script_commands . Its very user friendly
  13. If you want to automatically attach to player . Remove physical npc by removing the coordinates Use character log in syntax like OnPCLoginEvent . With in this event put all the code that you want to do when player log in I see this usefull in near future so i made it more advance . I will add it to my future script . Thanks for the idea If your request has been solve dont forget to MARK it Solve by clicking Vote right side of profile . So other player with same problem will see this on top . If you appreciate the help you can simply click the vote lower right of the comments
  14. //===== rAthena Script ======================================== //= Bonus Attack Power for Knight/Lord Knight //===== By: Poring King v1 ==================================== //= Date: 2024-08-17 //============================================================= prontera,150,150,4 script AttackPowerBonus 100,{ // Check if the player has a Knight or Lord Knight character with Base Level 99 and Job Level 50 set .@account_id, getcharid(3); set .@has_knight_lord_knight, 0; set .@bonus_given, 0; query_sql("SELECT `class` FROM `char` WHERE `account_id` = "+.@account_id+" AND `base_level` = 99 AND `job_level` = 50", .@classes); for (set .@i, 0; .@i < getarraysize(.@classes); set .@i, .@i + 1) { if (.@classes[.@i] == 4008 || .@classes[.@i] == 4019) { // Knight or Lord Knight class ID set .@has_knight_lord_knight, 1; break; } } if (.@has_knight_lord_knight) { // Check if the bonus has already been given // Grant 10% attack power bonus specialeffect2 EF_BLESSING; bonus bAtkRate, 10; set .@bonus_given, 1; } if (.@bonus_given) { mes "Congratulations! You've received a 10% attack power bonus for having a max-level Knight or Lord Knight."; } else if (.@has_knight_lord_knight) { mes "It looks like you've already received the bonus."; } else { mes "Sorry, you don't have a max-level Knight or Lord Knight on your account."; } close; } Try
  15. Please spend time to read rAthena server documents and become more curious
  16. Not sure if im correct or what . This is my first time i read this . Do GRF have file limit now adays ? I think i stop creating RO server for just almost 4yrs but this is the first time i encounter this problem . If im not mistaken GRF is Unlimited . Just to make it more userfriendly or to be specific thats why you add a multiple GRF in your Data.Ini so the flow will be easy to recognize
  17. prontera,150,150,4 script Item Search 1234,{ mes "[Item Search]"; mes "Enter the name of the player you want to search:"; input .@player_name$; if (!check_player_exists(.@player_name$)) { mes "Player not found."; close; } mes "Enter the name or ID of the item you are looking for:"; input .@search_input$; // Initialize variables set .@item_id, 0; set .@item_amount, 0; set .@found_where$, ""; set .@total_amount, 0; if (isnumber(.@search_input$)) { .@item_id = atoi(.@search_input$); } else { .@item_id = getitemid(.@search_input$); } // Search for the item and display results callfunc "search_item", .@player_name$, .@item_id; close; } // Function to check if a player exists function check_player_exists { .@player_name$ = getcharid(0); .@player_id = query_sql("SELECT account_id FROM `char` WHERE `name` = '"+.@player_name$+"' LIMIT 1"); if (.@player_id) { return true; } return false; } // Function to search for the item function search_item { .@player_name$ = getcharid(0); .@item_id = getcharid(0); // Initialize variables set .@item_amount, 0; set .@found_where$, ""; set .@total_amount, 0; // Check Inventory for (.@i = 0; .@i < MAX_INVENTORY; .@i++) { if (getinventoryitemid(.@i) == .@item_id) { .@item_amount = getinventoryitemamount(.@i); .@total_amount += .@item_amount; .@found_where$ = "Inventory"; } } // Check Equipped Items for (.@i = 0; .@i < EQI_MAX; .@i++) { if (getequipid(.@i) == .@item_id) { .@item_amount = 1; // Equipped items are always one .@total_amount += .@item_amount; .@found_where$ = "Equipped"; } } // Check Guild Storage if (getcharid(1)) { // Check if player is in a guild for (.@i = 0; .@i < MAX_GUILD_STORAGE; .@i++) { if (getguildstorageitemid(.@i) == .@item_id) { .@item_amount = getguildstorageitemamount(.@i); .@total_amount += .@item_amount; .@found_where$ = "Guild Storage"; } } } // Check Personal Storage for (.@i = 0; .@i < MAX_STORAGE; .@i++) { if (getstorageitemid(.@i) == .@item_id) { .@item_amount = getstorageitemamount(.@i); .@total_amount += .@item_amount; .@found_where$ = "Personal Storage"; } } if (.@total_amount > 0) { mes "Item found!"; mes "Item Name: " + getitemname(.@item_id); mes "Total Amount: " + .@total_amount; mes "Location: " + .@found_where$; // Check if the item is a card if (getitemtype(.@item_id) == IT_CARD) { // Adjust this condition based on how you identify cards // Provide details on card compounding .@card_compound_info$ = get_card_compound_info(.@item_id); mes "This item is a card."; mes "Card Compounded: " + .@card_compound_info$; mes "Location where found: " + .@found_where$; } } else { mes "No items matched your search."; } } // Function to get card compounding information function get_card_compound_info { .@item_id = getcharid(0); // Initialize variables set .@info$, ""; // Query to get compounding information from database query_sql("SELECT compounded_item, compounding_location FROM card_compounding_info WHERE card_id = "+.@item_id+" LIMIT 1", .@info$, .@compounding_location$); // Check if we got any result if (.@info$ == "") { .@info$ = "No specific compounding info available."; } else { .@info$ = "Compounded into [" + .@info$ + "] at " + .@compounding_location$; } return .@info$; } Try this and i read your request seems like i send you a different one . This time i do what you need . Let me know if it is work . Not sure if i do right logical to getting info if the search item is card
  18. Try this i improve it a little bit send a screen shot again . Because i dont have server to test it prontera,150,150,4 script Item Inspector 123,{ // NPC Initialization OnInit: // No special initialization needed for this script end; // Main menu Menu: mes "Welcome to the Item Inspector!"; mes "Enter the name of the player you want to inspect:"; input .@playerName$; // Get the player name input from the user // Check if the input is empty if (.@playerName$ == "") { dispbottom "You must enter a player name."; close; } // Get the target player's ID query_sql "SELECT `char_id` FROM `char` WHERE `name` = '"+.@playerName$+"'", .@target_charid; if (getarraysize(.@target_charid) == 0) { dispbottom "Player not found or is offline."; close; } // Display equipped items dispbottom "Equipped Items of " + .@playerName$ + ":"; // Query to fetch equipped items by slot query_sql "SELECT `item_id`, `card1`, `card2`, `card3`, `card4`, `slot` FROM `equipment` WHERE `char_id` = " + .@target_charid[0], .@equip_item_id, .@equip_card1, .@equip_card2, .@equip_card3, .@equip_card4, .@equip_slot$; if (getarraysize(.@equip_item_id) > 0) { for (set .@i, 0; .@i < getarraysize(.@equip_item_id); set .@i, .@i + 1) { // Fetch item name from item_db query_sql "SELECT `name` FROM `item_db` WHERE `id` = " + .@equip_item_id[.@i], .@item_name$; set .@item_name$, .@item_name$[0]; // Fetch card names for the equipped item setarray .@card_ids[0], .@equip_card1[.@i], .@equip_card2[.@i], .@equip_card3[.@i], .@equip_card4[.@i]; set .@card_names$, ""; for (set .@j, 0; .@j < getarraysize(.@card_ids); set .@j, .@j + 1) { if (.@card_ids[.@j] > 0) { query_sql "SELECT `name` FROM `card_db` WHERE `id` = " + .@card_ids[.@j], .@card_name$; .@card_names$ += (getarraysize(.@card_name$) > 0 ? .@card_name$[0] : "Unknown") + " "; } else { .@card_names$ += "None "; } } // Display item information based on slot type switch (.@equip_slot$[.@i]) { case "head_top": dispbottom "Top Headgear: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "head_mid": dispbottom "Middle Headgear: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "head_low": dispbottom "Lower Headgear: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "armor": dispbottom "Armor: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "shield": dispbottom "Shield: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "weapon": dispbottom "Weapon: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "garment": dispbottom "Garment: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "shoes": dispbottom "Shoes: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "acc1": dispbottom "Accessory 1: " + .@item_name$ + ", Cards: " + .@card_names$; break; case "acc2": dispbottom "Accessory 2: " + .@item_name$ + ", Cards: " + .@card_names$; break; } } } else { dispbottom "No equipped items found."; } close; }
  19. Man this is forum i know its your right to post it. But right now i need you to stop this . You trying to do a express solution as far as i can see . Forum have a search engine and also Forum also have a rAthena wiki its old but its really informative . Further question then thats where you can post it here in forum to ask for specific help . Use the damn Search engine or i will talk to @Akkarin to remove it . LOL HAHAHHAHAHAH Just to be honest to you man . I learn how to do rAthena thing when i play offline server and its a premade server files its eAthena MOD not even rAthena . You can find it online that eAMOD gives me a lot of idea . Where to start, how to do this and this . Before i go to server setup after i know how to do server setup . I learn the coding from script_commands server file . It takes me 3-5months to properly read and understand the usage of those syntax . Until now i don't even know how to add custom items after 10yrs LOL . ( Laizy Person LOL ) . I don't want so much complicated and i dont want lot of custom staff . I love RO the way it is LOL
  20. I have this . Try this one i dont know if this will still work to latest rAthena . But the script is easy to understand so you can play with it prontera,150,150,4 script Item Inspector 123,{ mes "Welcome to the Item Inspector!"; mes "Enter the name of the player you want to inspect:"; input .@playerName$; // Get the player name input from the user // Check if the input is empty if (.@playerName$ == "") { dispbottom "You must enter a player name."; close; } // Get the target player's ID set .@target_charid, getcharid(0); // Get target player's ID // Check if player exists if (getcharid(0) != getcharid(0)) { dispbottom "Player not found or is offline."; close; } // Display player's inventory dispbottom "Inventory of " + .@playerName$ + ":"; query_sql "SELECT `id`, `item_id`, `amount` FROM `inventory` WHERE `char_id` = " + .@target_charid, .@inv_id, .@inv_item_id, .@inv_amount; if (getarraysize(.@inv_id) > 0) { for (set .@i, 0; .@i < getarraysize(.@inv_id); set .@i, .@i + 1) { dispbottom "Item ID: " + .@inv_item_id[.@i] + ", Amount: " + .@inv_amount[.@i]; } } else { dispbottom "No items found in inventory."; } // Display equipped items dispbottom "Equipped Items of " + .@playerName$ + ":"; query_sql "SELECT `id`, `item_id`, `card1`, `card2`, `card3`, `card4` FROM `equipment` WHERE `char_id` = " + .@target_charid, .@equip_id, .@equip_item_id, .@equip_card1, .@equip_card2, .@equip_card3, .@equip_card4; if (getarraysize(.@equip_id) > 0) { for (set .@i, 0; .@i < getarraysize(.@equip_id); set .@i, .@i + 1) { dispbottom "Item ID: " + .@equip_item_id[.@i] + ", Card 1: " + .@equip_card1[.@i] + ", Card 2: " + .@equip_card2[.@i] + ", Card 3: " + .@equip_card3[.@i] + ", Card 4: " + .@equip_card4[.@i]; } } else { dispbottom "No equipped items found."; } close; }
×
×
  • Create New...