Jump to content

MadCat

Members
  • Posts

    195
  • Joined

  • Last visited

Posts posted by MadCat

  1. Thanks for the help Panther

     

    Gamecreator i do look for things on this website, i believe i have stated before that i am not a coder and dont understand it much

    Do you make a habit of doing this type of thing of talling people "there's a thread on that" or do you have something against someone asking for help?

     

    A few things about me:

    1. I am dislexic

    2. Code is a language i don't really understand

    3. I also have a conition called irlen dyslexia wich makes reading and writing very hard

    4. It's a lot ezeyer for someone like me to just ask for help than get frustrated with looking things up

  2. Hi All

     

    Having trouble with the change map coding, followed the tuts but when it goes to change the map it closes

     

    Help?

     

    What and where dose things go, like map name?

     

     

    --[[

    This script will act as a trigger to change the current map.

    Place this at the end of your map to make the player progress

    to the next level.

    ]]--

     

    Script.mapname=""--string "Map Name"

     

    function Script:Start()

    self.enabled=true

    end

     

    function Script:Collision(entity, position, normal, speed)

    changemapname=self.mapname

    end

     

    function Script:Enable()--in

    if self.enabled==false then

    self.enabled=true

    self:CallOutputs("Enable")

    end

    end

     

    function Script:Disable()--in

    if self.enabled then

    self.enabled=false

    self:CallOutputs("Disable")

    end

    end

×
×
  • Create New...