Login
User Name:

Password:



Register

Forgot your password?
do_owhere recursive
Author: Khonsu
Submitted by: Khonsu
Changes list / Addchange
Author: Khonsu
Submitted by: Khonsu
6Dragons mp3 sound pack
Author: Vladaar
Submitted by: Vladaar
AFKMud 2.2.3
Author: AFKMud Team
Submitted by: Samson
SWFOTEFUSS 1.5
Author: Various
Submitted by: Samson
Users Online
AhrefsBot, Bing

Members: 0
Guests: 32
Stats
Files
Topics
Posts
Members
Newest Member
489
3,791
19,644
596
Elwood

Today's Birthdays
There are no member birthdays today.
» SmaugMuds » General » Coding » health bar code not displayin...
Forum Rules | Mark all | Recent Posts

health bar code not displaying correctly. why?
< Newer Topic :: Older Topic >

Pages:<< prev 1 next >>
Post is unread #1 Mar 21, 2018 1:11 am   Last edited Mar 21, 2018 2:28 am by joeyfogas
Go to the top of the page
Go to the bottom of the page

joeyfogas
Apprentice
GroupMembers
Posts78
JoinedAug 28, 2016

 
can anyone help out and tell me why this code doesn't display right?

it is supposed to be a healthbar based on health percentage
send_to_char("[",ch);
int value = 100 * (ch->hit/ch->max_hit) ;
                          for (start = 1; start <= 100; start++ )

                                {
                          if (start <= value )
                                        send_to_char("|",ch);
                                  else
                                        send_to_char(" ",ch);
                                }
                    send_to_char("]  \r",ch);


it seems to only display blank unless I am at 100% health.

it should display similar to this at 50%
[|||||||||||||             ]

Post is unread #2 Mar 21, 2018 2:16 am   Last edited Mar 21, 2018 3:08 am by joeyfogas
Go to the top of the page
Go to the bottom of the page

joeyfogas
Apprentice
GroupMembers
Posts78
JoinedAug 28, 2016

 
i tried it with float value.. still same outcome

send_to_char("[",ch);
float value = 100.0 * (ch->hit/ch->max_hit) ;
                          for (start = 1; start <= 100; start++ )

                                {
                          if (start <= value )
                                        send_to_char("|",ch);
                                  else
                                        send_to_char(" ",ch);
                                }
                    send_to_char("]  \r",ch);


----------------------------------------------------------------------------
You are a level 65 Elf Adventurer from  O'ran Thalore.
Your TIER rank is 0.

STR  :  10      Attack:      0                  Health: 300/600
[                                                                               
                     ]  


edit: i am aware that the bar is too large... focused on getting it working before making it look good

Post is unread #3 Mar 21, 2018 12:50 pm   
Go to the top of the page
Go to the bottom of the page

joeyfogas
Apprentice
GroupMembers
Posts78
JoinedAug 28, 2016

 
Nick Gammon helped out... the equation would not work unless it was changed as such

float value = 100.0 * ((float) ch->hit / (float) ch->max_hit) ;


Pages:<< prev 1 next >>