Jump to content

Rodrigo152

Inactive Member
  • Posts

    33
  • Joined

  • Last visited

  • Feedback

    0%

About Rodrigo152

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Rodrigo152's Achievements

Enthusiast

Enthusiast (6/16)

  • Collaborator Rare
  • Dedicated
  • Reacting Well
  • One Year In
  • First Post

Recent Badges

6

Reputation

  1. Thank you, that was exactly what I needed. Problem solved.
  2. I added the system and everything seems fine, I installed Clip Mask, but the window is still blank like this. Could someone help me?
  3. Good afternoon everyone, how are you? I'm looking for a 5v5 Champions League (Ranked) system. If anyone has this system, could you please share it?
  4. Good afternoon everyone, I have a question: is there a converter that converts GR2 files from version 2.9 to 2.4?
  5. I'm getting this error in syserr and I can't solve it, can anyone help me? 0816 18:55:06808 :: networkModule.py(line:200) SetSelectCharacterPhase system.py(line:177) __hybrid_import system.py(line:142) _process_result introSelect.py(line:28) <module> system.py(line:177) __hybrid_import system.py(line:142) _process_result interfaceModule.py(line:24) <module> system.py(line:177) __hybrid_import system.py(line:142) _process_result uilootingsystem.py(line:466) <module> uilootingsystem.py(line:1044) LootingSystem networkModule.SetSelectCharacterPhase - <type 'exceptions.AttributeError'>:'module' object has no attribute '__BL_MOUSE_WHEEL_TOP_WINDOW__' 0816 18:55:06808 :: ============================================================================================================ 0816 18:55:06808 :: Abort!!!!
  6. Good afternoon everyone. Next, I'm having a problem with the gem drops in Metin. What's happening is that it's not dropping +4 gems, and I don't know where to get them. I've looked everywhere and can't find them. Another question is about the Skill Forgetting Book. Since it's random, I'd like to know where I can get it, too, since it's dropping three types of Skill Forgetting Books. I've attached a video showing the jewelry section. VIDEO
  7. where to find this CSHIELD?
  8. Thank you very much, it helped me a lot.
  9. Good afternoon everyone, I wanted to know where I can adjust this "Item Store" button that is in yellow so that when the person clicks on it, the cash store opens, my cash store is opened through the little ball in the lower left corner.
  10. Guys, I have a question about the banner system I have implemented on my server, everything is working, the only thing that isn't working is the absorption bonus. How do I adjust this bonus? Like, the banner shows 10% absorption, but when it's equipped, this bonus isn't working. I know there are a lot of topics about banners, but I haven't found any that have the same problem as mine.
  11. Good afternoon everyone, can anyone help me with this problem, I would like to know why this quest is not working, I open it ingame and nothing happens. quest point_exchange begin state start begin when 20082.chat."Consult Kill Points" begin syschat("Checking your kill points...") -- Querying the number of points in the ranking_de_kills column localresult_kills = mysql_query("SELECT ranking_de_kills FROM player WHERE id = "..pc.get_player_id()) ifresult_kills then local Pontos_kills = tonumber(resultado_kills[1]) or 0 syschat("You have " .. kill_points .. " kill points.") else syschat("Error querying kill points.") end end end end
  12. Good afternoon everyone. I'm facing a problem here and I wanted some help. I cleaned the entire database, but now when I create a new account, a nameless character with nothing appears and it is not possible to delete him in any way. could anyone help me.
  13. Good afternoon guys, I have this quest for achievement points, where you exchange points for a certain item, but it's not working. Can someone help me quest point_change begin state start begin when 20082.chat."Exchange Points" with pc.getqf("exchange_access") == 1 begin -- Simulating that there is a mysql_query function that queries the database. local result_achievement = mysql_query("SELECT ranking_of_boss FROM player WHERE id = "..pc.get_player_id()) local points_achievement = result_achievement[1] -- Assuming that the result is a table where the first element is the desired value. local result_kills = mysql_query("SELECT ranking_kills FROM player WHERE id = "..pc.get_player_id()) local points_kills = result_kills[1] say("Welcome to the points exchange system!") say("You can exchange your achievement points and kills for valuable items here.") local s = select("Exchange achievement points", "Exchange kill points", "Cancel") if s == 1 then say("You have " .. conquest_points .. " conquest points.") say("Every 10 points can be exchanged for 1 Big Red Potion.") if achievement_points >= 10 then local choice = select("Exchange 10 points for 1 Potion", "Cancel") if choice == 1 then -- Assuming the item can be added directly to the player's inventory. pc.give_item2("ITEM_ID_POT_GREEN", 1) -- Updating the database directly mysql_query("UPDATE player SET ranking_of_boss = ranking_of_boss - 10 WHERE id = "..pc.get_player_id()) say("Exchange successful!") end else else say("You don't have enough points.") end else elseif s == 2 then say("You have " .. points_kills .. " kill points.") say("Every 15 points can be exchanged for 1 War Armor.") if points_kills >= 15 then local choice = select("Exchange 15 points for 1 Armor", "Cancel") if choice == 1 then pc.give_item2("ITEM_ID_ARMADURA_GUERRA", 1) mysql_query("UPDATE player SET ranking_of_kills = ranking_of_kills - 15 WHERE id = "..pc.get_player_id()) say("Exchange successful!") end else else say("You don't have enough points.") end end end end end
  14. Good afternoon guys, I have a question, how do I put those 30-day exp, gold bonuses that are fixed in the top right corner? Like I would like to put a package in place for people to buy and activate these bonuses for 30 days.
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.