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

Killa_

Members
  • Posts

    46
  • Joined

  • Last visited

    Never

Everything posted by Killa_

  1. You can easily infect this site by changing /smf2/ to /smf3/ in the link and use the appearing error to infect the site if im on the right way.. I still think that someone have "http://novikkoll.in/" in their signature or anywhere.Google says its infected link but this site is crashed for this moment.I havent read this 3 pages so sry if that have been posted earlier.
  2. Same here.Will use your system,snider =)
  3. Did u made the map with PS only?Can you make a tut for that?I havent seen any good tutorial for maps =) and i really like this style of images,its just amazing!
  4. Sorry for bumping,but can i stop auto-regen for the one class?
  5. Can you make it work not through the vb form?I mean all is right but how to make it redeem through chat message?
  6. Pls add that and make war 110% aggro by default,i just want to see how it works.Thanks =)
  7. Killa_

    Quest

    Please ban him.WHY CANT YOU POST IT IN THE Q/A FORUM?!!!Why do u make a tutorial how to make "dodge" instead of "parry"?!
  8. Select the map channel,if you have added chat channels.
  9. Justn,pls say where is it?If i understood u guys correctly,it is when mob aiming player and moves to u and suddenly moves another direction by 1 tile and backs to the road to you again.Or what?Anyway say how to fix that pls =) I remember someone said that there is a loop in AI and you need just to make more loops.Idk is that true or not. Thanks for the system,its awesome except this error.Its not so important cuz noone will try it :D and anyway just make a 1 spell to each elite mob so u cant just stay away from 4 ppl who blocks the mob.
  10. I want to load one GUI if class case 1,second if class is 2 etc.I want to make few pictures for one char equip slot.For rogue-second hand would be a second dagger/arrow slot,for mage-2handed staff,war-shield etc.I know I can make just hand picture.I think its almost impossible to do.
  11. Doubleclick it by left mouse button.Right? If yes,try to backup game and delete all files in items folder server-side.
  12. It works,thx very much =) But it works only on the map channel,will try to fix that.
  13. ``` size = size + EngineGetTextWidth(GameFont, Mid$(text, i, 1)) ```ByRef argument type mismatch
  14. ``` size = size + EngineGetTextWidth(Mid$(text, i, 1)) ```argument not optional
  15. Whats wrong?Its supposed to be .jpg
  16. ``` Call GetPlayerClass(MyIndex) Class = GetPlayerClass(MyIndex) Select Case Class Case 1 frmMain.picCharacter.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\character.jpg") Case Else frmMain.picCharacter.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\character2.jpg") End Select ```Look here again -_-
  17. ``` Public Sub loadGUI(Optional ByVal loadingScreen As Boolean = False) Dim i As Long Dim Class As Long ' if we can't find the interface On Error GoTo errorhandler ' loading screen If loadingScreen Then frmLoad.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\loading.jpg") Exit Sub End If ' menu frmMenu.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\background.jpg") frmMenu.picMain.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\main.jpg") frmMenu.picLogin.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\login.jpg") frmMenu.picRegister.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\register.jpg") frmMenu.picCredits.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\credits.jpg") frmMenu.picCharacter.Picture = LoadPicture(App.Path & "\data files\graphics\gui\menu\character.jpg") ' main frmMain.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\main.jpg") frmMain.picInventory.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\inventory.jpg") Call GetPlayerClass(MyIndex) Class = GetPlayerClass(MyIndex) Select Case Class Case 1 frmMain.picCharacter.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\character.jpg") Case Else frmMain.picCharacter.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\character2.jpg") End Select frmMain.picSpells.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\skills.jpg") frmMain.picOptions.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\options.jpg") frmMain.picParty.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\party.jpg") frmMain.picItemDesc.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\description_item.jpg") frmMain.picSpellDesc.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\description_spell.jpg") frmMain.picTempInv.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\dragbox.jpg") frmMain.picTempBank.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\dragbox.jpg") frmMain.picTempSpell.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\dragbox.jpg") frmMain.picShop.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\shop.jpg") frmMain.picBank.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bank.jpg") frmMain.picTrade.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\trade.jpg") frmMain.picHotbar.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\hotbar.jpg") ' main - bars frmMain.imgHPBar.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bars\health.jpg") frmMain.imgMPBar.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bars\spirit.jpg") frmMain.imgEXPBar.Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bars\experience.jpg") ' main - party bars For i = 1 To MAX_PARTY_MEMBERS frmMain.imgPartyHealth(i).Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bars\party_health.jpg") frmMain.imgPartySpirit(i).Picture = LoadPicture(App.Path & "\data files\graphics\gui\main\bars\party_spirit.jpg") Next ' store the bar widths for calculations HPBar_Width = frmMain.imgHPBar.width SPRBar_Width = frmMain.imgMPBar.width EXPBar_Width = frmMain.imgEXPBar.width ' party Party_HPWidth = frmMain.imgPartyHealth(1).width Party_SPRWidth = frmMain.imgPartySpirit(1).width ' let them know we can't load the GUI errorhandler: MsgBox "Cannot find one or more interface images." & vbNewLine & "If they exist then you have not extracted the project properly." & vbNewLine & "Please follow the installation instructions fully.", vbCritical DestroyGame End Sub ```What do i do wrong?It says that i have no gui
  18. Ive tried many codes but none of them works.
  19. I need to get it into client source.This code works only server-side. http://www.touchofdeathforums.com/smf/index.php/topic,59592.msg630746.html Ive already searched here and found only this,but this didnt helped..
  20. The topic name says it all.. I need to know how to send a player class data from the server to the client.Idk how to send packets at all. Thx.
  21. @SnowStorm nice,but it looks too flat and the little sphere looks too volumed with the flat blade.
×
×
  • Create New...