What's new

C/C++ How do i fix this [Help Needed]

  • Thread starter Fuzzy Modz v1
  • Start date
  • Views 801
Fuzzy Modz v1

Fuzzy Modz v1

Newbie
Messages
7
Reaction score
0
Points
20
Sin$
0
Hello There, I forgot how to fix this little help please

screen shot: https://prnt.sc/hok8dm
 
Twain

Twain

Kamehameha!
Messages
707
Reaction score
257
Points
190
Sin$
0
Hello There, I forgot how to fix this little help please

screen shot: https://prnt.sc/hok8dm
What exactly is the problem? Some code or even just an indicator of what your problem is would be nice.
Anyways for me the Picture indicates that the Text in your Mod Menu is off (lowered on the y-Axis), i guess there is a DrawText() function somewhere, that takes x and y coordinates and you probably call it like this:

Code:
void DrawText(std::string text, float x, float y, ...){
}

for(int i = 0; i < players; i++)
      DrawText(GetPlayerName(i), x, originalY + (i * spaceBetweenLines), ...);

This is just pseudo since you didn't provide any code at all, but to fix your problem all you have to do is play around with the value you currently have at the position of originalY.

Some Advice: I'm pretty sure you are using another persons base for this and if your problem got solved by what i just said, you should really remove the "Made by: Fuzzy Modz" until you have the slightest clue of whats going on and how stuff works in it. That aside you could also be some pro coder asking something very difficult and i just misinterpreted the picture. So here Advice No.2: If you are asking for help, make sure to be specific on what you need help with, provide some insights and maybe even code you already worked on/tested. Just slapping a picture in front of someone and telling them "go ahead and fix this for me" is sort of rude in it's own way and prevents others from properly answering your question and you're just wasting the time of everyone involved.
 
Top Bottom
Login
Register