can I do this with lua.

  • jenn4
    15th Aug 2011 Member 0 Permalink
    Can I do lua script what generates spark at three points when spark is getten to another point. Or can I replace wifi whit lua
  • Ace
    15th Aug 2011 Member 0 Permalink
    Yes, I think you really should learn lua before asking a question like this though.
  • jenn4
    15th Aug 2011 Member 0 Permalink
    Yea I know, but I dont have motivation to do that first I need to make your game working. my mod has so many problems to fix that I dont have time to learn lua.
  • lcz20
    16th Aug 2011 Member 0 Permalink
    lua is simple~
    I think,you want to "script what generates spark at three points when spark is getten to another point.",you must use tpt.register_step
    Register a function to be run on every frame

    the function may like this
    function tpt.ck()
    if tpt.get_property("type",x,y)="sprk" then
    tpt.create(x,y,"sprk")--where to create spark
    end
    end
  • jenn4
    16th Aug 2011 Member 0 Permalink
    thanks now I can do my display easily ready.
  • jenn4
    16th Aug 2011 Member 0 Permalink
    the function may like this
    function tpt.ck()
    if tpt.get_property
    ("type",x,y)="sprk" then
    tpt.create(x,y,"sprk")--where to
    create spark
    end
    end

    this script wont work can you tell me correct.
  • mniip
    16th Aug 2011 Developer 0 Permalink
    Did u just copypasted it into console?
  • jenn4
    16th Aug 2011 Member 0 Permalink
    No, I changed coordinates.
  • mniip
    16th Aug 2011 Developer 0 Permalink
    Have u done it in file then used dofile?
    Have u registered step function?

    Edit: wait lcz is wrong:
    if tpt.get_property("type",x,y)==15 then
  • jenn4
    16th Aug 2011 Member 0 Permalink
    file, not.