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

Exvayate

Members
  • Posts

    185
  • Joined

  • Last visited

    Never

Everything posted by Exvayate

  1. I've added a new new case (case 7, which corresponds to imgButton(7)) and it's to open up a new form which is an private messaging system I want to incorporate. I get this error. (see 1st thumbnail) Then it highlights this in the debugging mode. (see 2nd thumbnail) Is it because I don't a GUI set for my 7th button? Also how can I add a GUI for the button, and how can I change the file extension of which the engine reads? I would like to change it from .jpg to .png. I've tried doing this before in Robin's patcher (with mine and Yami's edits) and it also gives me and error. :/ If extra info is needed please reply ASAP. :] Thanks for the help!
  2. Well. what's going with your client? Fill us in on details, yo. The more. The better. And the faster we can help your problem. :P
  3. I've been coding for a while now and I'm getting the gist of VB6. (Numbers correspond to the number in the picture) 1) I can't seem to find out how to make the inv/opt/party/spells/char boxes dissappear after a 2nd click. 2) I don't know how this happened but after testing out the program before I compiled it, I ended up with "]2" in the typing box as soon as log in. Help/tips on removal of the text?
  4. Exvayate

    MY EMOTES!

    Alright. I gave searching for 'casting spell' under both client and server. Nothing was found. :/
  5. I really haven't messed around with my game's coding and I have a vanilla/clean version for my game however. I ran it and I got this error! :O If anything. All I did to the original source was: - Adjust picscreen - Toggle Player Level - Toggle NPC Level
  6. Exvayate

    MY EMOTES!

    @Bcm27: > Nice gui. Thanks! ^^ Still semi-new to messing around with VB. I seldom do hard coding from scratch! @Athagekin: > The text is in the server. Search in there. Thanks. I'll try there and give you guys a shout out.
  7. Exvayate

    MY EMOTES!

    I did ctrl+F Searched under current project and got: Search text is not found.
  8. Exvayate

    MY EMOTES!

    HE'S NOT HAPPY! LOOK AT HIM (pic below) Is there somewhere in the source that can disable floating text upon casting a spell?
  9. Exvayate

    Eo on Mac?

    Replace Mac OSX with Win7\. Have a godly… pc? Made of mac parts! WITH WINDOWS!
  10. Have you portforwarded your server? Is the IP static?
  11. 1) Make IP static. (portforward.com has a program that you can use. Choose Local Area Connection that corresponds with your servers IP) 2) Port forward said static IP and port 7001 to 7001 (These ports are default) 3) Go to IP Chicken to get your External IP. 4) Replace the IP in your games config.ini with your external IP 5) Distribute games to your friends. 6) After distribution return the IP in config.ini to localhost for self-use Notes: If you don't change the IP back to localhost, then you won't be able to log in to your own game because the client or PC for the matter will NOT let you log into your own IP. That causes problems.
  12. Gimp is great program for people new pixel artists
  13. It was just this morning when I found out that Yami's Launcher didn't load the launch.jpg image file after successfully updating to the latest client version. Yami's version of Robin's updater can be found here:[http://www.touchofdeathforums.com/smf/index.php/topic,69267.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,69267.0.html) This can be easily fixed with a little bit of source editting! :D 1) Open Autoupdater.vbp in VB6 and under frmMain search for this code:``` Private Sub lblConnect_Click() If UpToDate = 0 Then RunUpdates Else Shell "Client.exe" DestroyUpdater End If End Sub ``` 2) Replace that code with this! :``` Private Sub lblConnect_Click() Dim Filename As String ' Load a GUI image, if it does not exist.. Exit out of the program. Filename = App.Path & "\Data Files\graphics\gui\updater\launch.jpg" If UpToDate = 0 Then RunUpdates UpToDate = 1 FileExist (Filename) Me.Picture = LoadPicture(Filename) Else Shell "Client.exe" DestroyUpdater End If End Sub ``` Hopefully this helps! :]
  14. So it's just a normal day with me wanting to play around with the autoupdater.vbp file and all of a sudden I open it and I get an error dealing with ieframe.dll This is the first time that it has happened. :/
  15. Nvm. I solved it by shoving (aligning) it to the right. :P
  16. @Captain: > Search for this > > ``` > picAdmin.top = > > ``` > Change the .top and .left values accordingly :) Where is it under? Or how do I do a whole serach over the source? AND THANKS!
  17. @Eltony: > lol well good luck with that if you manage to make it full screen then all your graphics will look really bad. No. It's possible for the graphics to retain quality. You just gotta calculate the dimensions and code it correctly.
  18. I would like to move over the admin panel so it wouldn't get in the way while I or my team mates map. I've tried moving the panel where I would like to put it, then compile it. But it would always stay in same spot after each compile.
  19. You can just open up frmMain in vb6 then edit frmMain to be larger pic screen to take up the whole form size. Then you gotta code it by editting modConstants.
  20. I'm gonna try it again. Thanks for helping me verify! :]
  21. And so the spell should make my HP bar rise up instantly if I casted a self-cast healing spell?
  22. Do I cut the lines and then paste them under the next lines of code?
  23. So I applied this onto the source. I realized that my sprite is KINDA offset on a tile o.O will I have to graphically correct that in GIMP/PS? :I However if I did that then the sprite would be off center in the sprite sheet, making paperdolling a bit difficult because the room in each 64x64 (I use those sprites :3) sector will be shrunk/expanded.
  24. Ahh! Found the solution. I jumped to conclusions and installed MSDN but the new install doesn't have it. Compiled the server source and now it has a new spawn point! ^^
×
×
  • Create New...