Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Agoraphobic

Members
  • Posts

    1045
  • Joined

  • Last visited

    Never

Posts posted by Agoraphobic

  1. To answer Marsh;
    People looking at me or being in close proximity causes my body to keep dumping adrenaline and I get insanely paranoid. I can't function (causes me to go into a panic attack(s)), followed by psychogenic seizures (ranging in length from a minute to 15 mins). Really bad days I have hallucinations and hear things that aren't there. Meds, therapy,etc didn't work and it just got to the point where I don't leave the house and do all my shopping, etc online.
  2. Hit F1, go the editor tab, then edit npcs to create a npc.

    To add a npc to your map hit F1, go to the Editor tab, hit edit map button,  then click properties, then Npc tab.

    http://www.touchofdeathforums.com/smf/index.php?topic=38183.0
    More detailed tutorial on npcs, although no screenshots. I hope it helps.
  3. If you restart the computer, when it shows the black screen hit F8 ,and find where it says run in safe mode, the computer will then boot up in safe mode. You can then create another account or give your account admin. Then simply save and restart.

    If you don't know the admin's password or do this method, then no you can't.
  4. I simply added it to my main and reloaded the scripts. Any scripts you add you must reload them to the server. Then I go to the map editor and placed down scripted tile with script 0.
    In my Data.ini for the server folder scripts are set to 1.
    Please post your entire scripted tile section.

    This is my main, all 3 cases work perfectly.
    ```
    ' Executes when a player steps onto a scripted tile.
    Sub ScriptedTile(Index, Script)
    Select Case Script
    Case 0
    Call PlayerMsg(Index, "You stare off into the distance and see

    moutains on the horizon. You realize your journey has only begun.", WHITE)
    Call PlaySound(index, "main.wav")
    Exit Sub             

    Case 1
    Call PlaySound(index, "sword.wav")
    exit sub

    Case 2
    Call PlayerMsg(index, GetPlayerName(index) & " My script works!!", 12)
    Exit Sub

    Case Else
    Call PlayerMsg(Index, "No tile script found. Please contact an admin to solve this

    problem.", WHITE)
    Exit Sub

    End Select

    End Sub
    ```
×
×
  • Create New...