Search results

Desolation Mir2 (Med Rate Server)
  1. chimera

    server status

    Ditto but just because it dies for a few doesn't mean it dies for everyone :)
  2. chimera

    Chimera

    Gone to Greece - cya later :)
  3. chimera

    Chimera

    Thank you ..... *goes back to bed* ;)
  4. chimera

    Help asap please.

    Call your ISP and tell them. I'm assuming it's not one individual IP address but an ever-changing one. Get your ISP to change your IP address or trace them, they can do it a lot easier than you.
  5. chimera

    firewall report

    If I can get this address then so can anyone else tbh and who said it's the home address? usually if you do an IP trace it's a business or IP's server address. What I am more concerned about is that the initial question has not been altered, but then maybe it's not been seen by Dataforce or any...
  6. chimera

    Help asap please.

    by attempt you mean firewall has blocked attempt...ie it's doing its job, nothing to worry about :)
  7. chimera

    firewall report

    I never said that hellcaster..... I posted it because if it's something harmless and other people get the same firewall message they will know the answer :)
  8. chimera

    scripted recall group

    #ACT Mov A1 %USERMAP Mov A2 %USERx Mov A3 %USERY GroupMove "%A1,%A2,%A3,2" %username now this should recall all users in group to within 2 paces of the map coords of the user. BUT it just random recalls all members of group, including the %user to the map number the %user is on. Anyone any...
  9. chimera

    Tax deduction %

    Yes there are loop holes that people legally use to reduce their amount of taxable income, businesses do it all the time. But you often need an accountant to help you with this, sometimes its's worth it, depends how much per annum you're talking about in gross income :)
  10. chimera

    firewall report

    Let me make this clear, I am not accusing Dataforce of anything, I am just curious if he can explain this: :) Domain name: soren.co.uk Registrant: Dataforce Registrant type: UK Individual Registrant's address: Edited by BH A computer at soren.co.uk...
  11. chimera

    Connection probs

    Only if you don't have the correct IP's/setup in logingate :)
  12. chimera

    MirGuideBook

    oops lol thx for correction :)
  13. chimera

    Tax deduction %

    There are other tax-free allowances like superannuation (pension payments). It's very difficult to work out your own net pay accurately month to month without the correct free pay and tax tables. Then there is national insurance contributions. To approximate use what Atom said: if your tax...
  14. chimera

    MirGuideBook

    [@ChoBoReceiveQuest_Helper] #CALL [System\MirGuideBook.txt] @Mir3GuideBook Should be in mud3/envir/market_def/00Default.txt in order for it to activate it. If that doesn't fix it make sure MirGuideBook.txt is in envir/questdiary/system and looks like this.... ;;不要删掉此行 [@Mir3GuideBook] { #IF...
  15. chimera

    D menu

    Its MirGuideBook.txt envir/questdiary/system/
  16. chimera

    Gen files

    copy existing gen file, rename it and replace contents.
  17. chimera

    Quest Npc

    a flag is a simple yes/no check.... flag = 0 is no, flag =1 is yes.....ie no i havn't done this yet, 1=I've done this. If you want a quest to be non-repeatable you need to use flags, if it's repeatable you don't. You certainly don't need flags for accumulation of kills, I would use sql for...
  18. chimera

    MonGen Command

    If you want them to respawn do a delaygoto at the end of the mob gens and sned the script back to the beginning...... Example: [@mongennow] #ACT mongenp "0,150,150,100" Supahen 100 delaygoto [local] 600 @mongennow
  19. chimera

    Armour Dye

    assuming you are looking at this #IF HLSCRIPTCMD CHECKPOINT 10 #ACT HLSCRIPTCMD SETPOINT - 10 wearcolor %D3 %D1 %D2 Then you you a random colour armour would be: [@colourarmour] #ACT movr D1 255 movr D2 255 movr D3 255 goto @colourarmour2 [@colourarmour2] #IF #ACT wearcolour %D1...
  20. chimera

    Armour Dye

    use #ACT movr D1 255 movr D2 255 movr D3 255 the use that script to dye %D1 %D2 %D3 That will give you 3 random number colours :)