Thread: Green Hit Splats...

Results 1 to 2 of 2
  1. #1 Green Hit Splats... 
    Registered Member
    Deadly Uzi's Avatar
    Join Date
    Jul 2008
    Posts
    994
    Thanks given
    177
    Thanks received
    87
    Rep Power
    362
    Hey! I just have a quick question(Seriously...)

    I'm using Emulous 1.7 and I'm trying to add poison, so I have two questions:

    1: How do I make hit splats green?
    2: How do I make it so like every minute or so the hit splatt appears and after like every 2 (6's) it goes down to 5's.

    Thanks GREATLY in advance!
    -Deadly Uzi
    Attempting to develop a multi-revision library. See it on GitHub.
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    Aug 2008
    Posts
    162
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    ummm well you should go into player or playerhandler (i forget) and search something like
    "hptype"
    then you should see something that has to do with blue hitting red hitting and green, you should be able to figure out from there.
    The going from 6's to 5's should be like
    if(misc.random(20) == 1 && poisoned && poison <= 2){
    hitdiff = 6;
    poison ++;
    }
    if(misc.random(20) == 1 && poisoned && poison >=2 && poison <= 4){
    hitdiff = 5;
    poison ++;
    }


    those aren't perfect but hopefully you get the picture.
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •