NPC Dialogue | Farming RPG Tutorial: GMS2 [P21]

Поделиться
HTML-код
  • Опубликовано: 30 дек 2024

Комментарии • 138

  • @danielfoutz
    @danielfoutz 3 года назад +34

    In GMS2.3+ there are a few things to be aware of. One is that in defining arguments for scripts (functions) you don't have to manually type in arg[0] = ... etc. Just do function create_textbox(_text,_speakers){} You may notice that I added a "_" to text and speakers. This is because we aren't abstracting them to arguments so otherwise we would be writing text = text later, which doesn't make sense. To set the text variable in tbox to the passed argument, we must give the argument a different name.
    Also, we specifically can't use anything.name anymore. .name is a built in term used by the new sequence system, so it's best practice not to call anything "name" anywhere in our code. Instead use speaker_name or _name or something.

    • @cody7689
      @cody7689 3 года назад +1

      this was SO helpful thank you so much!!! i was wondering why i was getting errors! this tutorial series is fantastic, but unfortunately there are some parts that need to be tweaked for the newer versions of GM. thank you so much for adding this, you're a total lifesaver!

    • @azukar8
      @azukar8 2 года назад +2

      thanks so much! I noticed a .name in code turn red instead of blue; luckily someone else had solved the problem already and saved me time!

    • @lilpumpupthejam9302
      @lilpumpupthejam9302 Год назад +1

      @@cody7689 gamemaker needs to stop changing their code. that is why amazing programmers like her have stopped doing the tutorials

    • @cody7689
      @cody7689 Год назад +1

      @@lilpumpupthejam9302 I KNOW!! it's so frustrating, esp for ppl who are just starting out 😭

    • @lilpumpupthejam9302
      @lilpumpupthejam9302 Год назад +1

      @@cody7689 let gamemaker know your frustrations. they are changing the code for the worse. this build that she is working on was the only stable build of GMS2 I've worked on

  • @invntiv
    @invntiv 6 лет назад +28

    YES! So glad you are continuing this. Thanks so much

  • @v_vex2552
    @v_vex2552 6 лет назад +4

    This is why I love coming to you for help on GMS2. You're VERY helpful, easy to follow, and you're still uploading. I'm glad you're still making videos! Most of the other GMS2 content creators have gone dark on RUclips. Here's to many more videos!

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +3

      Thank you! Yes, I've been spending a bit of time working on some personal projects and may not be updating as frequently, but I am definitely not done with this series and still want to make a lot more videos :)

    • @jmebee7517
      @jmebee7517 5 лет назад +1

      @@FriendlyCosmonaut that's wonderful to hear! best of luck on your personal projects. I know I'll be checking in to see when this is updated along with any other tutorials you are putting up. Thank you!

  • @Kagimine
    @Kagimine 6 лет назад +2

    just found your account and im soooooo thankful!!!! ive been searching for tutorials for days and i managed to stumble across yours. theyre exactly what i need!! thank u so much

  • @jmebee7517
    @jmebee7517 6 лет назад +2

    I love your videos! They are an absolute life changer. I love the way you teach, informative but at a really nice pace. Please continue making them when you are able. *All the support*

  • @philclerc9654
    @philclerc9654 6 лет назад +5

    Now that I'm caught up on the series, I finally understand how exciting it is when you post a new video! This is the only tutorial series that makes it easy to customize if I want to make changes. After trying to advance my game based on several other tutorials, I've decided to just wait until you post more videos. Your clarity and efficiency is unmatched. Thanks Friendly Cosmonaut! I'll be on Patreon as long as you keep posting.

  • @8ladex
    @8ladex 6 лет назад

    Your tutorials are the best! I really like the speed, many other tutorials on yt are boring because they progress way too slow. I hope this series never ends

  • @ghostheartscripts7873
    @ghostheartscripts7873 6 лет назад +3

    Your tutorials have helped me a lot. I'm waiting for more!

  • @kimiwabakka5231
    @kimiwabakka5231 6 лет назад +6

    You should be getting a lot more attention then right now, most people barely explain how to do it, they just write it, show it and then tells why it works, its like i dont want to know why it works, i want to know how it works and when/where to put it in

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +3

      Thanks so much, this is definitely my goal when I'm making tutorials!

  • @slanew
    @slanew 6 лет назад +2

    Thanks very much for your vids FC! I've learned a lot from you and I always enjoy the neat ways you present your code and make solutions succinct.

  • @wigglebot765
    @wigglebot765 5 лет назад

    I'm pretty sure this is your most helpful video I've ever watched. Thanks.

  • @Valkyrion19
    @Valkyrion19 6 лет назад

    I already had a scrolling text system working but watching your videos has helped me simplify it. Thanks a bunch! I'd love to see you create a scrolling text system that allows the player to make a choice during the dialouge that changes the flow of what is said.

  • @OhBonezz
    @OhBonezz 6 лет назад +1

    This is still a amazing series you should definitely keep this going!

    • @micahgmiranda
      @micahgmiranda 6 лет назад

      I know right. I checked the date on the video and I was like WTF?

    • @OhBonezz
      @OhBonezz 6 лет назад

      @@micahgmiranda Yea I am very interested in the finishing of this series. I am learning so much!

  • @willcaig
    @willcaig 4 года назад +1

    Is anyone else having a problem where it takes an extra press of the "E" key after a conversation has ended to initiate a new conversation? I can't figure this out for the life of me.

    • @alexdubarenco4297
      @alexdubarenco4297 4 года назад

      @ if(key_interact){

      if(active_textbox == noone){

      var inst = collision_rectangle(x - radius, y - radius, x + radius, y + radius, objNPC_parent, false, false);

      if(inst != noone){
      with(inst){
      var tbox = create_textbox(text, speakers);
      }
      active_textbox = tbox;
      }
      } else {
      if(!instance_exists(active_textbox)){
      active_textbox = noone;
      }
      }
      }
      Explain please :)

  • @SpiitzelKing
    @SpiitzelKing 6 лет назад +5

    I love this series, Can you make a video for buying/selling?

  • @ahooby5250
    @ahooby5250 5 лет назад +1

    I seem to be having an issue where the text box isn’t appearing even after pressing E a couple of times, I haven’t done any of the tutorials previous to the dialogue tutorials, your tutorials really helped so if you could give me advice on this problem, that would be great!

    • @margaretbawtinheimer7407
      @margaretbawtinheimer7407 5 лет назад

      Did you ever find out the solution to this? I have the same issue as you, and I only did her textbox tutorials as well. I'm assuming it's because I have a different collision system

  • @kdh241
    @kdh241 3 года назад +3

    I'm getting portrait/name/voice but then there's no text, just an empty textbox. Anyone have a guess at what I did wrong?

    • @kennybrand6335
      @kennybrand6335 3 года назад

      I need help with this too. Let me know if you figured it out

    • @cody7689
      @cody7689 3 года назад

      I'm also getting this issue, I've tried for hours now to fix it but I don't know where I went wrong :(

    • @robar409
      @robar409 Год назад

      Same here. I'm thinking it has something to do with the create_textbox Script with the newer version of Gamemaker...

  • @Henry-zw4po
    @Henry-zw4po 4 года назад +1

    anyone have any idea why it might force quit the launcher when i interact with an npc?

  • @peeesca8389
    @peeesca8389 4 года назад +1

    great tutorial but i have a question, in the last part of the video you show how to evoid creating multiple textboxes, but if i want to generate another one i have to press 2 time the interact key couse the condition for checking if the box exist is still in the check of the interact key, and is pretty annoying that i have to press id 2 time , how con i solve it?

    • @---we1ok
      @---we1ok 2 года назад

      I had the same issue, and in-case anyone else comes along here's a clunky solution. You can move the "active_textbox = noone;" into a with(obj_player) block in the destroy event of the obj_textbox, similar to how FC made the bandaid for NPC movement.

    • @Hyp3rSachi
      @Hyp3rSachi 22 дня назад

      @@---we1ok lmao so glad for this thx

  • @djfysiker8413
    @djfysiker8413 6 лет назад +2

    Will you continue the series? I hope so! Thanks to you I learned GML and how to use GM!

    • @lilpumpupthejam9302
      @lilpumpupthejam9302 Год назад

      you should have plenty to work with .. your imagination will have to kick in sooner or later to make an actual game

  • @Jukera
    @Jukera 6 лет назад +8

    Great video, can you implement a npc schedule like in stardew valley ?

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +6

      Yes that's definitely on the to-do list for upcoming videos :)

  • @rpgtogether7022
    @rpgtogether7022 5 лет назад +1

    I FOLLOWED THIS WHOLE TUTORIAL FOR A TURN-BASED RPG (JUST SKIPPING FARM PART AND CODING THE BATTLE SYSTEM). THANK YOU SO MUCH. BTW, WHY AREN'T YOU UPLOADING NEW VIDEOS LATELY..

  • @katrinam3684
    @katrinam3684 6 лет назад

    Subscribing. PLEASE continue this series to completion!! No one actually finishes their tutorials =(

  • @blinnell
    @blinnell 6 лет назад

    Great video! Thanks for posting!

  • @TheGrimmy
    @TheGrimmy 6 лет назад

    Another great tutorial, thank you for your time :)

  • @fragil2554
    @fragil2554 3 года назад

    If I wanted to, could I do all three things(portrait, name box and text box, ) on the same sprite instead of separating them? if so, would there be any drawbacks to using this strategy?

  • @brianbee9778
    @brianbee9778 6 лет назад

    How do I make it so different characters have different fonts in a cutscene setting? I'm using your cutscene video's method to create the cutscenes and using that method to draw the textboxes. Also just wanted to say your videos have really helped me out as I trudge through learning this stuff.

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +2

      Hey sorry for the late reply - I'd say you could pass along a variable that says who is talking if you haven't already to the textbox object. Then in the draw event, just check what that variable is equal to, and set draw_set_font(whatever) accordingly.

  • @ctenosaura7380
    @ctenosaura7380 6 лет назад

    Cant wait for the next episode!

  • @andryoushka8264
    @andryoushka8264 3 года назад

    Problem with duble chek "active_textbox" :
    Delete code after "else" and in Destroi Event (oTextBox)
    with(oPlayer) {
    active_textbox=noone;
    }

  • @randstadroleplay
    @randstadroleplay 6 лет назад +1

    Where is the next video?

  • @wfam9609
    @wfam9609 Год назад

    Now you should make the portrait_index,voice... as a struct.

  • @BatatonDoCon
    @BatatonDoCon 5 лет назад +1

    Hello, i know i am late but i hope you can answer this to me, well, i use this dialog system, but i am having trouble because of the array speakers, in my conversation it is very big, and i think there is not a way to clean a spot in an array, so if i want to make a smaller conversation, what do i do with this arrays?
    OBS: sorry for the bad english, i`m Brazilian

  • @numenanomalie309
    @numenanomalie309 6 лет назад

    Is this series going? i loved it so much

  • @EmmanuelMayor
    @EmmanuelMayor 5 лет назад

    Thanks a lot! I have one question... I can make the NPC textbox appear once, but then when I press the interact key again, it won't show up... why could that be?

  • @SummerPoemMusic
    @SummerPoemMusic 5 лет назад

    could you tell me how to make obj_player stop moving when textboxt open? thanks for the video,thank you!

  • @MANNLIERMANNCO
    @MANNLIERMANNCO 6 лет назад

    AMAZING tutorial! this is such an usefull system, and you are great explaining it! ty soo much :D
    Btw, i'm having a small issue where if i use the interaction_key outside of the radius with an NPC it will crash stating that tbox is not set before reading. I'm sure its fairly easy to fix but just tought about asking! Thnx in advance.

  • @Jaitzche
    @Jaitzche 6 лет назад

    Thank you so much for the tutorials. I was wondering , are you still going to be adding to these?

  • @creasu124
    @creasu124 6 лет назад

    I have a question do you know how to make pixel perfect collisions between 2 moving objects so both objects move sometimes to each other sometimes both in same direction but different speeds, also one of the objects moves inside and along with the other one because it's kind of a moving room so the collision works when both go in same direction but not in opposite

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад

      I'm not exactly following what you're describing, but regardless of the type of movement, pixel perfect collision should be able to keep objects from going inside each other. You'd just have to have some sort of check to see if there is a placemeeting between the following object and the follower, and if there is, then move the follower as close as possible to the other one, and stop short of overlapping. This logic should be exactly the same as the logic we set up back in tutorial 1 :)

  • @Atma505
    @Atma505 5 лет назад

    I'm having a rather bizarre issue where I need to press input_interact twice to get to the next page. I adjusted some code to fit my own project, so I probably messed something up somewhere, but did anyone experience something similar to this?
    EDIT: Did the tutorial over again from the beginning, it's working now. Pretty sure it was related to the interact_key variable somehow.

  • @FerdinandCoding
    @FerdinandCoding 6 лет назад

    for your inventory, how would I remove a certain item/amount, check for an item/amount and add an item/amount, i could use this for mining resources, crafting system, rewards.

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +1

      I'd say creating a general script for removing items would be handy for this. It could follow the same sort of logic that we set up for when you drop an item with the right mouse button - but instead of using co-ordinates to get what sort of item it is etc, the script would just take in the item.object and you could specify what amount to remove/add. I'll likely do this when I continue with the series but until then, I'd say go back over those inventory videos, grab the code for removing/adding items, and adapt it to suit your needs. Unfortunately depending on your game and what you want, the scripts could end up being very different, so it's hard to be specific!

    • @FerdinandCoding
      @FerdinandCoding 6 лет назад

      FriendlyCosmonaut ok thanks

  • @Kyle.r.12
    @Kyle.r.12 6 лет назад +2

    Hey I've just been adding your dialog system to my game and I followed your video exactly (or so I thought lol) I keep getting an error message when I push the action key on a NPC. The short version is "Push :: Execution Error - Variable Index [0,1] out of range [1,1] - -1.speakers(100037,1)
    " The error is coming from the "create_textbox script". Can I contact you privately somehow to show my code and see if it's right?

    • @chris514ish
      @chris514ish 6 лет назад

      Hey, I'm having the same problem. Did you ever find the solution?

    • @Kyle.r.12
      @Kyle.r.12 6 лет назад

      @@chris514ish Not yet. Don't know what it could be, since I followed the video. Unless it's a miss type somewhere in my code.

    • @Kyle.r.12
      @Kyle.r.12 6 лет назад +2

      @@chris514ish If yours is still not working, I found out that I had 3 lines of text in my npc but only 1 [id]. For example: I had
      speakers_ = [id];
      but since I had 3 lines of text I needed to add 3 [id] arrays like speakers_ = [id, id, id];

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +1

      Awesome job solving this. Errors with arrays can be really tricky to track down, but also really common.

    • @qlu7273
      @qlu7273 5 лет назад

      @@Kyle.r.12 how did you fix this? I think my brain just hasn't started working today but I am wondering about the logic you used in the script to fix this up.

  • @Michajeu
    @Michajeu 6 лет назад

    Hi. Can you make tutorial about smooth 8 directional movement?

  • @Al3xy00
    @Al3xy00 6 лет назад

    Very good tut, thank you very much! Can I have the code you made in this series?

  • @MereddynYT
    @MereddynYT 6 лет назад

    Thank you another video!

  • @nicolemazur3933
    @nicolemazur3933 5 лет назад

    Hopefully this will get seen, but I was wondering if FriendlyCosmonaut or anyone had any ideas for how to display different portraits for multiple NPS's? Each NPC sprite would have 5 or 6 different frames. I have been playing around with an array but can't seem to get it to display more than one portrait.

    • @rolledfig3359
      @rolledfig3359 4 года назад +2

      I'll use Jack for an example
      I added this by creating different sprite portraits for each of my characters, with multiple frames for emotes. For instance spr_por_jack instead of a universal one
      Inside their create events I added a portrait variable.
      portrait = spr_por_jack
      Along with the text arrays I created a portrait index array which will change the frames of the portraits with the text
      0, for instance being the happy frame, 3 being the angry frame
      portrait_index[0] = 0;
      portrait_index[1] = 3;
      text[0] = "Hello!"
      text[1] = "I'm angry!"
      Then in our textbox create script I removed the original portrait line FC used here and added
      portraits[i] = speakers[i].portrait;
      portraitsindex[i] = speakers[i].portrait_index[i];
      This gets the speakers portrait and their portrait index for each line
      Now in our obj_textbox, in our User Event I added
      portrait = portraits[cur_page];
      portrait_index = portraitsindex[cur_page];
      These will be our variables we'll plug into out draw event
      In out draw event for our draw portrait we now have
      draw_sprite(portrait, portrait_index, port_x, port_y);
      hope this helps! make sure to remove any other lines FC had in those areas about portraits. I know this is a 4 month old post but maybe someone else might want to do this in the future so here it is :)

    • @Mackievellian
      @Mackievellian 4 года назад

      @@rolledfig3359 Hey, man. That worked for me, cheers. One question now though. I can't get that to work for dialogue choice strings! Could you enlighten us if you got that to work?

    • @rolledfig3359
      @rolledfig3359 4 года назад +1

      @@Mackievellian Hey I'm glad it worked for someone. Want problem are you having with the dialogue choice strings?
      Say there's 9 lines of dialogue, we'll have 9 (portrait_index[x] = x)
      During the choice string say it jumps from dialogue 2 to dialogue 3 or 6, for the first choice it'll use portrait_index[3, 4 and 5] and then for he second choice it'll use portrait_index[6, 7, 8]
      I don't think I explained that very well but I hope that helps

    • @Mackievellian
      @Mackievellian 4 года назад

      @@rolledfig3359 hey actually figured it out but I really appreciate the reply

    • @miguelgrifo2198
      @miguelgrifo2198 3 года назад

      @@rolledfig3359 Does this work if it goes back to the obj_player? I can get it to work if the same person is talking, but when it switches back to the obj_player, always gets an error. I know this is really old, but I'm still trying to figure it out. It works with [id,id,id] but not with obj_player. I have it set up like this and always gets an error. Thanks.
      portrait = spr_character_portraits
      portrait_index = [1,0,2];
      text = ["How are you?","Good, you?","Fine, thanks."];
      speakers = [id,obj_player,id]

  • @OmegaVideosOng
    @OmegaVideosOng 5 лет назад

    How could we make a system, so that the player can plow the ground?

  • @evanartocin1218
    @evanartocin1218 5 лет назад +2

    I'm getting an error that I don't understand why, but it's saying that str_len is not set before reading it. I don't know what I'm missing pls help 😖
    /// btw LOVE THE TUTOIALS , I actually feel like I'm learning something. Thank you

    • @virtualcakegaming3498
      @virtualcakegaming3498 5 лет назад

      Im having the same problems did you by any chance figure it out yet?

    • @evanartocin1218
      @evanartocin1218 5 лет назад

      @@virtualcakegaming3498 I've been trying to look and ask on Reddit but still no luck, it's really a weird error, I'm still asking around, if you find out please lmk

    • @rzzz6184
      @rzzz6184 5 лет назад +3

      Hey guys, I had the same problem to and took me hours to try find a solution, a way i fixed it was by making sure I did not have the object textbox placed in the room, hopefully this response helps you guys

    • @ianblock1382
      @ianblock1382 5 лет назад +1

      I had removed 'obj_textbox" from the text layer as Rzzz suggests, but str_len not being set persited. I had 'obj_textbox' in the Instances layer also and removing fixed the issue. I'm not sure if I placed it there idiotically or was placed following the tutorials and missed it being removed, but thought I'd mention it in case evan artocin and VirtualCakeGaming were still having issues.

  • @RizzerHD
    @RizzerHD 6 лет назад +4

    Can someone please give me a download for the project? thank you!

  • @sargeyman
    @sargeyman 6 лет назад

    Great series, do you plan on continuing it?

  • @jamesraphaelibay6664
    @jamesraphaelibay6664 6 лет назад

    how can i randomize the dialogue of the NPC?

  • @wangsoft
    @wangsoft 6 лет назад

    Will you be making a save/load system for this? Great series :)

  • @samuelclarke7396
    @samuelclarke7396 5 лет назад

    So sad the tutorial stopped please do more

  • @mistagumbit8668
    @mistagumbit8668 6 лет назад

    Hi
    I've been following this tutorial using Game Maker Studio 1.4 which has been fine so far but now i'm stuck on the section that has: text = [I have nothing to say"] and Speakers = [id]. 'This comes up with an error. Is the code specifically for GMS2 or i have missed something? Should i be able to use the same function in GM 1.4? Please help.
    Thanks in advance

    • @qlu7273
      @qlu7273 5 лет назад

      I'm having a very similar issue with GM2...did you ever figure this out?

    • @mistagumbit8668
      @mistagumbit8668 5 лет назад

      @@qlu7273 Hi, unfortunately I haven't. I can get the NPC's to talk but I cant get them to take turns talking with the player as Gamemaker studio wont accept the open brackets the way its set up above so I cant have e.g [id,obj_player,id} etc. I'm surprised you are having issues if you are using GM2!

  • @HlootooThunderhammer
    @HlootooThunderhammer 6 лет назад

    Are you going to incorporate animal breeding in your game? I myself am making a breeding game, but it's proving to be a challenge to find out how. I definitely know it involves arrays and data structures though.

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад

      I doubt I'll do this specifically but I will likely do a crafting system some time in the future which sounds like it would cover similar concepts. (In the meantime I think there are some crafting tutorials out there if you're keen to get started!)

    • @TheLastStarlighter
      @TheLastStarlighter 6 лет назад

      Hey! I too am planning to attempt making a game similar to this but with a focus on animal breeding! I thought I was completely alone with such a specific idea not many games cover. I am a complete beginner to everything except the artwork and animation portion, so I would love to know if you’ve figured anything out since you posted here. Any good resources or helpful info you’ve found regarding this concept? Thanks!

  • @kh2866
    @kh2866 6 лет назад

    Does this work with Game Maker Studio 1.4.1567 too?

  • @fierorecensione5828
    @fierorecensione5828 Год назад

    TOP!

  • @jayking4333
    @jayking4333 6 лет назад

    Will you be continuing this series

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +1

      Yes! I'm still on hiatus but there's more I want to do in this series.

    • @jayking4333
      @jayking4333 6 лет назад

      Awesome
      I look forward to future courses!!!! Me and my wife both enjoy your tutorials

  • @lib4861
    @lib4861 5 лет назад

    please, make tutorial farming for 3D games to Terrain 3D, i am happiness.

    • @rpgtogether7022
      @rpgtogether7022 5 лет назад +1

      Well,
      1. I think your last line is I'm hopeless
      2. You know what? This is a game maker studio 2 channel which is 2D
      3. Get dunked on!
      (PS: I'm acting sarcastic so no offence)

  • @joethedesigner5356
    @joethedesigner5356 6 лет назад

    can you upload the source code , please ?

  • @Rare.99
    @Rare.99 7 месяцев назад

    google ai sent me

  • @ubralodtopu8918
    @ubralodtopu8918 6 лет назад +1

    I do drag and drop :dd

    • @ubralodtopu8918
      @ubralodtopu8918 6 лет назад

      Drag and drop was created to make game developing easier. For now it might have some problems, but that doesn't mean we shouldn't interact with it. I use coding while there is a problem drag and drop can't solve (like lighting) and it is way easier. But I use drag and drop to come up with solutions of problems many can't solve. I'm going to continue using DND, until I make a great game with it (maybe it will take me years, but worth it). I have uploaded a video on my other channel too. I'm not arguing with you, just making things clear.

    • @ubralodtopu8918
      @ubralodtopu8918 6 лет назад

      For curiosity, here's my channel: ruclips.net/channel/UCrWIkAbOFFE35bqLxj_v0oQ

    • @demonsweatthings8493
      @demonsweatthings8493 6 лет назад

      Nice voice DnD pleb

  • @BradGqunit
    @BradGqunit 6 лет назад

    Another great vid. Recently threw my own dialog choice system on my github, actually used your Textbox tutorial during making it. Check it out if you want: github.com/bguinen/Gamemaker-Dialog-System

    • @FriendlyCosmonaut
      @FriendlyCosmonaut  6 лет назад +1

      Oh awesome, I did see this one!! Great work, it looks really nifty :)

  • @Wopapa
    @Wopapa Год назад +1

    upd. DONE!!! and fixed!!! But now is another probloem(OH WHYYY????)
    Variable obj_textbox.str_len(100005, -2147483648) not set before reading it.
    but it was setted!! Help!!!!

    • @Gnavin
      @Gnavin Год назад +1

      Just wanted to make sure, when you say „Text“ is your code written exactly like that? It should be "Text", should it not?

    • @Wopapa
      @Wopapa Год назад

      Hiiii!!! its ok now, just remade whole tut, but i have another problem!!!!!Variable obj_textbox.str_len(100005, -2147483648) not set before reading it.@@Gnavin Hehehe.. ALSO it says that in scr create_textbox isnt allowed to put in text and speakers!! Thank yoU!!!