Search results

Desolation Mir2 (Med Rate Server)
  1. chimera

    Exp Scroll NPC/Script

    Forgot to take the scroll when exp given, sorry :)
  2. chimera

    Reason why No'one plays mir3

    Topic was? why people don't play mir 3?? Answer is they do but my personal take is that high rate servers taught people to expect to level very fast, some servers gave HUGE stats very fast also, which destroyed the game for the long term/lower rate servers. Greed for stats/levels took over from...
  3. chimera

    Exp Scroll NPC/Script

    Try that... not sure why you have the goto @lvlup in there unless there is another bit of script to follow.
  4. chimera

    Exp Scroll NPC/Script

    GIVEEXP %USERNAME %D1 is the command you need, D1 being the amount of exp.
  5. chimera

    How many mon files can any one client handle?

    3.55 handles mon 1-22 & Dmon1. See this for details
  6. chimera

    3G Item Bundles - DO THEY EXIST?

    envir\questdiary\system\itemscripts\itemevents.txt { #ACT SetItemEvent 61 20 @whatever_it_is_Main [@whatever_it_is_main] #IF checkitem HPSmallBundle 1 #ACT Take HPSmallBundle 1 Give HPPotSmall 6 } In sql item database need to create a line for HPSmallBundle like this: 1234 HPSmallBundle 61...
  7. chimera

    King 0328 Release

    Re: King 0328 Relase There is a worm attached to the first download apparently. And yes I do have PRC language installed so it's not that. Worm entitled W32/sdbot.worm See details here I'm not saying this is dangerous just that it's detected, I'm not a virii expert.
  8. chimera

    Becouse donot run...

    Not my work but works perfectly: #ACT GetRepairCost 0 MOV D0 %P9 MOV P0 %D0 GetRepairCost 1 MOV D1 %P9 MOV P1 %D1 GetRepairCost 3 MOV D2 %P9 MOV P2 %D2 GetRepairCost 4 MOV D3 %P9 MOV P3 %D3 GetRepairCost 5 MOV D4 %P9 MOV P4 %D4 GetRepairCost 6 MOV D5 %P9 MOV P5 %D5 GetRepairCost 7 MOV D6 %P9...
  9. chimera

    3G Item Bundles - DO THEY EXIST?

    you can use a script to unbundle anything with 3g.
  10. chimera

    Maybe...

    It's not the lack of creativity.
  11. chimera

    Zordon Ill Host

    512k is enough if you don't wish to use the server much if at all and the user count is fairly low, otherwise 1gb ram should surfice.
  12. chimera

    Set system language options.

    You are translating things scripts say to user not scripts, just don't give them the whole script :)
  13. chimera

    I search this things

    envir\questdiary\hlscript\userlogin.txt [@UserLogin] { #act eventMsg [Grobal] "<$USERNAME> has logged on" } add whatever checks you like in there, for instance: [@UserLogin] { #if !ISADMIN #act eventMsg [Grobal] "<$USERNAME> has logged on" #IF check [003] 0 #ACT give Gold 50000 set [003] 1 }...
  14. chimera

    I search this things

    #if CHECKFAME 1000 #act sell potions minus money and other things #elseact u cant use this benefit ===================================== #IF HLSCRIPTCMD CHECKPOINT 1000 #ACT whatever you want to do... ============================== [@lvlstats] #ACT HLSCRIPTCMD SERVERTOP ;This Refreshes the...
  15. chimera

    Samurai MIR3

    if you're online do one global announcement repeating every 5 mins saying afk? though i do sympathise :)
  16. chimera

    Samurai MIR3

    Zordon, no offence but in order to avoid the above you must reply to comments, even if it's you'll think about it, otherwise people think being ignored :)
  17. chimera

    Help With NPC

    You would write a whole script for a one-off item? what if it was dropped and lost or broken? Yes it could be done but to my knowledge it would mean an sql table entry and not a flag.
  18. chimera

    Help With NPC

    If I understand you correctly, you wish them to pick one of two quest items and then never to have that option again, the above will do this per character.
  19. chimera

    Help With NPC

    [@Buuy] #IF check [123] 0 checkgold 1000000000 #ACT Take gold 1000000000 Give QuestItem(S) set [123] 1 #SAY checks flag number 123 has not been used, check has enough gold, takes gold, gives item, sets flag to used. you'll have to make sue the flag number is already not being used for...