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

hisherwin

Members
  • Posts

    1964
  • Joined

  • Last visited

    Never

Everything posted by hisherwin

  1. I just modified it , Feel free to use it… Its not my own..
  2. What is Duration and Interval at Spell editor?
  3. w3w! I am only good at Changing :P
  4. hisherwin

    Animation

    The Animation Spell is broken , But Casting Animation is Fine. AT SPELL EDITOR
  5. hisherwin

    Animation

    How do i fix Animation Spell when casting , Casting Animation work fine , But animation is now working , How do i fix that?
  6. Its not working, It show only Blank Bubble Chat.. There is no words and letters
  7. As a Owner , I do alot of things , Trying to test some features , I don't have time to make something else.
  8. What did you do except for that 3 Things and adding NPC , Before the error came?
  9. hisherwin

    Quest

    Well , I have a Problem at Quest System.. When i accept the quest , And battle a monster that is **NOT** on the quest , The quest will automatically Be finished , And when i talk to the Quest Giver it said its not , But then , I did not Kill any monster i just kill the monster on the Quest , but It said the quest isn't finish yet? Any fix for this please?
  10. hisherwin

    Math problem

    How many x and y map size do i need on 647 width and 479 height I SUCK AT MATH
  11. We are Currently need someone who can help Blood of Magic to map!! Here is the download site: [Click Here](http://www.4shared.com/rar/3eGcgj18/ClientV2.html) The new version contain alot of Features Like Custom GUI..
  12. hisherwin

    Lagging

    What Gb size is recommended?
  13. How can i make this? how can i converst CS:DE tileset to EO?
  14. @Wing: > He wants to have the damage calculate based on the defence of the NPC, and the Strength of the weapon. Oh so he is asking to someone code it? or it is exist already?
  15. As far as i know , You can edit the damage , Range , Speed , and Pic of projectiles… What do you mean about adding def? You can add damage on the picture below.. if that frm didn't shown up while you are editing the item , You'll have to save it and edit it again ,I'm sure it will show up.
  16. hisherwin

    Stat problem

    Is there a Way to edit the Max Stat points?
  17. w0w Another moderator .. Hi i'm sherwin , good to see you there.
  18. @Eckhart: > ducking MASSIVE NECRO Are you Mad Bro? easy there… And btw , Coolmagicdude2 the link is not working....
  19. @Gamzee: > Implented in Eclipse, it could duck up a weak system. My PC hangs up when I screenshoot a 100x100 map, and if your algorithm tries do to this with all maps, it may hangs up the system. > /nonsense 100x100 map? how long did you map that kind of map?
  20. Do anyone have a Sprite Resource of made a Sprite of Ironman Hulk Thor And more Marvel Heroes? I'm kinda not good at graphic , If anyone have please share some.
  21. hisherwin

    Lagging

    Alright.. i going to use 25x25 as limit.. Thanks too all…........ Map Size Map Size O.o some game use over 50x50 without lagging :(
  22. hisherwin

    Lagging

    What is the limit of maps? i made 50x50 limit.. What limit do you suggest to remove the lags?
  23. Getting Annoyed by the Parry! that always shown when Monster attacking you? Well i know this is just a Easy one but , For someone who doesn't know it here is the tutorial Server-Side on modCombat Find This on Player Attacking NPC ``` ' check if NPC can avoid the attack If CanNpcDodge(npcNum) Then SendActionMsg MapNum, "Dodge!", Pink, 1, (MapNpc(MapNum).Npc(mapNpcNum).x * 32), (MapNpc(MapNum).Npc(mapNpcNum).y * 32) Exit Sub End If If CanNpcParry(npcNum) Then SendActionMsg MapNum, "Parry!", Pink, 1, (MapNpc(MapNum).Npc(mapNpcNum).x * 32), (MapNpc(MapNum).Npc(mapNpcNum).y * 32) Exit Sub End If ``` Replace it with ``` ' check if NPC can avoid the attack If CanNpcDodge(npcNum) Then SendActionMsg MapNum, "Missed!", Pink, 1, (MapNpc(MapNum).Npc(mapNpcNum).x * 32), (MapNpc(MapNum).Npc(mapNpcNum).y * 32) Exit Sub End If If CanNpcParry(npcNum) Then SendActionMsg MapNum, "Missed!", Pink, 1, (MapNpc(MapNum).Npc(mapNpcNum).x * 32), (MapNpc(MapNum).Npc(mapNpcNum).y * 32) Exit Sub End If ``` And still on the same mod , Find this at NPC Attacking Player ``` ' check if PLAYER can avoid the attack If CanPlayerDodge(index) Then SendActionMsg MapNum, "Dodge!", Pink, 1, (Player(index).x * 32), (Player(index).y * 32) Exit Sub End If If CanPlayerParry(index) Then SendActionMsg MapNum, "Parry!", Pink, 1, (Player(index).x * 32), (Player(index).y * 32) Exit Sub End If ``` Replace it with ``` ' check if PLAYER can avoid the attack If CanPlayerDodge(index) Then SendActionMsg MapNum, "Missed!", Pink, 1, (Player(index).x * 32), (Player(index).y * 32) Exit Sub End If If CanPlayerParry(index) Then SendActionMsg MapNum, "Missed!", Pink, 1, (Player(index).x * 32), (Player(index).y * 32) Exit Sub End If ``` You can change the "Missed!" Into something you would like. Ehehe i think this is useless to Expert.
×
×
  • Create New...