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

Quess

Members
  • Posts

    66
  • Joined

  • Last visited

    Never

Everything posted by Quess

  1. Yea I wish it was so easy… Unfortunately, there is no separate code for each piece of equipment. There's just one relating to paperdoll from item properties. And I have no idea what to do with it.
  2. Hello, What shall I do to add a helmet paperdoll shown without equipping an item? It'd be hair paperdoll which'd be shown only when no helmet is equipped.
  3. Yea, it's cool. But it isn't 32x32, is it? ;d
  4. Quess

    Max stats

    This has to work… I did this with the latest Eclipse Origins, but had problems to do it with some other engine. Just try to download new Eclipse and do everything again.
  5. Quess

    Map editor

    Kamii is right. You shouldn't make one big map as eclipse can have serious problems to redraw it in a short time… Maps with sizes 100x100 may cause longer loading etc. so just think what will happen with 10000x10000 ;o And don't even think of adding animations to map like this ^^
  6. Use the search engine >.< [http://www.touchofdeathforums.com/smf/index.php/topic,72593.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,72593.0.html)
  7. Quess

    [EO 2.0] Algorithms

    You just need a little time ;) It took me hours to randomize them and modify each in different way ^^
  8. Quess

    [EO 2.0] Algorithms

    I'm not sure but probably you got to work with each formula. But there aren't many of them.
  9. Quess

    [EO 2.0] Algorithms

    Hmm, let's play with resources' health for example. Find: ``` ResourceCache(mapNum).ResourceData(i).cur_health = Resource(Resource_index).health ``` And replace with: ``` ResourceCache(mapNum).ResourceData(i).cur_health = RAND((Resource(Resource_index).health * 0.8), (Resource(Resource_index).health * 1.2)) ``` PS: You can do the same with tools' damages. It just allows you to break the monotony so that resources' health can be - + 20%. Randomness function works like that: ``` RAND(minimum, maximum) ``` If you want to make the game more balanced just play with weapons/spells damages by adding randomness depending on player's intelligence, level, enemy's stats.
  10. Quess

    [EO 2.0] Algorithms

    You can play around with everything using random function: ``` RAND(X, Y) ``` If you want to change exp algorithms you can play around with this: ``` GetPlayerNextLevel = (50 / 3) * ((GetPlayerLevel(index) + 1) ^ 3 - (6 * (GetPlayerLevel(index) + 1) ^ 2) + 17 * (GetPlayerLevel(index) + 1) - 12) ```
  11. Quess

    Resource chances

    Thanks it really helped me ^^ ``` rndNum = RAND(1, 10) If rndNum >= 8 Then GiveInvItem index, Resource(Resource_index).ItemReward, 1 End If ```
  12. Btw: Both sprites were made with one shape so it's easy to make some paperdolls for them. Examples: ![](http://img607.imageshack.us/img607/8480/84804584.png) ![](http://img837.imageshack.us/img837/6923/13873589.png) ![](http://img820.imageshack.us/img820/7580/43354358.png) ![](http://img847.imageshack.us/img847/9027/47555336.png) Hope I helped you ;)
  13. Here are some made by me ^^ You can use them if you are interested. (faces were made with Face Maker XP) ![](http://img856.imageshack.us/img856/734/68715587.png) ![](http://img811.imageshack.us/img811/7974/99996856.png) ![](http://img198.imageshack.us/img198/55/66680481.png) ![](http://img593.imageshack.us/img593/8476/29067980.png)
  14. Quess

    Resource chances

    How can I make resources' item rewards have some chance to get them? Not every time. I've found this line but don't really know what to do with it: ``` GiveInvItem index, Resource(Resource_index).ItemReward, 1 ```Also tried to play with RAND function but this doesn't help there.
  15. Quess

    My Sprites

    Why is he naked? ;o Maybe you should add some underwear? ;D Btw: Is this boy or girl? Because it neither have cock nor boobs ;DD
  16. Hmm… What to say... WTF?!
  17. @Eltony: > lol its not i just find it ridiculous to have a large amount of stats. But when you have many item types and you want each of them to give some stats, 255 may not be enough ;p It really depends on how easy is it to gain exp, how many stats items give and etc.
  18. I think that he's wondering if one (smaller) paperdoll can hide a bigger one with its transparency - not sure if I'm right. You'd have to write some script which hides paperdoll(x) when paperdoll(y) > 0\. But I don't know how ;p
  19. Try this: [http://www.touchofdeathforums.com/smf/index.php/topic,72593.0.html](http://www.touchofdeathforums.com/smf/index.php/topic,72593.0.html)
  20. Quess

    CheckBox options

    How can I put sounds/music options into graphical CheckBox instead of OptionButton. I just want it to be "On" when checked and "Off" when not. Maybe some another solutions to do this?
  21. Quess

    Main GUI

    Ohh I know I've already fixed the ability button but forgot to paste it in GUI as well ^^ I'm not gonna add any jukebox. There are just gonna be on and off buttons, as I replaced options frame with equipment which contains 12 types of items.
  22. Quess

    Cloth armor

    I quite like like it ;) Is it gonna be a paperdoll? I just think that line in the middle of the robe should be darker and the shape of the hat shouldn't be so simple. All in all, it's cool.
  23. Quess

    Main GUI

    @IdoFreePixel: > Why is the inventory the only one slanted. Because it rotates on hover (printscreen doesn't show cursor on it) ^^
  24. Quess

    Main GUI

    Almost done. Now I just have to add options on the right, change the text font, create some sliders and maybe some more details. Tell me what you think.
  25. Quess

    Eq position

    I don't need to remove face, as equipment will be placed in new equipment button. Thanks for help ;)
×
×
  • Create New...