Search results

Play Now
  1. Gezza

    Solved Scripting help

    Use the mapquest way using variables.
  2. Gezza

    Korea Mir X client download (worth downloading for content?)

    Downloaded just to see and they do use same formats as are mirs aka wil/wix. Edit: although i cant seem to view them with a data viewer ;/
  3. Gezza

    Korea Mir X client download (worth downloading for content?)

    Use a download manager and you can get it in about 20 mins, doubt its even worth it though as i guess the data will be in a different format.
  4. Gezza

    just starting out

    Look in the Envir\Market_def folder.
  5. Gezza

    just starting out

    Scripting isn't programming ;/ however its very easy to do, your best of just looking at current scripts and go from there also look at the npc commands and what not.
  6. Gezza

    New Years Parties

    Pretty much same for me as the misses n baby are ill so cancelled the babysitters but brought a crate of stella and a bottle of vodka so gonna play on black ops zombies, how fun!
  7. Gezza

    Hard drive gone?

    Have you not got a spare hard drive ? and put a os on it then connect your not working harddrive as a slave and see if it shows up in any form then you'd be able to recover your stuff. I'd never pay hundreds to recover lost data etc if mapas prices are correct.
  8. Gezza

    Hard drive gone?

    Dose the drive show up at all in windows? i had a problem with one of my old hard drives which it changed to a raw file, i did make a thread on here about it and im sure i posted the programe i used to get all my stuff back from it. Edit : heres my post...
  9. Gezza

    Ho Ho Ho!

    Yes looking forward to my pen and calender :P Thanks and merry xmas.
  10. Gezza

    Browser tool bars.

    I had a good look before replying and never saw that lol. Ta.
  11. Gezza

    Browser tool bars.

    Thats firefox... not chrome. ---------- Post added at 09:52 PM ---------- Previous post was at 09:51 PM ---------- correct.
  12. Gezza

    Browser tool bars.

    Not that im aware of.
  13. Gezza

    Browser tool bars.

    Yeah but it dose it automatic after closing chrome.
  14. Gezza

    Browser tool bars.

    The only one i use is click n clean which cleans the internet history when chome closes and clears the cache etc.
  15. Gezza

    Release Few weapons.

    Another weapon if anyone wants not sure what it looks like ingame. http://www.megaupload.com/?d=JH4DJAD3
  16. Gezza

    Legend of Mir 2 setup guides (Videos included)

    Thread may as well be unstickyed as looks as though mask has removed all the videos.
  17. Gezza

    [2.3] Scripting check

    You can always check ingame if the script is working or not which is the best way and only way to be sure a script works correctly as everyone makes mistakes now and again, so to say theres no way of checking is a bit lame.
  18. Gezza

    Release New Interface (2.6+)

    Are you the bloke who started a mir 2 and mir 3 project from scratch which neither got finished ? and a name change im guessing ? anyways good luck if so, but why not finish the projects you started from day one? your most likly get bored of this project when you get to a certain point as the...
  19. Gezza

    Other Scripting - Flags Help

    [001] represents the flag number, that was just an example you can use anything up to 999. The 1 after it means the flag is turned on and a 0 after would turn the flag off. Heres an example of what your looking for... npc 1: [@main] Please talk to npc2 in mudwall but accept the quest first.\...
  20. Gezza

    Other Scripting - Flags Help

    Just look in older scripts it's fairly easy. [@main] #if check [001] #say flag 001 is on. #elsesay flag 001 is off. ======================= [@main] <turn on flag 001/@qq>\ \ <turn off flag 001/@qqw> [@qq] #act set [001] 1 close [@qqw] #act set [001] 0 close