[Tut]Changing colors in lobby/game room/etc

Page 1 of 2 12 LastLast
Results 1 to 25 of 33
  1. #1
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    [Tut]Changing colors in lobby/game room/etc

    Use photoshop to see what RGB things you want

    In my opinion this isn't to good because I can't really think of what looks better then the current choices but some may want to do this. Its quite easy but some people may not know how to do it.

    In default.mrs theirs XML files by the name "Stage", "lobby", etc. So in this tut i'll just use changing the level color in lobby as an example.

    Open "Lobby.xml" and search for "Lobby_PlayerSpecLevel". This will show up

    <!-- Label : 플레이어 상세정보 표시(Level) -->
    <LABEL item="Lobby_PlayerSpecLevel" parent="Lobby">
    <FONT>FONTa9</FONT>
    <TEXTCOLOR>
    <R>205</R>
    <G>205</G>
    <B>205</B>
    </TEXTCOLOR>
    So change the
    <R>205</R>
    <G>205</G>
    <B>205</B>
    To what you want. For example if you want it to be a yellow color you'd change it to
    <R>227</R>
    <G>225</G>
    <B>56</B>
    So ingame it will change it from


    to


    You can do that to change text in Lobby, game room, shop, etc. To change it in the game room use Stage.xml. To change it in the shop use Shop.xml.
    Last edited by Nobody666; 30-07-09 at 03:18 AM.


  2. #2
    Account Upgraded | Title Enabled! X-Weaver is offline
    MemberRank
    Jan 2009 Join Date
    XDLocation
    443Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    nice tut xD

  3. #3
    Account Upgraded | Title Enabled! shortymant is offline
    MemberRank
    Nov 2008 Join Date
    606Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    nice tut. good for alot of people.
    I was looking for something like this a while back. Dont need it now tho :P

  4. #4
    DRGunZ 2 Creator wesman2232 is offline
    MemberRank
    Jan 2007 Join Date
    Erie, PALocation
    4,872Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    pretty cool. but white and black are the almighty default colors :P

  5. #5
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Quote Originally Posted by wesman2232 View Post
    pretty cool. but white and black are the almighty default colors :P
    idk the default im using is the orange name and white for the others. Tried some others I thought would look cool but they didn't turn out well.

  6. #6
    Status: Pooping eele is offline
    MemberRank
    Jul 2008 Join Date
    The NetherlandsLocation
    915Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Lol, i think that the most people are to lazy for looking in all there XML's than you will find this.. E/z:O
    But yeah, nice tut anyway. This was old for me and for some other people tought so:P

  7. #7
    Valued Member gign919191 is offline
    MemberRank
    Apr 2008 Join Date
    EarthLocation
    124Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Thank you for that tutorial, it helps me alot :)

  8. #8
    Account Upgraded | Title Enabled! Exiled Hero is offline
    MemberRank
    Nov 2008 Join Date
    Multiple PlacesLocation
    202Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    There's another way by doing it in the runnable but I can't find it. D:

    Kinda need to for my runnable since all names show red.

  9. #9

    Re: [Tut]Changing colors in lobby/game room/etc

    this is Very good for Begginers or for people who wants to take an Step Forward on editing More stuff then just GFX xD!! But yea its good tut anyway some people doesnt know this =O

  10. #10
    Apprentice mukul is offline
    MemberRank
    Jul 2008 Join Date
    IndiaLocation
    21Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Nice 10/10
    just wanna know how in my server my Developer is in orange clour how to change that and about the codes of colour like u told for yellow but i wanna know the rest :D

  11. #11
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Quote Originally Posted by mukul View Post
    Nice 10/10
    just wanna know how in my server my Developer is in orange clour how to change that and about the codes of colour like u told for yellow but i wanna know the rest :D
    ASM

    and theirs a thing called google. Look them up. Im not going to post every single code.

  12. #12
    Account Upgraded | Title Enabled! CrashPoint is offline
    MemberRank
    Sep 2008 Join Date
    VietNamLocation
    706Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    nice TUT n useful for beginner :P

  13. #13
    Account Upgraded | Title Enabled! xHalloweenX is offline
    MemberRank
    Sep 2007 Join Date
    Jonesboro, ArkaLocation
    218Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    some are done in the runnable

    These are pulled from the Trinity Runnable

    Example:
    00402300 /$ 68 00695E00 PUSH Gunz.005E6900 ; ASCII "FONTa10_O2Wht"

    The Color is read from Templates.xml in default.mrs


    <FONTTEMPLATE item="FONTa10_O2Wht">
    <FONTSET>Arial</FONTSET>
    <FONTHEIGHT>10</FONTHEIGHT>
    <BOLD/>
    <OUTLINESTYLE>2</OUTLINESTYLE>
    <COLORARG1>
    <A>255</A>
    <R>255</R>
    <G>255</G>
    <B>255</B>
    </COLORARG1>
    <COLORARG2>
    <A>255</A>
    <R>0</R>
    <G>0</G>
    <B>0</B>
    </COLORARG2>
    </FONTTEMPLATE>

    Soem also use ^#`s in runnabel , an example would be the shop and the chatbox

    004380D3 |. 68 D0B25E00 PUSH Gunz.005EB2D0 ; ASCII "^9%s : %d %s"

    Thats from the shop where it dispalys the info of your character

    00518A1A |. 68 CC545F00 |PUSH Gunz.005F54CC ; ASCII "^4%s^0 : %s"

    Thats from Chat

    Basic Chat
    ^3 Color
    %s Name
    ^0 Color
    : %s Message

  14. #14
    (。◕‿‿◕。) Nobody666 is offline
    MemberRank
    Oct 2008 Join Date
    1,773Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    ah, Trinity runnable, haven't gotten around to looking at it =/. XD but some of that is asm so eh, wouldn't get it. I did figure some were done from runnable, cause I didn't find what I was originally looking for in these files. Just im not good enough with ollyDbg to look for it and I wouldn't know what to look for

    mmk, never mind on part of what I said, I just looked in OllyDbg, and that makes it alot easier XD

  15. #15
    Account Upgraded | Title Enabled! sayuta is offline
    MemberRank
    Jan 2007 Join Date
    The NetherlandsLocation
    205Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Quote Originally Posted by mukul View Post
    Nice 10/10
    just wanna know how in my server my Developer is in orange clour how to change that and about the codes of colour like u told for yellow but i wanna know the rest :D
    ZGame::GetUserNameColor ZGetMyInfo==NULL

    Rest i wont tell.

  16. #16

    Re: [Tut]Changing colors in lobby/game room/etc

    All referenced text strings.

    Thanks again fisher.

  17. #17
    Member cartola is offline
    MemberRank
    Aug 2008 Join Date
    58Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    idea: use Photoshop to see R,G and B values

    Red = R
    Blue = B
    Green = G

  18. #18
    Apprentice iKear is offline
    MemberRank
    Nov 2008 Join Date
    CanadaLocation
    5Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Thank you I was wondering before how to chaneg it.....thank you...

  19. #19
    Faraday Das Neves Jizeth is offline
    MemberRank
    Sep 2008 Join Date
    VenezuelaLocation
    392Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    nice tut .

  20. #20
    Enthusiast Tigran is offline
    MemberRank
    Feb 2009 Join Date
    37Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Thanks man, this made my interface look epic =)

  21. #21
    Awaken the Devil inside! DeathniteR is offline
    MemberRank
    Mar 2008 Join Date
    The NetherlandsLocation
    380Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    UR interface?!!? xD e pic phailzors :P and nice tut made OUR interfece epicly awsome :D

  22. #22
    Proficient Member ygoraugusto is offline
    MemberRank
    Jan 2009 Join Date
    167Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    very good thanks

  23. #23
    Browser. Nova is offline
    MemberRank
    Nov 2008 Join Date
    --Location
    400Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Nice one! ;D I'll do some TuT's too. I'm bored :[

  24. #24
    Account Upgraded | Title Enabled! pmknpl07 is offline
    MemberRank
    Apr 2009 Join Date
    Lansing MILocation
    228Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Nice, I just edited the colors :P

    Worked!

    ---------- Post added at 03:50 AM ---------- Previous post was at 03:22 AM ----------

    EDIT:

    Lol nvm, gunz crashes when I try to load it........

  25. #25
    Account Upgraded | Title Enabled! pmknpl07 is offline
    MemberRank
    Apr 2009 Join Date
    Lansing MILocation
    228Posts

    Re: [Tut]Changing colors in lobby/game room/etc

    Hmm, anyone know why after I select my character, the screen stays black?



Page 1 of 2 12 LastLast

Advertisement