Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

balliztik1

Members
  • Posts

    2052
  • Joined

  • Last visited

    Never

Everything posted by balliztik1

  1. balliztik1

    Error(s)

    The first error is from not having the right variables set. You can see in the code above, the map number is stored in the variable "y", not "MapNum". As for the second, it's likely that you've misused "Item()" somewhere. I can't say where without more info.
  2. Run time error 9 is "subscript out of range". This means an array has exceeded its boundaries. Have you changed map sizes recently? If you change map sizes, but don't delete your maps, you can run into issues.
  3. http://www.touchofdeathforums.com/smf/index.php/topic,38932.0.html
  4. WoW has quite a bit, but it's so annoyingly done. Most of the game's "lore" consists of answering yes or no to a quest description on a scroll. Mind you, there's like 10,000 quests, so there's a ton of scrolls, but meh. Some questlines are quite nice and have excellent backstory, but that backstory requires a lot of outside sources. For instance, the first dungeon most Alliance players will run doesn't seem too spectacular, but if you played all the way from Warcraft I, the turn of events will be somewhat familiar. They don't go over that in the game, however. *shrug*
  5. Private Servers are against the rules.
  6. ``` Dim variableName as Long variableName = FreeFile Open App.Path & "Directory\File.txt" For Input As #variableName ``` This bit is used to open a file of your choosing. ``` Dim theIniFile as String theIniFile = Input$(LOF(variableName), variableName) Close #variableName ``` This puts the whole file's text into a string and closes the file. ``` Call SendDataTo(index, "PacketHeader" & SEP_CHAR & text & SEP_CHAR & END_CHAR) ``` This sends a packet to the player's client. In the client, there would be a check for if the packet's first bit of data is a string that says "PacketHeader". If so, then you'll know that the second bit is the text of that file. Take a look at how something simple like a PlayerMsg is done. Follow the packets from the client to server and back until it ends. It'll give you a good idea of where to start.
  7. ``` Dim f f = FreeFile Open App.Path & "Scripts\Main.txt" For Input As #f Dim text text = Input$(LOF(f), f) Close #f Call SendDataTo(index, "MAINEDITOR" & SEP_CHAR & text & SEP_CHAR & END_CHAR) ``` Here's a clip from the main.txt in-game editor. You can do something like this.
  8. Put NPC 57 in slot one of map 20, for example. Then, do this: ``` MapNpc(20).NPC(1).Target = Index ```
  9. Yeah, NWN has a dedicated server program, even. You can host mini-MMOs 24/7\. Also, you can just load up any mod and play. Either way.
  10. Did he enter your IP in the IP config or is his client still set to 127.0.0.1?
  11. @Lenton: > Botster: I will never give you up never gonna let you down never gonna turn around and hurt you. > CleverBot: We're no strangers to love, you know the rules, and so do I. Best part. ;D Well, you know, except that CleverBot got the lyrics mixed up. :sad:
  12. Torchlight (assuming "Three" counts) If not, Warcraft II: Tides of Darkness
  13. I enjoyed a screenplay of Shakespeare's "Much Ado About Nothing" that featured Keanu Reeves and Denzel Washington as brothers. And they were both Spanish. And one was evil. True story. Anyway, I don't see it being too big a deal. Obviously it goes against the comics, but if he's the best man for it, by all means, cast the guy. Not because he's black, but because he's good. Personally, I like him. I have no idea how he'd do as Spiderman, but that's why they have auditions.
  14. World of Warcraft Hey, that "While you were posting" thing worked out. ;D
  15. Usually when more than one jockey is involved, it's called a horse race. :)
  16. http://www.touchofdeathforums.com/smf/index.php/topic,2227.0.html Please update this thread to meet the requirements for this board within 24 hours, or this shall be deleted.
  17. §iedge, your last topic was deleted because it did not follow the rules in the stickied topic, http://www.touchofdeathforums.com/smf/index.php/topic,2227.0.html. Please make sure your topic meets the requirements for this board within 24 hours.
  18. High level rogue sneak attack* Seriously, brah. At high levels, you need like 40d6 s:
  19. @Sealbreaker: > the original one deserves no view at all, because it sucks… but this one is kinda cool, that's right > > -seal Agreed. Some of the most viral videos are the dumbest things. I love the guys who auto-tune this stuff though. Just goes to show how something so mundane can make a decent poppy song. Sometimes makes you wonder just how good/bad singers these days are.
  20. My Paladin is lawful good and saves people in need, but dammit, he's a Satanist. If only he had opened his heart to Jesus! D:
  21. Sub SpawnNPC is already present, and you can just use something like "MapNpc(MapNum).Npc(Index).Target = X"
  22. modConstants is a module in the source code.
  23. 1\. modConstants contains all the maximums. None of the Edit Array buttons are functional yet. 2\. It's non-existent, but you could rip it from past Eclipse versions. 3\. Robin discussed adding tile animations, but I don't think he has yet. I'm sure it's somewhere in the main Origins topic. Pretty much what ICT said.
×
×
  • Create New...