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

85031

Members
  • Posts

    51
  • Joined

  • Last visited

    Never

85031's Achievements

Newbie

Newbie (1/14)

0

Reputation

  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 :)
×
×
  • Create New...