Jump to content

RSBDavid

Members
  • Posts

    4088
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by RSBDavid

  1. Reminds me of most religious people I know.

    Would you believe that most of the people I'm talking about are as far from being religious as you can get?

     

    I know what you mean as well. Both types of people tend to have many within their group which fall under the aforementioned attributes.

     

    I am sorry if 22 years of being taught false information has made my opinion towards certain groups slightly negative.

  2. people who are very outspoken about a topic and not at all willing to consider other viewpoints. Even worse, they usually don't know a thing about the topic in question.

     

     

    Reminds me of most religious people I know.

     

    The irony.

     

    How is something that is said by a user which happens to remind me of people who have ruined my childhood "ironic"? Please, feel free to be an ass even more.

  3. people who are very outspoken about a topic and not at all willing to consider other viewpoints. Even worse, they usually don't know a thing about the topic in question.

     

     

    Reminds me of most religious people I know.

     

     

    One thing that irritates me more than other things is how someone will feel all sad and upset about a tragedy for 2 weeks and forget about it totally. Take Kony, Haiti, and any foreign mass killing event for example.

    • Like 1
  4. I would rather see them remove it altogether and allow it to be an optional parental control feature in the future.

     

    What? The session being valid or not is a part of clusterflutter.

     

     

    The core of cluster flutter was removed months ago and only small fragments remain. The purpose of the session eventually boils down to breaking bots. Shortly after the session was added, bot client developers wrote a subroutine to refresh the client and bypass it. It has no purpose anymore. It is only a painful reminder of the fact we need to go outside.

  5. Time to dig this thread from the grave.

     

    I am working on three projects at any given time.

     

    My current, main project is a game engine with a custom OpenGL/DirectX binding for Java. My current target OS is Windows, but I plan on opening up support for Linux and Mac with OpenGL only later on. I am using Jawt/JNI and C++ for the native portion. Each rendering type uses a simple initialization and destroy method for opening and closing the rendering pipeline.

     

    Here is the initialization code for DirectX:

    JNIEXPORT void JNICALL Java_net_davidcode_engine_rendering_d3d_D3D_grab(JNIEnv *env, jclass cls, jobject canvas){
    pToolkit = new JawtToolkit(env, canvas);
    HWND hWnd = pToolkit->getHWND();
    if(hWnd == NULL)
    ThrowJavaRuntimeException(env, "Could not get the handle for the canvas!");
    d3d = Direct3DCreate9(D3D_SDK_VERSION);
    D3DPRESENT_PARAMETERS d3dpp;
    ZeroMemory(&d3dpp, sizeof(d3dpp));
    d3dpp.Windowed = true;
    d3dpp.SwapEffect = D3DSWAPEFFECT_DISCARD;
    d3dpp.hDeviceWindow = hWnd;
    d3d->CreateDevice(
    D3DADAPTER_DEFAULT,
    D3DDEVTYPE_HAL,
    hWnd,
    D3DCREATE_SOFTWARE_VERTEXPROCESSING,
    &d3dpp,
    &d3ddev);
    cout << "DaveDX Verson " << LIB_VERSION << " initiated!" << endl;
    }
    

     

    and here is the OpenGL version:

    JNIEXPORT void JNICALL Java_net_davidcode_engine_rendering_gl_GL_grab (JNIEnv *env, jclass cls, jobject canvas){
    pToolkit = new JawtToolkit(env, canvas);
    HWND hWnd = pToolkit->getHWND();
    HDC hDC = GetDC(hWnd);
    if(hWnd == NULL)
    ThrowJavaRuntimeException(env, "Could not get the handle for the canvas!");
    PIXELFORMATDESCRIPTOR pfd;
    int iFormat;
    ZeroMemory(&pfd, sizeof(pfd));
    pfd.nSize = sizeof(pfd);
    pfd.nVersion = 1;
    pfd.dwFlags = PFD_DRAW_TO_WINDOW | PFD_SUPPORT_OPENGL | PFD_DOUBLEBUFFER;
    pfd.iPixelType = PFD_TYPE_RGBA;
    pfd.cColorBits = 24;
    pfd.cDepthBits = 16;
    pfd.iLayerType = PFD_MAIN_PLANE;
    iFormat = ChoosePixelFormat(hDC, &pfd);
    SetPixelFormat(hDC, iFormat, &pfd);
    hRC = wglCreateContext(hDC);
    wglMakeCurrent(hDC, hRC);
    cout << "Initializing DaveGL Version:" << LIB_VERSION << endl;
    
    }
    

     

    The JawtToolkit is a custom class written to ease the process of opening the pipeline of OpenGL and D3D to the handle of the Canvas. After rendering is satisfactory, I will proceed into working on the Audio (Not sure on library yet) and Scripting (LUA) portions.

     

    Secondary projects include a max cape calculator and voxel research.

  6. Today I took the ASVAB. Last time I took it was in high school and my scores were no longer valid since it was longer than 3 years since I've graduated. My recruiter was extremely happy with my scores and bought me food on the way home. Next week is when I will probably swear in.

  7. Mistakes Made:

    1. You went to the dueling arena

    2. You trusted a random person whom you have never encountered previously

    4. You staked the person without question

    5. You never asked to show his inventory in trade

    6. You didn't notice I skipped 3 in the numbering the questions

     

    He never broke any rules. People do this on 54, or used to do it all of the time. You would see people pre-eoc saying "Rapiering 5m, obs on" and they pull out chaotic long sword which hits harder than rapier so they are able to own you.

    • Like 1
  8. <?php
    
    $hs = file_get_contents("http://hiscore.runescape.com/index_lite.ws?player=".$_GET["player"]);
    $hs = explode("\n",$hs);
    $skills = array("Overall","Attack","Defence","Strength","Constitution","Ranged","Prayer","Magic","Cooking","Woodcutting","Fletching","Fishing","Firemaking","Crafting","Smithing","Mining","Herblore","Agility","Thieving","Slayer","Farming","Runecrafting","Hunter","Construction","Summoning","Dungeoneering");
    $i = 0;
    
    foreach($skills as $value){
    $hs[$i] = explode(",",$hs[$i]);
    $stats[$value]["rank"] = $hs[$i][0];
    $stats[$value]["level"] = $hs[$i][1];
    $stats[$value]["xp"] = $hs[$i][2];
    $i++;
    }
    echo $stats["Overall"]["level"];
    ?>
    

     

    For example, yoursite.com/hiscores.php?player=Meredith would echo "2484".

     

    ok but assuming that gets one set of stats how do i get multiple levels like attack

     

    would it be something like this

     

    $stats[$value]["attack"] = $hs[$i][5];

     

     

    echo $stats["attack"]["level"];

     

    ...would echo the attack level. In the foreach-loop it populates the stats array by the skill name as that is the order Jagex uses as well.

  9. Here is the interface for the scrolls you can obtain as well as a list of each one and what it contains.

     

    Pulled from the Captain's Log:

     

    1zLRF.png

     

    Scrimshaws:

     

    Log Splitting:

    Imparts a chance to split a log as you chop it, converting the log into additional Woodcutting experience. (0 / 4)

     

    Rock Crushing:

    Imparts a chance to crush ore as you mine it, converting the ore into additional Mining experience.

     

    Tree Shaking:

    Additional birds' nests drop from trees; occasionally implings too.

     

    Gem Finding:

    Imparts a chance for high-level gems to drop while mining.

     

    Vampyrism:

    Steal life from enemies with every melee hit.

     

    Strength:

    +3% critical hit chance with melee attacks.

     

    Elements:

    Adds extra elemental damage to every magic hit.

     

    Magic:

    +3% critical hit chance with magic attacks.

     

    Cruelty:

    Adds a chance to cause bleed or poison to every ranged hit.

     

    Ranging:

    +3% critical hit chance with ranged attacks.

     

    Recipes:

    Rocktail soup:

    Heals 2100 life points, up to 110% of maximum.

     

    Tetsu Armour:

    Tetsu helm - Level 85 melee helm

    Tetsu laminar - Level 85 melee body

    Tetsu legplates - Level 85 melee legs

     

    Death Lotus Armour:

    Death Lotus Hood - Level 85 ranged helm

    Death Lotus Chestplate - Level 85 ranged body

    Death Lotus Chaps - Level 85 ranged legs

     

    Seasinger Armour:

    Seasinger's headband - Level 85 magic helm

    Seasinger's robe top - Level 85 magic body

    Seasinger's robe bottom - Level 85 magic legs

  10. Dharok doesn't seem overpowered.

    Let's face it, you could 2-3 hit abyssal demons in the past with a whip and one hit them with dharok.

    Now, you can still one hit them with dharok but you'll be wailing on them with a whip for 6-8 hits.

    More of a nerf to other things and keeping dharok the same to some extent.

     

    The fun also went out the window because the damage is capped for some silly reason at 4.5k or there abouts.

    Of course it's easy to cap out the damage and I can do it on momentum with like 3k hp which is pretty safe for like 99% of runescape content nowadays.

    But, I'd rather have it the old way where if you got your hps like next to 0 you unloaded massively.

    I miss the adventure of seeing how high one could go with the right selection of accessory gear, enemies, and potting.

     

    But you couldn't do 2 minute QBD kills with Dharok's pre-eoc as far as I know.

    Combat traning and slaying is much much slower then before EOC... Agree?

    You're doing it wrong.

     

    Agreed. All combat styles can now get over 300k XP per hour and not just range/mage.

     

    And how is that possiable? I started playing back after the update.

    I honestly have no idea, what gear are you using? Combat and Slayer is way faster now, but monsters don't necessarily have the same weaknesses as they did before EoC, and using the wrong style will slow down your kills a lot.

     

    Exactly. As far as training goes, the higher rates require higher stats, decent gear, extremes/ovls, best style prayer, and proper style against enemies. From 92 to 99 magic post-eoc, I maintained around 250-300k xp per hour with just magic potions. I could have gained higher rates using the level 70 prayer (Augury I think) and extremes.

     

    Now, I can still maintain that 200k-300k+ xp per hour in mage/range/melee by training slayer. I did a 15 minute slayer task and obtained 80k mage experience and around 30k hitpoints experience. I was using earth surge and no boosts.

  11. The new skills will be out before anyone even gets all 200ms I think.

     

    Yeah exactly, I know I won't make it to 5B before new skill(s).

     

    I might get 200M Hunter/Farming because they seem pretty close.

    Er didn't they say it might be 2014 till new skills? Seem a long way off and you 'only' need a few more faster 200ms to complete rs

     

    Both skills are planned for 2013, one for the first half of year, the other for the second.

    That makes little sense, I'm sure they are a gathering/processing set, you couldn't release mining without smithing

     

    But they said already that one is a gatherer, one is not, and they may not be related. One of the skills could be something like mining and the other could be like fletching.

     

    Also, Suomi, watching you hunt (while morphed into a rock and being muted) has taught me a lot. Thanks :)

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.