View Poll Results: Would it benefit you to have server-sided commands for a local server and/or lan.

Voters
35. You may not vote on this poll
  • Yes

    29 82.86%
  • No

    6 17.14%
Page 9 of 12 FirstFirst ... 7 8 9 10 11 ... LastLast
Results 81 to 90 of 113

Thread: OpenSauce FoV and Third Person etc...

  1. #81
    Senior Member FireScythe's Avatar
    Join Date
    Sep 2006
    Location
    UK, England
    Posts
    321

    Re: OpenSauce FoV and Third Person etc...

    Ah, I had to do that for my OS menu. The way I ended up doing it was like this:
    Code:
    std::string foo; 
    
    std::ostringstream oss;
    oss << *integer/float/string/etc.*
    foo = oss.str();
    And then converting foo to a wstring and then wcstring whenever its needed.
    Code:
    std::wstring widestr(foo.begin(), foo.end());
    wcstring bar = widestr.c_str();
    Might not be the best way of doing it, but it works.
    Reply With Quote

  2. #82
    Kid in the Hall Kornman00's Avatar
    Join Date
    Sep 2006
    Location
    ◕‿◕, ┌( ಠ_ಠ)┘
    Posts
    3,130

    Re: OpenSauce FoV and Third Person etc...

    Code:
    #include <stdio.h> 
    
    int32 integer = 0xDEADBEEF;
    wchar_t buffer[32];
    swprintf_s(buffer, "%s", integer);
    EDIT: Yar FS!
    I'm not much of one for the STD library anyway.
    Reply With Quote

  3. #83
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: OpenSauce FoV and Third Person etc...

    Hur

    They follow your every move :O
    Reply With Quote

  4. #84
    おはようございます klange's Avatar
    Join Date
    Dec 2006
    Posts
    3,028

    Re: OpenSauce FoV and Third Person etc...

    Video please.
    Reply With Quote

  5. #85
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: OpenSauce FoV and Third Person etc...

    Depends if skyline wants to takes me like 10 hours to get a video up lol...
    Reply With Quote

  6. #86
    Rocket jump! Lateksi's Avatar
    Join Date
    Jul 2007
    Location
    Finland
    Posts
    978

    Re: OpenSauce FoV and Third Person etc...

    That would be so awesome for machinima :o
    Reply With Quote

  7. #87
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: OpenSauce FoV and Third Person etc...

    Snip, mah bad
    Last edited by Limited; August 3rd, 2009 at 03:10 PM.
    Reply With Quote

  8. #88
    Senior Membe Syuusuke's Avatar
    Join Date
    Sep 2006
    Location
    Location
    Posts
    3,868

    Re: OpenSauce FoV and Third Person etc...

    It's private.
    Reply With Quote

  9. #89
    HA10 Limited's Avatar
    Join Date
    Sep 2006
    Location
    England
    Posts
    7,800

    Re: OpenSauce FoV and Third Person etc...

    God, skyline you idiot >_<
    Reply With Quote

  10. #90
    おはようございます klange's Avatar
    Join Date
    Dec 2006
    Posts
    3,028

    Re: OpenSauce FoV and Third Person etc...

    Quote Originally Posted by Limited View Post
    God, skyline you idiot >_<
    He didn't want other people to see it.
    Reply With Quote

Thread Information

Users Browsing this Thread

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

Bookmarks

Posting Permissions

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