Search results

Desolation Mir2 (Med Rate Server)
  1. Ardbeg

    Other Can't open SQL Server Manager 2005

    What version of windows are you using and what exactly is this error ? Are you saying the program just won't run when you click it's shortcut ?
  2. Ardbeg

    Ruby STDITEMS ID order questions

    This should give you what you need. https://mega.co.nz/#!ol5TQajS!mGTWO-d1wUL-5y2LCRjXwGllxykyZhgyrW_P87UEYD4 Then study this thread for what to do to bring your files up to date with the exes. http://www.lomcn.org/forum/showthread.php?77870-RubyM2-Update-20-10-2012
  3. Ardbeg

    Ruby M2Server Help

    Are you able to go into your MS SQL prog and find LOM2Res / STDITEMS then see data listed ?
  4. Ardbeg

    Ruby STDITEMS ID order questions

    If you don't have that column anywhere in the table, you're probably using an earlier version of the files. You would be getting errors if you have the latest exes and earlier tables.
  5. Ardbeg

    Ruby STDITEMS ID order questions

    It's in the Item table, second to last field.
  6. Ardbeg

    Ruby M2Server Help

    Check my reply in this thread, I assume it's a similar issue. http://www.lomcn.org/forum/showthread.php?83119-help!-M2-Exception-Gate-not-ready-127-0-0-1-way
  7. Ardbeg

    Ruby STDITEMS ID order questions

    As Ice' says, item names and mob are limited to 14 characters. You can use the VIEWNAME field in the item database to have longer words and even spaces. However, any scripts that test for items, take or give items must all use the actual NAME field not VIEWNAME.
  8. Ardbeg

    Other Are all the Mir source code files only able to be coded in Delphi 6/7 or..

    There is a full open source svn available on the C# files. Download Tortoise SVN if you don't have it and then create a new directory on your drive. This new directory becomes your working copy and updatable via http://cmir2.googlecode.com/svn/trunk Refer to this section for the project info...
  9. Ardbeg

    Other Are all the Mir source code files only able to be coded in Delphi 6/7 or..

    C# is the current choice for coding the game. Very effective it is too. I would like to use Delphi pascal as I've used it for years and know my way around it more than C# but much of the structure is the same.
  10. Ardbeg

    Other Are all the Mir source code files only able to be coded in Delphi 6/7 or..

    Not seen any use that new version. The Delphi sources all seem to use third party components so I'm not sure how they will cope with a newer core program. Is it any good ?
  11. Ardbeg

    Other the game tells me they cant @s_repair that item (any item)

    Use the ORDER BY ID option and scroll to 160. It's either the ID or NAME field that is causing the problem. Refer here for ORDER BY ID http://www.lomcn.org/forum/showthread.php?83026-Problem-25-Items-Shop-Limit-Where-to-find-certain-files&p=920718&viewfull=1#post920718 This will help you find...
  12. Ardbeg

    Other the game tells me they cant @s_repair that item (any item)

    The npc commands are bugged for special repair on items, doesn't matter how you do it. Weapons special repair works. The Repair Hammer and Sewing Kit items work so you can offer these as drop items or even shop items if you want special repair of accessories or armour.
  13. Ardbeg

    Ruby Problem: 25 Items Shop Limit, Where to find certain files

    Can't remember if the 25 number was fixed or not. Easiest way round it is to have another NPC.
  14. Ardbeg

    Mir Forever

    Haha, good spot tai ! I read it several times and never saw it.
  15. Ardbeg

    Mir Forever

    I think the site shared the same capacity as his server. Unless he took it down in anger or frustration at the cheats who compromised the server. Who could blame him ? Either way, we'll need Eternal to confirm or deny this. Always the few that spoil it for the many !
  16. Ardbeg

    Ruby Problem: 25 Items Shop Limit, Where to find certain files

    Learning how to use SQL and the studio is a lengthy business even though the commands themselves aren't that difficult. If you right click over an open table, you'll get a menu open and one option is Pane. Selecting this and then selecting SQL opens the SQL query used to display the table above...
  17. Ardbeg

    Ruby Problem: 25 Items Shop Limit, Where to find certain files

    Ok, I just created this code that you can use as an alternate to the inbuilt lottery system. First off, a few things to know. There's a text file called QFunction-0.txt that lives in M2Server/Envir/Market_Def. Changes to this file can be made on a live server and a GM Char can use...
  18. Ardbeg

    Ruby Problem: 25 Items Shop Limit, Where to find certain files

    They're all hard coded I'm afraid. That said, you could create your own lottery tickets instead.
  19. Ardbeg

    Ruby [help request] - [offline use]

    What is in Korean, the text on the windows ? Use the Prguse files I uploaded. They replace the Korean versions.
  20. Ardbeg

    Ruby [help request] - [offline use]

    The mdb files aren't used in Ruby. You need to go into your SQL studio and open the Database. Inside that, look for LOM2Res. LOM2Res contains the data for mobs, items, and magic. Any link to drops in SQL isn't used. If you work on your tables directly into SQL tables, be very careful not to...