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

trautmen

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Everything posted by trautmen

  1. Hi, :) i have one problem.I dont know, how to make a chat to look good. anyone has any ideas how to make it nicer? ps: Google Translate :embarrassed:
  2. could you tell me where do I start? I do not know: D
  3. my english is horrible :p i need render rich text box(txtChat) on the pic screen.. because when rich text box is transparent,you can not see chat..
  4. Hi, This is a tutorial to change screen size :) follow instruction step by step :) Now how to do.. Go to frmMainGame and search picScreen_MouseDown.. and put this code: ``` picScreen.width = 800 ' Width in tiles * 32 picScreen.height = 608 ' Height in tiles * 32 ``` and then go to Form_Load in frmMainGame..search this code: ``` Me.width = 10545 ```and remove it. Now one click on the picscreen and in properties change Width=800 Height=608 oh :P now go to modConstants and search ' Map constants and search this code: ``` Public Const MAX_MAPX As Byte = Public Const MAX_MAPY As Byte = ``` and copy it to: ``` Public Const MAX_MAPX As Byte = 24 Public Const MAX_MAPY As Byte = 18 ``` :D and woala :)
  5. for transparent txtChat richtextbox use :in to modgamelogic copy: ``` Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long Public Const GWL_EXSTYLE = (-20) Public Const WS_EX_TRANSPARENT = &H20& ``` and in to form_load copy: ``` Dim result As Long result = SetWindowLong(txtChat.hwnd, GWL_EXSTYLE, WS_EX_TRANSPARENT) ``` I not created this code!! btw: this is one problem..txtChat not see because is under map..help enyone?
  6. for transparent txtChat richtextbox use :in to modgamelogic copy: ``` Public Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hwnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long Public Const GWL_EXSTYLE = (-20) Public Const WS_EX_TRANSPARENT = &H20& ``` and in to form_load copy: ``` Dim result As Long result = SetWindowLong(txtChat.hwnd, GWL_EXSTYLE, WS_EX_TRANSPARENT) ``` i not created this code!! btw: this is one problem..txtChat not see because is under map..help enyone?
  7. trautmen

    (EO) chat

    thanks for help :lipsrsealed:
  8. trautmen

    (EO) chat

    help me with transparent chat? i dont know how to do..
  9. help me? with transparent chat? please :huh:
  10. How to make transparent chat? I would like to see the message.
  11. pomůže mi někdo s rozlišením 800x600?
  12. lol:D im noob:D thx
  13. I have origins.. I have a character, but is front view is small ,but view side is bigger and Origins generates only size front view and this is 32x64 I give here similar picture character:[http://img821.imageshack.us/img821/7782/chobot.png](http://img821.imageshack.us/img821/7782/chobot.png)
  14. I have the same problem could you explain me better? how to do it?
  15. trautmen

    Runtime errors

    ok thanks for answers
  16. trautmen

    Runtime errors

    hi could someone explain to me the runtime error? we could do to not have to install those libraries? thanks for the reply Excuse my English is terrible:)) :P
×
×
  • Create New...