Jump to content

Azzie

Member
  • Posts

    14
  • Joined

  • Last visited

    Never

Azzie's Achievements

Tenderfoot Thahd

Tenderfoot Thahd (2/17)

  1. I'm very close to finishing, (Maybe as soon as tomorrow, but most likely not.) but when i do finish, I'm wondering if I'll have time to have it beta-tested by others before the contest ends. I can beta-test it myself, but I hear that would be very unreliable. If I decide to have it beta tested, I post the beta scenario here.
  2. I solved the problem, thanks! and i learned not to make buildings out of cliffs.
  3. I looked over the post, but it didn't really help because its not crashing when trying to activate custom code, it seems to be happening whenever the player gets to x coordinate 15. this is very strange, as the custom code i wrote doesn't do anything in these places!
  4. I have a new problem. when you get to a certain spot in one of my dungeons, the game suddenly crashes, displaying a window saying "Unhandled Exception Unhandled Exception: c0000005 At address: 00439ac0" i looked the glitch up in the docs but it wasn't one of the listed glitch's, which leads me to believe that its not my fault. Whos fault this is i don't know, but i can't finish my scenario until its faxed(edit: FIXED! I'm sorry for the misspelling!). so can anyone help?!
  5. Well, this is kind of embarrassing, several problems for one scenario. I'm still working on the same scenario as in my prior thread, but i keep getting these scripting errors! I'm trying to make it so when the party searches a wheel, it asks them if they'd like to turn it. If they say yes, it turns on a stuff done flag. but when i tested it, it gave me error message saying: gatelever(The script) error: missing = in line 25. here's the actual script: (It contains spoilers of my scenarios, so judges may not want to read it.) Click to reveal.. beginterrainscript; variables; short y/n = 0; body; beginstate INIT_STATE; break; beginstate START_STATE; break; beginstate SEARCH_STATE; reset_dialog(); add_dialog_str(1,"Before you is an old, rusty wheel that looks like it hasn't been used for a very long time.",0); add_dialog_str(2,"Whoever built this here went to alot of trouble to hide it, especialy since the bandits couldn't find it.",0); add_dialog_str(3,"Its obviously very important.",0); add_dialog_str(4,"Would you like to turn it?",0); add_dialog_choice(0,"Of course!"); add_dialog_choice(1,"Nah."); y/n = run_dialog(1); //This is line 25 if (y/n == 1);{ set_flag(3,0) = 1; play_sound = 99; reset_dialog(); add_dialog_str(1,"Its amazingly easy to turn!",0); run_dialog(1); } else;{ reset_dialog(); add_dialog_str(1,"Probably a wise choice.",0); run_dialog(1); } break; can anyone help me?
  6. That's what i was looking for, thanks!
  7. I'm making a last-minute scenario for the 10th general design contest, and I'm making good progress. I've finished all the terrain and I understand scripting, but I need a scripting call or script of some kind to make the party get teleported from one town to another as if going to another floor of the building. I looked all over the editor appendix but i couldn't find anything. does anybody have anything like that?
  8. I've been unable to work on a scenario I'm making, when i finish it, can i still enter it?
  9. I'm making a new scenario and was working on the first dungeon, which is a humongous wall. i had just finished its basic shape, when i realized that it was facing west, going north-south, and that entering players (since they come from the west,) couldn't see it very well! I'm currently using the editor that Spiderweb made, and was hoping there was any way at all to flip the map horizontally without starting the dungeon over. Please be another way!
  10. I had to give up my custom graphics in the end.
  11. I've finally finished coding, but when my new party got all the custom items, I took them out of the scenario, and I lost all the weapons. obviously they need the weapons, so what do I do?
  12. Sorry for asking so much, but this one's REALLY strange. I keep getting message's saying things are missing in lines that don't exist. For instance; I got a message saying "Scenario data file error: Missing number in line 139." But when I check, I see there's only 82 lines in my custom script data!
  13. I have a problem. I am making a Legends of Zelda, The Wind Waker themed party. I finished the graphics, when the time came to make their custom weapons, I coded them and went into the editor, but then I got a message saying "Script failure: invalid Identifier Master" I don't know what an 'Identifier master' is, so can't fix it! What is it?
×
×
  • Create New...