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

85031

Members
  • Posts

    51
  • Joined

  • Last visited

    Never

Everything posted by 85031

  1. when your building a house, shed, tree anything or anything that is going on top of the ground you change layers on the mapeditor and for things like the top of the tree and the roof of a house you would use fringe 1 and 2 that way you were to walk behind it instead of ontop of it.
  2. 85031

    Cake Versus Pie

    pie is definately far better than cake:D especially pumpkin pie and pecan pie mmmmmm(: XD
  3. 85031

    The very first

    well, im on the forums just looking around after a long time, and then for some reason i start to wonder…...who was the very first person to start eclipse, the first person to come up with the idea for eclipse? :P
  4. so im messing around with TE source, trying to find out where to change the color of the chat on the game screen inside of the chat bubbles but i cant find it, i found where to change the border, please tell me someone knows where that is?? thanks :)
  5. ok, in my total eclipse source i had A LOT done, i had mp3s working and EVERYTHING i even had internet opening and stuff and all of a sudden the whole source is changed!! how did that happen?!?!?!?! please tell me because i wish to retrieve all that work instead of doing it all over again >.
  6. how do i input VB functions into source and how do i use them? lets say…i have a playmp3 function``` Public Function PlayMP3() As Boolean ```with all of the code after it and all no worries, but i dont know where to add it .< lol thanks for helping! ^.^
  7. hi everyone! ^.^ i was recently playing my GBA emulater, 'you know the thing on the computer that allows you to play downloaded GBA games?' well while i was playing that i got to thinkin that the emulater might be made with VB6, so people of eclipse, i come to you with a simple query, Are the emulators made with VB6?
  8. 85031

    Good and evil

    does anyone know a code to have like a good or evil along with the classes. like under the exp bar i want another bar that changes color depending on if your good or evil. and you start out with a yellow bar and the more you PK the bar turns orange - red and you would be evil, and the more you do good (helping people by doing quests, slaying monsters and what not) the bar starts to go from yellow - purple - blue heres what im aiming for you start with yellow and if you PK someone it turns orange then if you PK someone else it turns red, then if your yellow and you kill monsters and all it turns purple and the more monsters you kill it turns blue –----if you have a red bar and u do good it goes to orange, do more good it goes to yellow and then goes to purple and blue. ------if your have a blue bar and u PK it goes to purple, do more PKing and it goes to yellow and then it goes to orange and red. hope that makes sence, does anyone know how to code this into VB6? ~•Thanks!•~
  9. 85031

    Sand demon sprite

    im looking for a 64*32 sand demon sprite, er one of those sand guys from star wars or w.e. those would be perfect, no im not making a starwars game XD •you know those guys with the guns that live in the sand? they look like they have little spikes in their head sorta. Thanks!
  10. i made a guild creating button… http://www.freemmorpgmaker.com/smf/index.php/topic,22743.0.html instead of a level requirement i want to have a item requirement...what would i change to make it find the item needed? what would the code be? thanks a ton! i want to have a item requirement because i realized that your able to create a guild for anybody with this -.- and i dont want people able to give everyone a guild and all. please help me. :)
  11. 85031

    Indoor tileset

    i have been looking for a indoor tileset but i couldn't find one, I'm mainly looking for a tileset that has walls, floor tiles, carpets etc… for the houses players get to buy. If anyone has them and would like to post them that would be greatly appriciated :) -Mike
  12. 85031

    RTE9 like crazy

    Ok so basically me and my team is getting RTE 9 like crazy anytime i save a map most of the time and im getting annoyed, im using EE source and im not using scrolling maps so i dont know what to do >.< someone please help me T_T
  13. Ohio State is going to beat them 28-0 for sure, no contest and Ohio state wins the championship!! ![](http://i220.photobucket.com/albums/dd192/mike9359/WIN.jpg) Go ohio!
  14. are you able to make a scripted item in the source? If you are how would you go about doing it? O.o
  15. im gonna teach to make a guild creation button! :D Made with Eclipse Evolution Source, thats why i used EE icon Requirements: 1\. Microsoft Visual Basic 6.0. 2\. Knowledge of using copy and paste ( ctrl+c and ctrl+v) 3\. How to work simple commands and labels. first go to the frmMirage, on the left it will have a ton of icons, click the bold black A. create a box somewhere with all of the other options on the frmMirage, and leave the name the same, it will be label21 or something like that. The only thing you need to change out of all the stuff in the bottom right is… •Alignment •appearance •backcolor •BackStyle •BorderStyle •Caption •Font •ForeColor -go to Caption and put Guild Creator or something like that to let people know that it is for creating a guild. if you want a background for your button (just the square you made with the label tool) then go to BackStyle and put Opaque, if you want no background make it transparent. go to BorderStyle and choose if you want a border or no border. Then if you chose to have a background and/or border go to the top and go to Appearance and choose either Flat or 1 - 3D. Now scroll down a little bit and go to Font. You can Choose your Font type and style such as bold, italics, and bold & italics. After you are finished with that go to ForeColor and you can choose the color you want the Caption to be. Now Double Click your newly created button that you just made and you will see the code of it come up. It will look something like this. ``` Private Sub Label21_Click() End Sub ``` you wont have to choose a label because the right label will come up automatically. paste this between what i just showed you. ``` frmGuild.Visible = True Me.Visible = True ``` then all the players have to do is type in their name and the wanted Guild name and they have it. Note: There is no level requirement in this code, if you want one let me know and the level requirement you want and ill try to get one up for ya :) well i hope this is kinda helpfull :) Thanks to DFA he provided a code incase you want to have a level requirement :) Thanks again :) If you want a level requirement put this… ``` If GetPlayerLevel(MyIndex) > 39 Then frmCreateGuild.Visible = True Else Me.Visible = True frmGuild.Visible = False MsgBox "You are not level 40" End If ``` instead of this… ``` frmGuild.Visible = True Me.Visible = True ``` i had to play around with the messege part because there wasn't one given and it works perfectly! if you have any questions i will do my best to answer them :)
  16. in source i made a guild creation button and you can only create a guild if they are level 40 but im pretty much stuck on trying to get it to have a level requirement. i have this… ``` Private Sub Label21_Click() frmCreateGuild.Visible = True Me.Visible = True End Sub ``` thats the label on the frmMirage they click to go to the frmCreateGuild that i made and i need to be able to make it so the frmCreateGuild to NOT pop up if their level is under level 40 but i dont know how to do that.
  17. ok so heres a party chat ``` ' Party message If Mid(MyText, 1, 1) = "+" Then ChatText = Mid(MyText, 2, Len(MyText) - 1) If Len(Trim(ChatText)) > 0 Then Call PartyMsg(ChatText) End If MyText = "" Exit Sub End If ```and heres the guild chat ``` ' Guild message If Mid(MyText, 1, 1) = "|" Then ChatText = Mid(MyText, 2, Len(MyText) - 1) If Len(Trim(ChatText)) > 0 Then Call GuildMsg(ChatText) End If MyText = "" Exit Sub End If ```and for each of those there is for party…. ``` Sub PartyMsg(ByVal Text As String) Dim Packet As String Packet = "partychat" & SEP_CHAR & Text & SEP_CHAR & END_CHAR Call SendData(Packet) End Sub ```and for guild… ``` Sub GuildMsg(ByVal Text As String) Dim Packet As String Packet = "guildchat" & SEP_CHAR & Text & SEP_CHAR & END_CHAR Call SendData(Packet) End Sub ```where would put these? i know i would put the first two in modgamelogic with all of the other chats that are before the commands in handlekeypresses but where would i put the second 2 codes that would allow you to use the chat? thanks ^_^ this would help my game out a lot :)
  18. how do i get the house editor to work? it says im missing something in the house editor but i dont know whats missing T_T has anyone gotten it to work yet?
  19. I chose these three because… Main Menu - so you can see where the second and third GUI came from Staff - its custom made with source Sites - also custom made with source + website and forums •MainMenu• ![](http://i220.photobucket.com/albums/dd192/mike9359/MainMenu-2.jpg) •Staff• colors of names and access match color of name ingame ;) ![](http://i220.photobucket.com/albums/dd192/mike9359/Staff.jpg) •sites• has forums link and website link ;) ![](http://i220.photobucket.com/albums/dd192/mike9359/Sites.jpg) comments please and a rating on the poll would be nice ;) Please be fair on the judging and not doing a low judge just to throw it off please :) thanks
  20. Which is better for source editing and all? TE source or EE source?
  21. 85031

    New color code?

    are you able to add a color at the bottom of the colors in ModText? ``` Public Const Black = 0 Public Const Blue = 1 Public Const Green = 2 Public Const Cyan = 3 Public Const Red = 4 Public Const Magenta = 5 Public Const Brown = 6 Public Const Grey = 7 Public Const DarkGrey = 8 Public Const BrightBlue = 9 Public Const BrightGreen = 10 Public Const BrightCyan = 11 Public Const BrightRed = 12 Public Const Pink = 13 Public Const Yellow = 14 Public Const White = 15 ``` am i able to just go Public Const Orange = 16 and put that under white and orange will be a usable color or does it take more than just that?
  22. how would i go about creating a button that when you open it a whole new GUI page opens so what im mainly asking is how do i create another GUI needed? how do i create a button on the mainmenu that goes in that gui? how do i put links to websites on that GUI? EE source 'edit'
  23. in the frmmainmenu code there is this ``` Private Sub Status_Timer() Dim packet As String If ConnectToServer = True Then lblss.Caption = "Server Status: Online" If ENCRYPT_TYPE = "" Then packet = "givemethemax" & SEP_CHAR & END_CHAR Call SendData(packet) End If Else lblss.Caption = "Server Status: Offline" End If End Sub ```the online part i want to put online with (however many players there is) lblss.Caption = "Online with" & (i dont know the rest of the code) what would the code be to show how many people are online? EE source 'edit'
  24. 85031

    Server source

    i was messin with the server source and i came accross a script editor and had all those global messeges, broadcasts and all that and when i clicked edit on the script section of the server i got a error 424 object missing or something like that, anyway to fix it so i can use that editor? *EE source* thanks :)
  25. well, i been practicing a lot with my swords and shields lately, i have a matching shield for the sword except for the last one. ![](http://i220.photobucket.com/albums/dd192/mike9359/Weaponswithshields.jpg) please rate i would like to know how my progress is going :)
×
×
  • Create New...