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

tickleu

Members
  • Posts

    33
  • Joined

  • Last visited

    Never

Everything posted by tickleu

  1. tickleu

    Quest

    Depends what quest system are you using first off?
  2. Wow thank you soo much. I have no idea how this works even after reading. Lemmie see hereā€¦
  3. Good stuff. Iv heard of this before. Are they any existing ones out there. If not could i get your help to make one?
  4. Okay, so lets say I have a game and it has 20 players, and I all of a sudden decide "Hey I want to add a new stat for my players". I figured out how to add new stats like willpower, strength ect. But when I add the new stat in, I have to wipe all accounts, and start over. Is there anyway I can add the new stat data into the accounts without wipeing them. Is there an existing program that can do this already, or do I have to add it to each character file individualy. Can I click a button and it will write the stat data to all account files???? Help please!!!
  5. tickleu

    Runtime error 339

    It means that one of the library files are not installed correctly. Reinstall the library files, then let me know again.
  6. tickleu

    Scripted Block

    Is it possible to block the player from walking, by server sided script. I have scripted tiles, and when a player walks on the tile, I want it to block in that direction.
  7. The whole point is to make that, but al to be scripted!
  8. I have used that one, but I cant make scriptend conversations with that one. Iv tried for months!
  9. Im following this tutorial on making npc dialoug boxes http://www.touchofdeathforums.com/smf/index.php/topic,68317.0.html and If anyone here knows anything about runescape private servers. To make npcs talk in them its all done server side, wich this one is done as well. Lets say I want to have a full conversation with the npc. I want to do this server side Call SpeechWindow(attacker, "hello there") next Call SpeechWindow(attacker, "how are you.") Basically I want to talk to a npc and have the "hello there" text come up. Then when the player clicks nect in the chatbox I want it to display the "how are you text" Can someone help/
  10. So with the event editor, will i be able to make quests, and make conversations like as if i was using the actual rpgmaker xp editor. With variables and everythingā€¦.....cause if so thrn im using this engine hands down. Thatd be amazing and all id need to make a game!!
  11. Hiyo, Well while working since eclipse evolution 2.6 iv learned alot about visual basic. Heck this site is what taught me programming and boosted my intrest. Any way id like to offer a programming service to those who ask for it. Some examples of things i can code would be: A membership system, to allow a free/paid version of your game. This is a very intellegent peice of work that allows you to control every aspect of memberships through a mysql database. Its not hard at all to use. A runescape style quest system. How about a full lenghth dialoge with cutscense and a quest logs like a runescape setup. Full customizrable through source and a quest editor built in. A npc chat systrm that works better than the crystalshire one. Wich allows saves, give item, open shop, teleport, transform, and other events. And last but not least a chat bubble. Simple as it is i can construcy a chat bubble over yiur players head when he/she talks. These are just a few things i can do. Much more however ik not goong to lie these are thr only advanced things i can do. Anythig else your better off finding in the tutorials section. I go cheap so if your intrested pm me!
  12. Some players might like to view other players information. Such as there level, stats, and there currently wearing items. So without any hesitation lets begin. *The currently wearing items feature dosent work yet. Im going to finish it and post it. If someone else knows how, then leave a post and ill add it in First Download this picture and put it in your MAIN graphics folder. ![](http://i41.tinypic.com/11kl1n8.jpg) **CLIENT SIDE** go to modText, find "Public Sub DrawPlayerName(ByVal Index As Long)" and under ``` Dim i As Long ```paste this ``` frmMain.picPlayerInfo.Visible = True frmMain.lblPlayerName.Caption = Trim$(Player(Index).Name) frmMain.lblPlayerName = Trim$(Player(Index).Name) & " - Level " & Trim$(Player(Index).Level) frmMain.charstat(0).Caption = Trim$(Player(Index).Stat(1)) frmMain.charstat(1).Caption = Trim$(Player(Index).Stat(2)) frmMain.charstat(2).Caption = Trim$(Player(Index).Stat(3)) frmMain.charstat(3).Caption = Trim$(Player(Index).Stat(4)) frmMain.charstat(4).Caption = Trim$(Player(Index).Stat(5)) ``` Next go to frmMain and make a picture box called picPlayerInfo. Make the background image the picture you downloaded above. Make one label called lblPlayerName and make 1 other label called charstat. Copy and paste it a few times till you get 4 of them. Viola your done. Im sorry this is so quick and sloppy but I have to go atm.
  13. The point of doing this is do make server side scipted conversations, instead of making a conversation and assigning a npc to it. This way I can make really detailed quests.
  14. Alright, do you think you could point me in the right direction. Cause iv been doing that for about a week now. Just as a starting point.
  15. So basically I used richys quest and tile script system. And I followed a tutorial on converting the CS:DE conversation system to EO.202 heres the tutorial http://www.touchofdeathforums.com/smf/index.php/topic,74220.0.html In crystalshire developers edition, in the client there is a "TutorialState" sub that says ``` Case 1 ' introduction chatText = "Ah, so you have appeared at last my dear. Please, listen to what I have to say." chatOpt(1) = "*sigh* I suppose I should..." For i = 2 To 4 chatOpt(i) = vbNullString Next ``` I want to be able to put this in my server side so that way I can make conversations server side as well. Can you help?
  16. It ok mate, I was being stupid and dident read the rest of the post. All I had to do was set the npc's hp to 1 to make it alive. Now I have the task of creating a script server side that allows me to call any conversation in the conv editor example: Call initchat (index, 1) ' 1 is the first conversation in the conversation editor! anyone want to help?
  17. tickleu

    Player Click

    I created a player info card. Basically when your mouse hovers over a player you get a card that pops up that shows the players name, level all stats, and there currently equipted items. I would like to make a right click option to make this picturebox pop up. How would I go about doing this?
  18. I did everything you said, and it dosent work, I talk to the npc and nothing happens. I repeat, I did everything. I dont get any errors in client or server but nothing happens after I assign the npc a conversation.
  19. Just from the top of your head wich do you prefer? Crystalshire:Developers Edition OR Eclipse Origins v2?
  20. Can someone help me make a scripted conversation for CS:DE. I created a scripted npc module and I want to call any conversation from the convindex to be said. EXAMPLE: Call Conversation (index ,1) '1 is the first conversation in the conversation editor
  21. tickleu

    CS:DE SetStatus

    thx mate. Thats exactly what I did/ Go it :)
  22. tickleu

    CS:DE SetStatus

    Anyone know how to render the setstatus function in the crystalshire engine! Im a little stuck.
×
×
  • Create New...