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

Kemerd

Members
  • Posts

    767
  • Joined

  • Last visited

    Never

Everything posted by Kemerd

  1. Kemerd

    Griff's GFX

    Looks like a flying piece of popcorn who has an asscheek as a face with sasuke's symbol (from naruto) on the asscheeck.
  2. Looks like a scuba diver. I like scuba divers.
  3. Kemerd

    New Shop

    Mashed potatoes! woot! pointz!
  4. Does anyone have eclispe advanced 3.1.0.6? I just ~~hate~~ don't like the developer's suite, and how it's seperate from the actual game. So does anyone have the older verson? I know I could probably combine them somehow, but does anyone have it? Or would somehow tell me how to combine them? To undo the seperation…
  5. Meaning I can still use the code, but I might have to put it in a different place since making a new char is different… I'll try to see if I can make it work.
  6. Kemerd

    DX8 GUI

    Could I somehow rip this graphic's option from Eclispe Mega? I talked to the developer himself, and he told me that Mega wasn't really to be used as an engine, only to really be ripped from. Could I rip a rip? ._.
  7. I'm up for testing if you need anything. Just PM me anytime.
  8. Kemerd

    DX8 GUI

    How would I go about redoing the layout in VB6 with stock EO 3.0? I want to make it look like CS:DE's GUI, like Eclispe Mega has done. I see it in the source, but how will i do it with the resoution, and making everything appear on the screen, transparently?
  9. Probably Dx8, because I have no idea how to render anything in dx8 either.
  10. It should replace the Client Work you have on the bottom of your tutorial, if someone were to use it.
  11. I'm using eclispe mega, and I kneed to somehow get a GIF or video to play in the main menu backround, as I am making a FMA game, and it will just look freggin lame without a video or gif to the music.
  12. It works, so thanks! I haven't programmed in a while, so I'm a bit rusty.
  13. I did this (with some help from others) a thing where you use a command to open a panel. Maybe you could add it the front. Go to frmMain, make a panel named **redeemcodepanel**, add a textbox and command button. Name them **txtCode** and **cmdClaim**, making sure they are on the inside of the panel. Then, on the corner make a button with the caption **X**, double click it. Add this: ``` Private Sub Close_Click() reedemcodepanel.Visible = False End Sub ``` Then double click **cmdClaim** and add this: ``` Dim a As Long If txtCode.Text = vbNullString Then txtCode.Text = "Not Valid Code!" Else For a = 1 To MAX_SERIAL_NUMBER If txtCode.Text = Serial(a).Name Then Call SendSerialGift(MyIndex, Serial(a).Item, Serial(a).ItemValue) Call ClearSerial(a) Call SendSaveSerial(a) txtCode.Text = "Item Send to your Inv..." Exit Sub End If Next txtCode.Text = "Not Valid Code!" End If ``` Then, in modInput, find: ``` Case "/editserial" If GetPlayerAccess(MyIndex) < ADMIN_DEVELOPER Then GoTo Continue SendRequestSerial SendRequestEditSerial ``` Place under it ``` Case "/redeemcode" If frmMain.redeemcodepanel.Visible = True Then frmMain.redeemcodepanel.Visible = False Else frmMain.redeemcodepanel.Visible = True End If ``` And that should make a good enough menu, and you can modify however you want!
  14. Sorry I didn't see your first post sherwin, eclispe was glitching. I forgot about stating frmMain.
  15. Grrr. Not working… does anyone have any ideas on how I could do that? Declare the visibility of the panel global?
  16. Gonna try to make a global variable with ``` Public codevisible As Boolean If redeemcodepanel.Visible = True Then codevisible = 0 Else codevisible = 1 End Sub ``` Posted in frmMain Then modify the command to…. ya know.
  17. Well I was programming a comand in Eclispe, trying to use a command to open a panel. ``` Case "/redeemcode" If redeemcodepanel = Visible Then redeemcodepanel.Visible = False Else redeemcodepanel = Visible ``` That's in modInput, and I'm trying to control something on frmMain. Any help? ``` Compile error: Variable not defined [OK] [HELP] ``` Giving me that error.
  18. It might take a lot of work, and even though they're different, it COULD be done.
  19. Hey there, and I was thinking maybe we could make an Uber optimized engine. Me, and some others, were talking in chat, debating on the best, clean, optimized EO 3.0 engine. We concluded down to Eclopti Rekindled, and Eclispe Dawn. Maybe if a programmer, or group of programmers, could work together to combine these engines, we would have an Uber awesome engine.
  20. Or go in VB6, click File, then click Open, find your eclispe folder (server or client) and click on the .vbp file.
  21. It doesn't have weapons, but it's still a good pack. ._.
×
×
  • Create New...