Jump to content

Akbare-2nd

Members
  • Posts

    59
  • Joined

  • Last visited

Everything posted by Akbare-2nd

  1. This is related to the diff client, if you have access to it you can choose to turn off the diff client.
  2. try - pointshop hunt_shop -1,##HUNT_Q_POINTS,6232:30,50005:80,12922:100,510108:200,50000:200,12240:250,12622:3000,60016:1000,7776:50
  3. waalaikumusalam welcomeback @madtoyz
  4. saya ikut hadir dan memantau hahaha
  5. Does anyone know how to make unidentified items sellable through vending? I tried searching and only found in vending.cpp but modifying and deleting doesn't make it work // filter out invalid items i = 0; int64 total = 0; for( j = 0; j < count; j++ ) { short index = *(uint16*)(data + 8*j + 0); short amount = *(uint16*)(data + 8*j + 2); unsigned int value = *(uint32*)(data + 8*j + 4); index -= 2; // offset adjustment (client says that the first cart position is 2) if( index < 0 || index >= MAX_CART // invalid position || pc_cartitem_amount(&sd, index, amount) < 0 // invalid item or insufficient quantity //NOTE: official server does not do any of the following checks! || !sd.cart.u.items_cart[index].identify // unidentified item || sd.cart.u.items_cart[index].attribute == 1 // broken item || sd.cart.u.items_cart[index].expire_time // It should not be in the cart but just in case || (sd.cart.u.items_cart[index].bound && !pc_can_give_bounded_items(&sd)) // can't trade account bound items and has no permission || !itemdb_cantrade(&sd.cart.u.items_cart[index], pc_get_group_level(&sd), pc_get_group_level(&sd)) ) // untradeable item continue; sd.vending[i].index = index; sd.vending[i].amount = amount; sd.vending[i].value = min(value, (unsigned int)battle_config.vending_max_value); total += static_cast<int64>(sd.vending[i].value) * amount; i++; // item successfully added } thank you for helping
  6. I'm using custom font verdana I want the basic info to look small like this, what should I patch to nemo? I've tried some charsets but it doesn't work well with custom font verdana I want it to be like this when using custom fonts verdana thank you for those who are willing to help hexed : 2022-04-06
  7. maybe you can share clif.cpp in full
  8. for connection problems you just need to attention mysql is running properly mysql user and password are the same between the server and your mysql for login user and server password leave the default for a while
  9. try to find the part in clif.cpp at the end add the code there line range 10243
  10. I can't get it to show up, is there anything else that needs to be edited?
  11. maybe by adding a specialeffect in skill.cpp
  12. Hello, can anyone help me with this script in item_db? I want the target that is hit by the skill to get a special effect. bonus4 bAutoSpellOnSkill,"CG_ARROWVULCAN","CG_TAROTCARD",5,60; how to add specialeffect 812; in the script? I tried to use autobonus but again I'm not very familiar with this, and it appears not on the target but on itself autobonus3 "{ bonus3 bAutoSpell,CG_TAROTCARD,5,600; }",10000,10000,"CG_ARROWVULCAN","{ specialeffect2 812; }"; thank you for helping
  13. maybe create card file sprt and act drop
  14. I found an error and don't understand how to fix it, maybe you can help thanks script error on npc/npc/system/item_equip_check.c line 6 parse_simpleexpr: unmatched ')' 1 : { 2 : mes "[Item Search]"; 3 : mes "Enter the name of the player you want to search:"; 4 : input .@player_name$; 5 : * 6 : if (!check_player_exists'('.@player_name$)) { 7 : mes "Player not found."; 8 : close; 9 : }
  15. Thanks, it's a little open for me to make modifications and fit what I want
  16. before, I say thank you for those who want to help make a script, I want to check the card that has been installed on an equipment. because this is an npc check so maybe it's better if he searches in the sql database like : inventory cart_inventory guild_storage Can someone make me a script for this? STEP 1 Input: char name input: item card id STEP 2 result : character name or account id weapon name card name attached to : card0: card1: card2: card3: example result : character name: shinju [2000010] weapon name: jur[3] card name: andre card card list : card0 : andre card <---my target card1 : mummy card card2 : Santa Poring Card card3 : I use this script as a base or maybe someone knows a query for this? because I don't really understand thanks in advance
  17. finally, I thank you for sharing with us, I will ocba first.
  18. quick editing you only need @reloadscript as long as the main config script is running check the main config in each folder whether you use pre-re or re folders npc/pre-re/scripts_main.conf npc/re/scripts_main.conf // ------------------- Custom Script Files ---------------------- // - Your NPCs go in this file! import: npc/scripts_custom.conf
  19. input ni mysql use phpmyadmin or other
  20. I get an error when installing this script Can anyone help? I think the problem in here OnNPCKillEvent: // Logic to detect when a MvP is killed if (getmonsterinfo(killedrid, MOB_MVPEXP) > 0) { .@selectIfKillExistQuery$ = "SELECT char_id, mob_id, kills FROM mvpladder WHERE char_id = '" + getcharid(0) + "' AND mob_id = '" + killedrid + "';"; if (query_sql(.@selectIfKillExistQuery$) > 0) { // Exist a kill of that MVP so +1 to kill count .@updateLadderQuery$ = "UPDATE mvpladder SET kills = kills + 1 WHERE char_id = '" + getcharid(0) + "' AND mob_id = '" + killedrid + "'"; } else { // Create a new kill of specific MVP //.@updateLadderQuery$ = "INSERT INTO mvpladder (char_id, mob_id, kills) VALUES ('" + getcharid(0) + "','" + killedrid + "','1');"; .@updateLadderQuery$ = "INSERT INTO mvpladder (`char_id` , `mob_id` , `kills`) VALUES ('" + getcharid(0) + "','" + killedrid + "','1');"; } query_sql(.@updateLadderQuery$); } end; } fullscript : mvp_ladder.c
  21. Actually, it doesn't matter how many custom database additions there are, of course it will be very useful for anyone who uses it, the usual one is probably the addition/creation of event banners on the front page easily, and for the blog feature it is very good to write how the game/server is running.
×
×
  • Create New...