Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/02/17 in all areas

  1. Hello, the best greetings to all of you. Today, the day that had to come. It's a true fact that I can acknowldge now: Metin2United is dead forever. The reason? Probably due to income and players loss. Metin2United was online for almost 6 damn years, which is why I'd like to respect such a huge archievement. So many mad times, so many friends, so many good times. The story is simple. Let's go back in the past for 1,5 years. United gained a new Forum. At that time [SGA]Maiko was active. She was not only a devil *****, but also a rulebending ****. She created her own rules, and applied them whenever she wanted. She left Staff team cause of the following dillema. [GA]Fouado came into the Staff Team. He was there earlier but he got kicked due to his inactivity (according to a friend of mine, since I wasn't there at those times). He already reinstated his position back. He promised everything. Within 2 weeks he got promoted to CoMa rank. His purpose? Developing the Server. Well he did indeed, he only made some simple things on a NPC to make yourself transformed into a Mob. But after 1 week the update was worthless. Fouado remain quiet and he was inactive again. So Maiko left and Fouado was inactive. Brilliant Team. In fact Maiko was jealously because she didnt get CoMa rank, and Fouado did even due his inactive times. 1 Month later. [CoMa]Fisher put Maiko back in his Team as CoMa. Maiko's purpose? Maintaining Support Ticket and overal Team Manager. Only because players begged her to come back, we all had a painful feeling that she left, we didn't want United down back then. But at the other hand we did. But it was not the time to do it. Maiko and Fouado are still in Team. Fouado didn't logged for over 2 months, ignored all messages. Money-grabbing updates were applied to the Servers. It was all about taking the last money from players before shutting down. 3-4 months later Fouado was kicked due to his inactivity. I'll be surprised if he didn't know about his removal. We had now 4 CoMa's and 10+ Gm's on a Server with barely 60 players. Between 1 year and 2 months ago from now, nothing happened much really. It was slowly dieing and it was only a matter of time when United is closing. 1 month ago CoMa Crusader left Staff Team because Belius kicked him (reason unknown). Crusader was a good person to talk with, but if you break your faith with him, he's a real ass. On October 16th, CoMa Fisher left Staff Team because Belius kicked him aswell. Fisher was the only coder United had. He was a good person to talk with if you had any problem. Although he did not response that fast, eventually it will come. Maiko and Belius are the only CoMa's left on the server. Maiko cannot develop anything, Belius barely has knowledge how to maintain his Server. 3 weeks ago they made a foolish choise: Belius put Fouado back with his Team. Fouado promised everything again but he failed. He was inactive untill the end. Maiko keep making the server smile with her little excuses "everything is going to be alright, dont worry, I will make sure of it.". And still she didn't know anything. 1 week ago Belius even mentioned something. Like this: Today the day the server Closed. I am sure Crusader and Fisher have seen it comming. We players did aswell but we didn't know exactly when. When Fouado was back with the Team some players had faith the server will return. But no, it did not. Belius killed his own Database, his forum Database. Almost 6 years of work is deleted. Many memories are stored. I'm fine with United begin down. I made this story because I find it worth to tell about it. There are so many more stories to be told, but I'm not going to put them all on here. I am RabbitRun, I started Metin2United 5 years ago. Barely 3 months later I got scammed (my own fault) and ever since then I never gave any account information or items to ANY player. Not even on other Servers. I restarted again with the unknown player name "Coolboy1". 3 years ago I decided to change my identity. I changed my name to RabbitRun. With time I have gathered my items, my goal was almost succeeded but I did not make it. Once again so many stories are behind. Feel free to ask questions below, in Forum PM, or any related Social Media down my Profile Details. You may also leave a story yourself. It's to those whom are in charge to leave a story themselves. I thank you for reading. Greetings, the only RabbitRun
    1 point
  2. About drops, i can send you this when i finish it (gather drops info drop wiki, creates drops from it): v0.1 v0.2:
    1 point
  3. M2 Download Center Download Here ( Internal ) Are you tired of write [ENTER] in all your text or use 20 says for write a simple text? Me, yes. So I coded a funcion wich solve this problem. The difference between this function and the normal "say" is that this search for the last word of the line, and dont cut this word like the normal "say" do. Add to your questlib.lua function say2(msg) msg_size = string.len(msg) if msg_size > 59 then local i = 59 last_word = nil while last_word == nil and i > 0 do if string.sub(msg,i,i) == " " or string.sub(msg,i,i) == "." or string.sub(msg,i,i) == "," then last_word = i end i = i-1 end if i == 0 then last_word = 59 end say(string.sub(msg,0,last_word)) say2(string.sub(msg,last_word+1)) else say(msg) end end Add to your quest_functions: say2 And now use say2 instead of say in your quests!
    1 point
  4. Hello It's a minor bug but it's important , when u kill the devil tower boss and get ur reward and try to upgrade ur weapon or anything if u press yes and u haee money less then the cost u will lost the reward . so here even if u have no money u will not lost the reward to fix it : open input_main.cpp add : #include "refine.h" // find this if (!item) { ch->ClearRefineMode(); return; } // a new code block const TRefineTable * prt = CRefineManager::instance().GetRefineRecipe(item->GetRefineSet()); if (!prt) { ch->ClearRefineMode(); return; } now search for : if (ch->GetQuestFlag("deviltower_zone.can_refine")) replace the whole condition with this : if (ch->GetQuestFlag("deviltower_zone.can_refine")) { if (ch->GetGold() >= prt->cost) { ch->DoRefine(item, true); ch->SetQuestFlag("deviltower_zone.can_refine", 0); } else ch->ChatPacket(CHAT_TYPE_INFO, LC_TEXT("±¹°ي؟، µ·ہج ؛خء·اد°إ³ھ µ·ہ» °،ء®؟أ¼ِ ¾ّ´آ »َب²ہش´د´ظ")); } sry 4 my english
    1 point
  5. Hello community, we had an outage today because of an failed MySQL update this night. Everything is now back working. Kind regards.
    1 point
  6. You copied my message from another forum..ohh gg xD There is much better: import constInfo if (constInfo.TableSkillButton(1)) == "Enable": if player.GetStatus(player.LEVEL) < (constInfo.TableSkillButton(2)) and self.__IsSkillStat(): skillPlusButton.Show() else: skillPlusButton.Hide() elif (constInfo.TableSkillButton(1)) == "Disable": if self.__IsSkillStat(): skillPlusButton.Show() else: skillPlusButton.Hide() def TableSkillButton(o): i = { 1 : "Enable", # Enable for active function , Disable for dezactivate. 2 : 100} # The maximum level to which button will be displayed if i.has_key(o): return i[o]
    1 point
×
×
  • 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.