Results 1 to 10 of 10

Thread: changing classic tileset into era tileset problem

  1. #1
    Veteran Wolverine8888's Avatar
    Join Date
    Jun 2013
    Location
    Philippines
    Posts
    315

    changing classic tileset into era tileset problem

    guys i have a problem when i followed this script in changing tileset "if (created) {
    removetiledefs;
    addtiledef tileset_era01-summer.png,,1,0,0;
    } "
    There is a error "unexpected format addtiledef string,string,real"
    what is the meaning and how can i solve this problem
    Need Help? or Questions?
    Just Ask me and I will give the answer right away
    Want to skype with me? wolverine_graal
    ~Gani Artist

  2. #2
    Big Cheese 3.X's Avatar
    Join Date
    Jun 2013
    Location
    Texas
    Posts
    1,638
    First do you have the era development kit? If you do try the script again but delet the FileNameCache and dont delete anything in the npc when doing so.
    Live your life, enjoy it while it lasts. Don't give it up when you are down, you are a light like the stars in a sky.

  3. #3
    Street Boss
    Join Date
    Jul 2013
    Location
    Lebanon
    Posts
    651
    When I got my era tilset it wasn't if(created) {
    I'm not sure if the problem is from that but try to put instead of if (created){ ///CLIENTSIDE
    Silence Has UnderTaken Us Please!

  4. #4
    Veteran Wolverine8888's Avatar
    Join Date
    Jun 2013
    Location
    Philippines
    Posts
    315
    Quote Originally Posted by ROCK View Post
    When I got my era tilset it wasn't if(created) {
    I'm not sure if the problem is from that but try to put instead of if (created){ ///CLIENTSIDE
    I still try it but the error says "expected format addtiledef string,string,real;
    Need Help? or Questions?
    Just Ask me and I will give the answer right away
    Want to skype with me? wolverine_graal
    ~Gani Artist

  5. #5
    Veteran Wolverine8888's Avatar
    Join Date
    Jun 2013
    Location
    Philippines
    Posts
    315
    Quote Originally Posted by 3.X View Post
    First do you have the era development kit? If you do try the script again but delet the FileNameCache and dont delete anything in the npc when doing so.
    Nothing happens its still error
    Need Help? or Questions?
    Just Ask me and I will give the answer right away
    Want to skype with me? wolverine_graal
    ~Gani Artist

  6. #6
    Big Cheese 3.X's Avatar
    Join Date
    Jun 2013
    Location
    Texas
    Posts
    1,638
    Just keep trying other guides thats how i got mine to finally work
    Live your life, enjoy it while it lasts. Don't give it up when you are down, you are a light like the stars in a sky.

  7. #7
    Try
    removetiledefs;
    addtiledef tileset_era01-summer-offline.png,,0

    Or whatever tileset your using

  8. #8
    El Bacon Hombre Police Commissioner
    Join Date
    Jun 2013
    Location
    United States
    Posts
    247
    Quote Originally Posted by Wolverine8888 View Post
    guys i have a problem when i followed this script in changing tileset "if (created) {
    removetiledefs;
    addtiledef tileset_era01-summer.png,,1,0,0;
    } "
    There is a error "unexpected format addtiledef string,string,real"
    what is the meaning and how can i solve this problem
    All this means is that you have too many parameters in your function.
    Try using this instead:
    PHP Code:
    if (created) {
        
    removetiledefs;
        
    addtiledef tileset_era01-summer.png,,1;

    [email protected]
    *Stefan: You steal my cookies?

  9. #9
    What I was trying to get at

  10. #10
    Veteran Wolverine8888's Avatar
    Join Date
    Jun 2013
    Location
    Philippines
    Posts
    315
    Quote Originally Posted by BboyEatsbacon View Post
    All this means is that you have too many parameters in your function.
    Try using this instead:
    PHP Code:
    if (created) {
        
    removetiledefs;
        
    addtiledef tileset_era01-summer.png,,1;



    Dude it works!!!thank you now i can make my own era levels....
    Need Help? or Questions?
    Just Ask me and I will give the answer right away
    Want to skype with me? wolverine_graal
    ~Gani Artist

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •