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

bintin

Members
  • Posts

    111
  • Joined

  • Last visited

    Never

Everything posted by bintin

  1. bintin

    Simple coding help

    I'm slowly learning VB6 and i'd like if it someone could guide me in the right direction, how would I make a picture box visible when someone enters a certain map or joins the game for the first time? ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) Thank you.
  2. Yeah a lot of games that I have played feel like a chore after about 5 minutes.
  3. Thank you for sharing ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  4. I had this problem, I went on my old laptop with a different edition of windows and it worked perfecto, It's something to do with windows 7, I think the way to fix it is to install a new OS (yes I know this sounds painful, but I spent days trying to work out why it wouldn't work with windows 7 and the only way I could find a solution was by using a different OS) don't worry it's not your fault it's microsofts, I suggest getting windows XP or update windows 7 to service pack 1 if you have not already ( thats one solution I never tried) Edit: just re-read what you said and you say that it crashes with one engine but not the other, my new solution is to update direct x
  5. Before you post things such as 'Originality', 'Good storyline' or 'Fun Quests' remember that posting things like this won't help but if you could possibly expand on your posts then that will be wonderful. I made this thread as I am developing a game but i'd like to know what YOU seek in an eclipse game, I already know what I like to see and I already have things planned but it would be great to hear(or say I shall read) your opinions. Thank you
  6. How can i change the button to bring up the quest, I have all my settings set correctly but when ever i click ctrl while on the npc it doesn't bring up the quest box
  7. Perfect thank you ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
  8. Couldn't find what you meant so I uploaded the files: http://www.freemmorpgmaker.com/files/imagehost/pics/e5a4dbce024051b12eb1d473aa45f04c.rar
  9. Indeed I shall >! Public Sub DrawPlayerName(ByVal Index As Long) >! Dim TextX As Long >! Dim TextY As Long >! Dim color As Long >! Dim Name As String >! ' If debug mode, handle error then exit out >! If Options.Debug = 1 Then On Error GoTo errorhandler >! ' Check access level >! If GetPlayerPK(Index) = NO Then >! Select Case GetPlayerAccess(Index) >! Case 0 >! color = RGB(255, 96, 0) >! Case 1 >! color = QBColor(DarkGrey) >! Case 2 >! color = QBColor(Cyan) >! Case 3 >! color = QBColor(BrightGreen) >! Case 4 >! color = QBColor(Yellow) >! End Select >! Else >! color = QBColor(BrightRed) >! End If >! Name = Trim$(Player(Index).Name) >! ' calc pos >! TextX = ConvertMapX(GetPlayerX(Index) * PIC_X) + Player(Index).XOffset + (PIC_X \ 2) - getWidth(TexthDC, (Trim$(Name))) >! If GetPlayerSprite(Index) < 1 Or GetPlayerSprite(Index) > NumCharacters Then >! TextY = ConvertMapY(GetPlayerY(Index) * PIC_Y) + Player(Index).YOffset - 16 >! Else >! ' Determine location for text >! TextY = ConvertMapY(GetPlayerY(Index) * PIC_Y) + Player(Index).YOffset - (DDSD_Character(GetPlayerSprite(Index)).lHeight / 6) + 16 >! End If >! ' Draw name >! Call DrawText(TexthDC, TextX, TextY, Name, color) >! Dim i As Long >! Dim npcNum As Long >! For i = 1 To MAX_QUESTS >! 'check if the npc is the next task to any quest: [?] symbol >! If Quest(i).Name "" Then >! If Player(MyIndex).PlayerQuest(i).Status = QUEST_STARTED Then >! If Quest(i).Task(Player(MyIndex).PlayerQuest(i).ActualTask).NPC = npcNum Then >! Name = "[?]" >! TextX = ConvertMapX(MapNpc(Index).x * PIC_X) + MapNpc(Index).XOffset + (PIC_X \ 2) - getWidth(TexthDC, (Trim$(Name))) >! If NPC(npcNum).Sprite < 1 Or NPC(npcNum).Sprite > NumCharacters Then >! TextY = ConvertMapY(MapNpc(Index).Y * PIC_Y) + MapNpc(Index).YOffset - 16 >! Else >! TextY = ConvertMapY(MapNpc(Index).Y * PIC_Y) + MapNpc(Index).YOffset - (DDSD_Character(NPC(npcNum).Sprite).lHeight / 4) >! End If >! Call DrawText(TexthDC, TextX, TextY, Name, QBColor(Yellow)) >! Exit For >! End If >! End If >! 'check if the npc is the starter to any quest: [!] symbol >! 'can accept the quest as a new one? >! If Player(MyIndex).PlayerQuest(i).Status = QUEST_NOT_STARTED Or Player(MyIndex).PlayerQuest(i).Status = QUEST_COMPLETED_BUT Then >! 'the npc gives this quest? >! If NPC(npcNum).QuestNum = i Then >! Name = "[!]" >! TextX = ConvertMapX(MapNpc(Index).x * PIC_X) + MapNpc(Index).XOffset + (PIC_X \ 2) - getWidth(TexthDC, (Trim$(Name))) >! If NPC(npcNum).Sprite < 1 Or NPC(npcNum).Sprite > NumCharacters Then >! TextY = ConvertMapY(MapNpc(Index).Y * PIC_Y) + MapNpc(Index).YOffset - 16 >! Else >! TextY = ConvertMapY(MapNpc(Index).Y * PIC_Y) + MapNpc(Index).YOffset - (DDSD_Character(NPC(npcNum).Sprite).lHeight / 4) >! End If >! Call DrawText(TexthDC, TextX, TextY, Name, QBColor(Yellow)) >! Exit For >! End If >! End If >! End If >! Next >! ' Error handler >! Exit Sub >! errorhandler: >! HandleError "DrawPlayerName", "modText", Err.Number, Err.Description, Err.Source, Err.HelpContext >! Err.Clear >! Exit Sub >! End Sub
  10. Hello, I've been looking through the code and I can't find anything wrong with it, I also tried some apparent "solutions" but I still get the same error. The error I get is a run time error (9) subscript out of range and it highlights "If NPC(npcNum).QuestNum = i Then" I use Project Vertigo and this started when I added Alatar's Quest system (which doesn't work as NPC's don't want to give me the quest.)
  11. I fixed it, just having a slight problem in-game, npc doesn't want to give me the quest, most likely just me, I made the npc a quest giver and set which quest but doesn't appear to be giving a quest, unless i'm doing something wrong. ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  12. did that and I read through the tutorial again and i am getting this now compile error variable not defined and highlights this: npcNum
  13. i have runtime error (9) error highlights this: CopyMemory ByVal VarPtr(NPC(n)), ByVal VarPtr(NpcData(0)), NpcSize
  14. No recommendations for Project Vertigo? ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  15. Eragon what if you wanted the pet thing to move? Like for example I want to change the layout and I encounter the resolution issue, is there no way around thia
  16. bintin

    GUI layout

    Hello, I'm requesting a simple GUI layout, there is no theme and pictures aren't needed as I can make them myself but it's just the GUI layout I need (the main one not the menu one) I'm using project vertigo 1.1.2 and Id like the entire picscreen to cover the background and for everything else to sit on top of that, I'd like the buttons to be places at the top along with the hp, experience and sp bar to be, I'd like the dialog boxes to be placed on the right hand side and I would love the chat box to be on the bottom left next to the key bar which is on the bottom right. Thanks
  17. Hello, I'm attempting to redesign my interface (main), I know exactly how to do it but as soon as I resize picScreen and test it, it crashes my laptop but everything else is fine. also how do I place the buttons, hp, experience and gold bar above the picScreen ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png) thanks. I'm using project vertigo 1.1.2 if that is any help.
  18. You have not installed the library files from the main post, you cant now because link is broken -.-
  19. libraries download link is broken pls reupload
  20. This has so much more potential, can I add any scripts to it like the quest system with no hassle (like copy and pasting code) or does it require some good coding skills :\
  21. Thanks guys, I'll be looking into more VPS options and i'll reconsider port-forwarding.
  22. Hello world, i'd like to know if this is okay to run a eclipse server on a linux vps Disk Space **10** GB Total: **4**CPU **512** MB RAM 1 IP address **Unlimited** Traffic Based on OpenVZ Remote Management ubuntu 12 and if so, could i possibly have help setting it up? i have never ever ran a vps before. ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)
×
×
  • Create New...