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

clark

Members
  • Posts

    508
  • Joined

  • Last visited

    Never

Everything posted by clark

  1. Map tint means : Change the whole map color by using map properties ? ^^
  2. I found a bug i don't know if other already did found it or not but here we go : **Bugs:** **1-** **Open your skill inventory , and click as much as you want on it , you will see that +(numbers) will appear above your character head . Also if you put the skill on the hotbar and you click on it again , it will do the same.** **2 -** **The npc when pressing ctrl front of him , doesn't talk even if you put a text inside the "Say:" option (npc editor)** **Suggestion :** **1-** **Talking to Npc's by clicking on them instead of using ctrl** **2-** **Tchatbox visible only by pressing enter (like EA)** **3-** **Add Edit Account into the server** **4-** **Make a Gold picture at the bottom of the inventory window where money is displayed in a label , once you click on the gold icon it pop-up a window where it's say's how much gold would you like to drop? Reason to this suggestion : Because like that when we have 32 555 gold by default it just show 32k and also because like that it will not take place into the inventory . Don't forget also to make this readed by the event when it Take item "gold" .** **Example picture :** **![](http://i41.tinypic.com/28t9vs2.jpg)** **5-** **Players can walk through each others when the map property is selected ( so people don't get stuck when someone block the enter of a map or anything like that** **6-** **Make separate Gui pictures for Shop , inventory , skills , options etc so we could edit the picture for different windows not one for all of them.** That's it for the moment ![:)](http://www.touchofdeathforums.com/community/public/style_emoticons//smile.png)!
  3. Oh nice ! What's going to be released in the next version?
  4. Hey death , as i saw you stopped EA are you sure that Eclipse Reborn will be well fixed (more than EA) and with features ? I'm asking that due to the fact that the engine is CS:de so i'm not sure if you could fix it completly or just a part.
  5. You should try again to port cs:de loading /rendering to EA , because you will save more time than fixing ER and adding features on it just to say.
  6. O_o wow is that going to be better than EA ? xD Good Continuation
  7. Zeph you installed the no-ip and runned Duc3.0 (the no-ip program) ? did you entered your login password and checked the no-ip adress? if so and it still don't work then rename your server.exe to another name like server2.exe and right on it make it "run as admin" then you'll see again the firewall message telling you to authorize accept it and use this : http://www.touchofdeathforums.com/community/index.php?/page/index.html/statuschecker.html Type the no-ip adress and the port inside of your server config.ini and see if it say offline or online make every methods and check it when it's online then keep that configuration Don't forget to tell your friends to change the ip adress in their config.ini to the no-ip one it's something xxx.no-ip.org or something that you selected Also keep in mind that you cannot run your client using the no-ip adress on your computer others can but you can't .
  8. Disable your computer firewall and let them try again , if it works then you should open the port number you put in the config.ini to the firewall . If it don't work , then enable again your computer firewall and open the ports in you router. If it don't work again … then use no-ip
  9. I have a question ,How can i make the item , inventory , option buttons linear I mean i want them to be on the same line not one on the other one. Could anybody tell me the exact code to look in ?
  10. I'm not sure but i think the Quest system is specially only for EM and also it isn't bugfixed so … Nevermind we all think that the missing feature is Quest system.
  11. Thanks Deathbeam for this engine ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png) !
  12. Oh ok i through i was also in 3.0
  13. I did it , maybe someone else know it already that's why i posted here.
  14. Hi , **Engine using : EA 3.0.17 Dx : 8 Problem : Problem is occuring only in the Client , not in the DevClient. When i open bank i can set the amount of gold i want to put in the bank , but for the other items the amount window doesn't appear. Also if i have 3 apples (consume item) i try to put all of them in the bank it takes 3 of my inventory but display 1 in the bank. This happen the same when someone trade . Thanks in Advance.**
  15. Deathbeam , str , int , etc doesn't affect anything when we boost it how can i fix that? And how to make so each time we boost it , spells are doing more damages . Also i found this bug only occuring with the client.exe not with the ClientDev [http://www.touchofdeathforums.com/community/index.php?/topic/130344-trade-and-bank-problem/](http://www.touchofdeathforums.com/community/index.php?/topic/130344-trade-and-bank-problem/)
  16. Deathbeam , then please don't forget once you finished , to make a converter so each people could go to the latest version , and if you have fixes redo bugfixes thread i liked that ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png) And good continuation !
  17. clark

    D3DX8 ScreenShots

    > No, this only renders what is on a form or your whole computer screen. Since the rest of the map is never drawn anywhere, this has no way of saving/rendering the rest of your map. Ok , Thanks.
  18. clark

    D3DX8 ScreenShots

    Looking Good i'm going to try this later , i have a question is that possible to make a screenshot of the entire map (even if not completly visible on the game screen) with this code? and if yes how?
  19. Oh i through you were talking about game content sorry.
  20. > Damn this rapid development, its faster for me to move everything to an updated version then it is then it is to move my additions over. Same problem here ^^ i already told him about make a Converter for it i hope he will do it ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png)
  21. > Nope just the top value. It will be something like GUIWindow(Gui_blablabla).y + 10 or something change the 10 to 50/55/60 I Changed this line with width + 10 and Height + 80 and it worked ^^ i don't know if i did it good but it works xD ``` Public Sub DrawShopItemDesc() Dim shopSlot As Long If Not GUIWindow(GUI_SHOP).visible Then Exit Sub shopSlot = IsShopItem(GlobalX, GlobalY) If shopSlot > 0 Then If Shop(InShop).TradeItem(shopSlot).Item > 0 Then DrawItemDesc Shop(InShop).TradeItem(shopSlot).Item, GUIWindow(GUI_SHOP).X + GUIWindow(GUI_SHOP).Width + 10, GUIWindow(GUI_SHOP).Y DrawItemCost True, shopSlot, GUIWindow(GUI_SHOP).X + GUIWindow(GUI_SHOP).Width + 10, GUIWindow(GUI_SHOP).Y + GUIWindow(GUI_DESCRIPTION).Height + 80 End If End If End Sub ``` **DrawItemCost True, shopSlot, GUIWindow(GUI_SHOP).X + GUIWindow(GUI_SHOP).Width + 10, GUIWindow(GUI_SHOP).Y + GUIWindow(GUI_DESCRIPTION).Height + 80**
  22. Thank you ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png) Just to precise for the others : .width + 10 and .Height + 80 (correct values ![:P](http://www.touchofdeathforums.com/community/public/style_emoticons//tongue.png) )
  23. Abhi , i can't make it work on EA 3.0.17 (the one you sent me does unrecovarable dx8 error) please take a look at it :/
×
×
  • Create New...