<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[(wL) Forums - Programming]]></title>
		<link>https://war-lords.net/forum/</link>
		<description><![CDATA[(wL) Forums - https://war-lords.net/forum]]></description>
		<pubDate>Wed, 06 May 2026 12:18:10 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[ProcessMovement problem]]></title>
			<link>https://war-lords.net/forum/thread-19308.html</link>
			<pubDate>Wed, 23 Oct 2024 08:14:55 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=31382">bababooey</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-19308.html</guid>
			<description><![CDATA[Hello,  i was trying to make engine prediction work for cs<img src="https://war-lords.net/forum/images/smilies/confused.png" alt="Confused" title="Confused" class="smilie smilie_13" /> but when i try to use ProcessMovement function i am getting access violations, most probably from a wrong index, i was trying to search for the index of the function and found a very similar void but it was taking 3 arguments instead of 2, can somebody explain where should i be looking for the valid one.I was looking in the CGameMovement but found only this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    // #STR: "end %f %f %f", "start %f %f %f"<br />
    void *__thiscall MaybeProcessMovement(_DWORD *this, float *a2, int a3)<br />
    {<br />
      void *result; // eax<br />
      float v5; // [esp+20h] [ebp-4h]<br />
     <br />
      v5 = *((float *)off_1049A278 + 4);<br />
      *((float *)off_1049A278 + 4) = a2[1167] * v5;<br />
      sub_10116650();<br />
      this[2] = a3;<br />
      this[802] = 0;<br />
      this[1] = a2;<br />
      *(float *)(this[2] + 56) = ((double (__thiscall *)(float *))*(_DWORD *)(*(_DWORD *)a2 + 900))(a2);<br />
      (*(void (**)(_DWORD *, const char *, ...))(*this + 16))(<br />
        this,<br />
        "start %f %f %f",<br />
        *(float *)(this[2] + 152),<br />
        *(float *)(this[2] + 156),<br />
        *(float *)(this[2] + 160));<br />
      (*(void (__thiscall **)(_DWORD *))(*this + 52))(this);<br />
      *(_DWORD *)(this[2] + 40) = *(_DWORD *)(this[2] + 36);<br />
      (*(void (**)(_DWORD *, const char *, ...))(*this + 16))(<br />
        this,<br />
        "end %f %f %f",<br />
        *(float *)(this[2] + 152),<br />
        *(float *)(this[2] + 156),<br />
        *(float *)(this[2] + 160));<br />
      result = off_1049A278;<br />
      *((float *)off_1049A278 + 4) = v5;<br />
      return result;<br />
    }</code></div></div> Also here is how im getting ProcessMovement in my cheat: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    &nbsp;&nbsp;&nbsp;&nbsp; void ProcessMovement(player_t* pPlayer, CMoveData* pMove) {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;using ProcessMovementFn = void(__thiscall*)(void*, player_t*, CMoveData*);<br />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(*(ProcessMovementFn**)this)[1](this, pPlayer, pMove);<br />
    &nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>]]></description>
			<content:encoded><![CDATA[Hello,  i was trying to make engine prediction work for cs<img src="https://war-lords.net/forum/images/smilies/confused.png" alt="Confused" title="Confused" class="smilie smilie_13" /> but when i try to use ProcessMovement function i am getting access violations, most probably from a wrong index, i was trying to search for the index of the function and found a very similar void but it was taking 3 arguments instead of 2, can somebody explain where should i be looking for the valid one.I was looking in the CGameMovement but found only this:<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    // #STR: "end %f %f %f", "start %f %f %f"<br />
    void *__thiscall MaybeProcessMovement(_DWORD *this, float *a2, int a3)<br />
    {<br />
      void *result; // eax<br />
      float v5; // [esp+20h] [ebp-4h]<br />
     <br />
      v5 = *((float *)off_1049A278 + 4);<br />
      *((float *)off_1049A278 + 4) = a2[1167] * v5;<br />
      sub_10116650();<br />
      this[2] = a3;<br />
      this[802] = 0;<br />
      this[1] = a2;<br />
      *(float *)(this[2] + 56) = ((double (__thiscall *)(float *))*(_DWORD *)(*(_DWORD *)a2 + 900))(a2);<br />
      (*(void (**)(_DWORD *, const char *, ...))(*this + 16))(<br />
        this,<br />
        "start %f %f %f",<br />
        *(float *)(this[2] + 152),<br />
        *(float *)(this[2] + 156),<br />
        *(float *)(this[2] + 160));<br />
      (*(void (__thiscall **)(_DWORD *))(*this + 52))(this);<br />
      *(_DWORD *)(this[2] + 40) = *(_DWORD *)(this[2] + 36);<br />
      (*(void (**)(_DWORD *, const char *, ...))(*this + 16))(<br />
        this,<br />
        "end %f %f %f",<br />
        *(float *)(this[2] + 152),<br />
        *(float *)(this[2] + 156),<br />
        *(float *)(this[2] + 160));<br />
      result = off_1049A278;<br />
      *((float *)off_1049A278 + 4) = v5;<br />
      return result;<br />
    }</code></div></div> Also here is how im getting ProcessMovement in my cheat: <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>    &nbsp;&nbsp;&nbsp;&nbsp; void ProcessMovement(player_t* pPlayer, CMoveData* pMove) {<br />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;using ProcessMovementFn = void(__thiscall*)(void*, player_t*, CMoveData*);<br />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(*(ProcessMovementFn**)this)[1](this, pPlayer, pMove);<br />
    &nbsp;&nbsp;&nbsp;&nbsp;}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[How to hack the shoutbox with chrome]]></title>
			<link>https://war-lords.net/forum/thread-15981.html</link>
			<pubDate>Tue, 29 Mar 2016 19:32:34 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=1570">Call me when humans go extinct</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-15981.html</guid>
			<description><![CDATA[<span style="text-decoration: line-through;" class="mycode_s">Since riser is too lazy to update the forums, so I will show you how to hack it and make it look cool.<br />
<br />
<img src="http://i.imgur.com/8rfevkk.png" loading="lazy"  alt="[Image: 8rfevkk.png]" class="mycode_img" /><br />
<br />
First you need to use the chrome browser or any browser that is based on chromium. Install this chrome extension named Styler from chrome web store: <a href="https://chrome.google.com/webstore/detail/styler/bogdgcfoocbajfkjjolkmcdcnnellpkb?utm_source=chrome-ntp-icon&amp;hl=en" target="_blank" rel="noopener" class="mycode_url">https://chrome.google.com/webstore/detai...icon&amp;hl=en</a><br />
After you installed, the button of Styler <img src="http://i.imgur.com/VgG60YI.png" loading="lazy"  alt="[Image: VgG60YI.png]" class="mycode_img" /> should be showing up on the top right of your chrome.<br />
<br />
Go to <a href="http://war-lords.net" target="_blank" rel="noopener" class="mycode_url">war-lords.net</a>, then press the  the "Styler" button.<br />
<br />
Copy and paste the following code to the first textbox which labeled as "CSS":<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>.double-column-table .right-column {<br />
  width: 280px !important;}<br />
#content .right-column #shoutbox {<br />
  margin-bottom:0}<br />
<br />
#content &gt; #shoutbox {<br />
  background:#181818;}<br />
<br />
#shoutbox .body {<br />
  padding: 0 15px;}<br />
<br />
#shoutbox input.text {<br />
  padding: 10px 8px;<br />
  width: 100%;<br />
  box-sizing: border-box;<br />
  border: none;<br />
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);<br />
  font-family: Arial, sans-serif;<br />
  font-size: 12px;<br />
  color: white !important; <br />
  background-color: #2F2F2F;}<br />
<br />
#shoutbox .window {<br />
  overflow-y: scroll;<br />
  background: #2F2F2F;<br />
  border-top: 1px solid;<br />
  border-bottom: 1px solid;<br />
  border-color: #222;<br />
  margin-left: -15px;<br />
  margin-right: -15px;<br />
  padding: 5px 5px;<br />
  height: 500px!important;}<br />
<br />
#shoutbox .panel {<br />
  margin-top: 10px;<br />
  margin-bottom: 10px;}<br />
<br />
#shoutbox .data {<br />
  display: table;<br />
  width: 100%;<br />
  font-size: 12px;}<br />
<br />
#shoutbox .entry {<br />
  display: table-row !important;<br />
  width: 100%;<br />
  transition: background-color 0.2s; }<br />
<br />
#shoutbox .entry.new {<br />
  background-color: rgba(255, 255, 100, 0.1);}<br />
<br />
#shoutbox .avatar {<br />
  padding-right: 10px !important;<br />
  padding-top: 0 !important;<br />
  width: auto;}<br />
<br />
#shoutbox .avatar img {<br />
  margin: 0 auto!important;<br />
  vertical-align: middle!important;<br />
  height: 30px;<br />
  max-height: 30px !important;<br />
  max-width:30px !important;<br />
  width: 30px;<br />
  border: solid 1px rgba(255, 255, 255, 0.1)!important;<br />
  border-radius: 17px;<br />
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1)!important;<br />
  cursor: pointer!important;<br />
  top: 12px;<br />
  position: relative;}<br />
<br />
#shoutbox .user {<br />
  position: relative;<br />
  text-align: left!important;<br />
  white-space: nowrap;<br />
  font-size: 10.5px;<br />
  width: 74px;<br />
  display: block !important;<br />
  padding: 3px 0px 3px 1px !important;}<br />
<br />
#shoutbox .user a:hover {<br />
  text-decoration: none;}<br />
<br />
#shoutbox .entry .text:after {<br />
  content: " ";<br />
  position: absolute;<br />
  width: 0;<br />
  height: 0;<br />
  border: 11px solid;<br />
  border-color: #222222 transparent transparent transparent;<br />
  top: 0;<br />
  left: -7.5px;}<br />
<br />
#shoutbox .entry .text {<br />
  background-color: #222222;<br />
  color: white!important;<br />
  width: auto!important;<br />
  position: relative;<br />
  padding: 6px 13px 16px 13px !important;<br />
  border-radius: 0 15px 15px 15px;<br />
  display: inline-block !important;<br />
  min-height: 16px;<br />
  min-width: 86px;<br />
  word-wrap: break-word;}<br />
<br />
#shoutbox .info {<br />
  font-size: 10px !important;<br />
  color: #AAA !important;<br />
  white-space: nowrap !important;<br />
  display: block !important;<br />
  padding: 0px !important;<br />
  height: 0px;<br />
  width: 0px;<br />
  position: relative;<br />
  left: 13px;<br />
  top: -17px;<br />
  text-align: left!important;}<br />
<br />
#shoutbox .mod {<br />
  padding: 0px 5px!important;<br />
  color: #AAA!important;<br />
  text-decoration: none!important;<br />
  display: inline-block!important;<br />
  font: normal normal normal 14px/1 FontAwesome;<br />
  font-size: 0!important;<br />
  text-rendering: auto;<br />
  -webkit-font-smoothing: antialiased;<br />
  -moz-osx-font-smoothing: grayscale;<br />
  position: absolute;<br />
  font-weight:normal!important;}<br />
<br />
#shoutbox .edit {<br />
  padding-top:10px;<br />
  left:62px;}<br />
<br />
#shoutbox .del {<br />
  left:79px;<br />
  padding-left: 2px !important;}<br />
<br />
#shoutbox .edit:before {<br />
  content:"";<br />
  font-size: 12px !important;}<br />
<br />
#shoutbox .del:before {<br />
  content:"";<br />
  font-size: 12px !important;}<br />
<br />
#shoutbox .ip {<br />
  display:none;}</code></div></div><br />
Then copy and paste the following code to the second textbox labeled as "JavaScript/jQuery":<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;(document).ready(function(){&#36;("#shoutbox").insertAfter("#content .right-column table:first");&#36;("#content .right-column table:first").after("&lt;br&gt;");&#36;('#shoutbox .window').scrollTop(&#36;('#shoutbox .window')[0].scrollHeight);});</code></div></div><br />
Like this:<br />
<br />
<img src="http://i.imgur.com/gmFp8Nn.png" loading="lazy"  alt="[Image: gmFp8Nn.png]" class="mycode_img" /><br />
<br />
Reload the page and you are good to go.</span>]]></description>
			<content:encoded><![CDATA[<span style="text-decoration: line-through;" class="mycode_s">Since riser is too lazy to update the forums, so I will show you how to hack it and make it look cool.<br />
<br />
<img src="http://i.imgur.com/8rfevkk.png" loading="lazy"  alt="[Image: 8rfevkk.png]" class="mycode_img" /><br />
<br />
First you need to use the chrome browser or any browser that is based on chromium. Install this chrome extension named Styler from chrome web store: <a href="https://chrome.google.com/webstore/detail/styler/bogdgcfoocbajfkjjolkmcdcnnellpkb?utm_source=chrome-ntp-icon&amp;hl=en" target="_blank" rel="noopener" class="mycode_url">https://chrome.google.com/webstore/detai...icon&amp;hl=en</a><br />
After you installed, the button of Styler <img src="http://i.imgur.com/VgG60YI.png" loading="lazy"  alt="[Image: VgG60YI.png]" class="mycode_img" /> should be showing up on the top right of your chrome.<br />
<br />
Go to <a href="http://war-lords.net" target="_blank" rel="noopener" class="mycode_url">war-lords.net</a>, then press the  the "Styler" button.<br />
<br />
Copy and paste the following code to the first textbox which labeled as "CSS":<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>.double-column-table .right-column {<br />
  width: 280px !important;}<br />
#content .right-column #shoutbox {<br />
  margin-bottom:0}<br />
<br />
#content &gt; #shoutbox {<br />
  background:#181818;}<br />
<br />
#shoutbox .body {<br />
  padding: 0 15px;}<br />
<br />
#shoutbox input.text {<br />
  padding: 10px 8px;<br />
  width: 100%;<br />
  box-sizing: border-box;<br />
  border: none;<br />
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.08);<br />
  font-family: Arial, sans-serif;<br />
  font-size: 12px;<br />
  color: white !important; <br />
  background-color: #2F2F2F;}<br />
<br />
#shoutbox .window {<br />
  overflow-y: scroll;<br />
  background: #2F2F2F;<br />
  border-top: 1px solid;<br />
  border-bottom: 1px solid;<br />
  border-color: #222;<br />
  margin-left: -15px;<br />
  margin-right: -15px;<br />
  padding: 5px 5px;<br />
  height: 500px!important;}<br />
<br />
#shoutbox .panel {<br />
  margin-top: 10px;<br />
  margin-bottom: 10px;}<br />
<br />
#shoutbox .data {<br />
  display: table;<br />
  width: 100%;<br />
  font-size: 12px;}<br />
<br />
#shoutbox .entry {<br />
  display: table-row !important;<br />
  width: 100%;<br />
  transition: background-color 0.2s; }<br />
<br />
#shoutbox .entry.new {<br />
  background-color: rgba(255, 255, 100, 0.1);}<br />
<br />
#shoutbox .avatar {<br />
  padding-right: 10px !important;<br />
  padding-top: 0 !important;<br />
  width: auto;}<br />
<br />
#shoutbox .avatar img {<br />
  margin: 0 auto!important;<br />
  vertical-align: middle!important;<br />
  height: 30px;<br />
  max-height: 30px !important;<br />
  max-width:30px !important;<br />
  width: 30px;<br />
  border: solid 1px rgba(255, 255, 255, 0.1)!important;<br />
  border-radius: 17px;<br />
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1)!important;<br />
  cursor: pointer!important;<br />
  top: 12px;<br />
  position: relative;}<br />
<br />
#shoutbox .user {<br />
  position: relative;<br />
  text-align: left!important;<br />
  white-space: nowrap;<br />
  font-size: 10.5px;<br />
  width: 74px;<br />
  display: block !important;<br />
  padding: 3px 0px 3px 1px !important;}<br />
<br />
#shoutbox .user a:hover {<br />
  text-decoration: none;}<br />
<br />
#shoutbox .entry .text:after {<br />
  content: " ";<br />
  position: absolute;<br />
  width: 0;<br />
  height: 0;<br />
  border: 11px solid;<br />
  border-color: #222222 transparent transparent transparent;<br />
  top: 0;<br />
  left: -7.5px;}<br />
<br />
#shoutbox .entry .text {<br />
  background-color: #222222;<br />
  color: white!important;<br />
  width: auto!important;<br />
  position: relative;<br />
  padding: 6px 13px 16px 13px !important;<br />
  border-radius: 0 15px 15px 15px;<br />
  display: inline-block !important;<br />
  min-height: 16px;<br />
  min-width: 86px;<br />
  word-wrap: break-word;}<br />
<br />
#shoutbox .info {<br />
  font-size: 10px !important;<br />
  color: #AAA !important;<br />
  white-space: nowrap !important;<br />
  display: block !important;<br />
  padding: 0px !important;<br />
  height: 0px;<br />
  width: 0px;<br />
  position: relative;<br />
  left: 13px;<br />
  top: -17px;<br />
  text-align: left!important;}<br />
<br />
#shoutbox .mod {<br />
  padding: 0px 5px!important;<br />
  color: #AAA!important;<br />
  text-decoration: none!important;<br />
  display: inline-block!important;<br />
  font: normal normal normal 14px/1 FontAwesome;<br />
  font-size: 0!important;<br />
  text-rendering: auto;<br />
  -webkit-font-smoothing: antialiased;<br />
  -moz-osx-font-smoothing: grayscale;<br />
  position: absolute;<br />
  font-weight:normal!important;}<br />
<br />
#shoutbox .edit {<br />
  padding-top:10px;<br />
  left:62px;}<br />
<br />
#shoutbox .del {<br />
  left:79px;<br />
  padding-left: 2px !important;}<br />
<br />
#shoutbox .edit:before {<br />
  content:"";<br />
  font-size: 12px !important;}<br />
<br />
#shoutbox .del:before {<br />
  content:"";<br />
  font-size: 12px !important;}<br />
<br />
#shoutbox .ip {<br />
  display:none;}</code></div></div><br />
Then copy and paste the following code to the second textbox labeled as "JavaScript/jQuery":<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&#36;(document).ready(function(){&#36;("#shoutbox").insertAfter("#content .right-column table:first");&#36;("#content .right-column table:first").after("&lt;br&gt;");&#36;('#shoutbox .window').scrollTop(&#36;('#shoutbox .window')[0].scrollHeight);});</code></div></div><br />
Like this:<br />
<br />
<img src="http://i.imgur.com/gmFp8Nn.png" loading="lazy"  alt="[Image: gmFp8Nn.png]" class="mycode_img" /><br />
<br />
Reload the page and you are good to go.</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Indiane-sports]]></title>
			<link>https://war-lords.net/forum/thread-15870.html</link>
			<pubDate>Mon, 11 Jan 2016 12:57:44 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=22267">Mechanic</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-15870.html</guid>
			<description><![CDATA[India has not been recently got with games until CSGO was released, yet me and my friend planned to start a Forum <br />
<br />
<a href="http://www.indiane-sports.com" target="_blank" rel="noopener" class="mycode_url">www.indiane-sports.com</a> , and we are not familiar with creating a website like things. so, i need a lot of help from you guy creating a forum for  indian Gamers. <br />
<br />
<br />
Thanks,Regards<br />
                  Mech]]></description>
			<content:encoded><![CDATA[India has not been recently got with games until CSGO was released, yet me and my friend planned to start a Forum <br />
<br />
<a href="http://www.indiane-sports.com" target="_blank" rel="noopener" class="mycode_url">www.indiane-sports.com</a> , and we are not familiar with creating a website like things. so, i need a lot of help from you guy creating a forum for  indian Gamers. <br />
<br />
<br />
Thanks,Regards<br />
                  Mech]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Click]]></title>
			<link>https://war-lords.net/forum/thread-15762.html</link>
			<pubDate>Mon, 02 Nov 2015 19:37:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=1570">Call me when humans go extinct</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-15762.html</guid>
			<description><![CDATA[<ul class="mycode_list"><li><a href="http://fw-zone.com/wl/png.php?text=riser%20is%20gay" target="_blank" rel="noopener" class="mycode_url">Riser is gay</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=riser%20is%20not%20gay" target="_blank" rel="noopener" class="mycode_url">Riser is not gay</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=angel%20hacks" target="_blank" rel="noopener" class="mycode_url">omg hacker</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=dragon%20:D" target="_blank" rel="noopener" class="mycode_url"><img src="https://war-lords.net/forum/images/smilies/angry.png" alt="Angry" title="Angry" class="smilie smilie_11" /> <img src="https://war-lords.net/forum/images/smilies/angel.png" alt="Angel" title="Angel" class="smilie smilie_10" /> </a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=歳納京子:%20うう…シャワー浴びたい…" target="_blank" rel="noopener" class="mycode_url">歳納京子: うう・・・シャワー浴びたい・・・</a><br />
</li>
</ul>
<br />
To change the text below, please click the links above, and refresh the page.<br />
<br />
      <img src="http://fw-zone.com/wl/test.png" loading="lazy"  alt="[Image: test.png]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[<ul class="mycode_list"><li><a href="http://fw-zone.com/wl/png.php?text=riser%20is%20gay" target="_blank" rel="noopener" class="mycode_url">Riser is gay</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=riser%20is%20not%20gay" target="_blank" rel="noopener" class="mycode_url">Riser is not gay</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=angel%20hacks" target="_blank" rel="noopener" class="mycode_url">omg hacker</a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=dragon%20:D" target="_blank" rel="noopener" class="mycode_url"><img src="https://war-lords.net/forum/images/smilies/angry.png" alt="Angry" title="Angry" class="smilie smilie_11" /> <img src="https://war-lords.net/forum/images/smilies/angel.png" alt="Angel" title="Angel" class="smilie smilie_10" /> </a><br />
</li>
<li><a href="http://fw-zone.com/wl/png.php?text=歳納京子:%20うう…シャワー浴びたい…" target="_blank" rel="noopener" class="mycode_url">歳納京子: うう・・・シャワー浴びたい・・・</a><br />
</li>
</ul>
<br />
To change the text below, please click the links above, and refresh the page.<br />
<br />
      <img src="http://fw-zone.com/wl/test.png" loading="lazy"  alt="[Image: test.png]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Does anyone know how to do this c++ problem]]></title>
			<link>https://war-lords.net/forum/thread-14993.html</link>
			<pubDate>Tue, 03 Feb 2015 00:37:05 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=21602">.kevlar</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-14993.html</guid>
			<description><![CDATA[An ISP has 3 different subscription packages<br />
	a)  &#36;19.95 per month, 5 hours access.  Additional hours<br />
	    are &#36;0.75 up to 20 hours then &#36;1 for all additional<br />
	    hours.<br />
	b)  &#36;24.95 per month, 15 hours access.  Additional hours<br />
         are &#36;0.75 up to 25 hours then &#36;0.50 for each<br />
	    hour above this limit.<br />
	c)  &#36;29.75 per month unlimited access<br />
Write a program that calculates a customers monthly bill.  Ask which<br />
package, and how many hours then display the monthly charge.  Also, output<br />
when customers should transition to another package to save money.]]></description>
			<content:encoded><![CDATA[An ISP has 3 different subscription packages<br />
	a)  &#36;19.95 per month, 5 hours access.  Additional hours<br />
	    are &#36;0.75 up to 20 hours then &#36;1 for all additional<br />
	    hours.<br />
	b)  &#36;24.95 per month, 15 hours access.  Additional hours<br />
         are &#36;0.75 up to 25 hours then &#36;0.50 for each<br />
	    hour above this limit.<br />
	c)  &#36;29.75 per month unlimited access<br />
Write a program that calculates a customers monthly bill.  Ask which<br />
package, and how many hours then display the monthly charge.  Also, output<br />
when customers should transition to another package to save money.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[what is this all about ?]]></title>
			<link>https://war-lords.net/forum/thread-13996.html</link>
			<pubDate>Fri, 25 Apr 2014 01:11:03 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=17733">GeOoOrGe</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-13996.html</guid>
			<description><![CDATA[what is this ?<br />
<br />
20 min i was just playing perfectly .... and i just updated the patch today ?<br />
<br />
why is this happening ?<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=2469" target="_blank" title="">12.png</a> (Size: 197.98 KB / Downloads: 6)
]]></description>
			<content:encoded><![CDATA[what is this ?<br />
<br />
20 min i was just playing perfectly .... and i just updated the patch today ?<br />
<br />
why is this happening ?<br />
<br />
<img src="https://war-lords.net/forum/images/attachtypes/image.png" title="PNG Image" border="0" alt=".png" />
&nbsp;&nbsp;<a href="attachment.php?aid=2469" target="_blank" title="">12.png</a> (Size: 197.98 KB / Downloads: 6)
]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Enr@ge Warbot, by eux@useast and Nugs@useast]]></title>
			<link>https://war-lords.net/forum/thread-12643.html</link>
			<pubDate>Wed, 02 Apr 2014 19:46:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=16634">Nugs</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-12643.html</guid>
			<description><![CDATA[Coming soon.<br />
<a href="http://postimg.org/image/7shw8brnx/" target="_blank" rel="noopener" class="mycode_url">http://postimg.org/image/7shw8brnx/</a><br />
<a href="http://postimg.org/image/o95i7evr1/" target="_blank" rel="noopener" class="mycode_url">http://postimg.org/image/o95i7evr1/</a><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br /><img src="http://i59.tinypic.com/ix3y86.jpg" loading="lazy"  alt="[Image: ix3y86.jpg]" class="mycode_img" /><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br /><img src="http://i59.tinypic.com/2s0zr43.jpg" loading="lazy"  alt="[Image: 2s0zr43.jpg]" class="mycode_img" />]]></description>
			<content:encoded><![CDATA[Coming soon.<br />
<a href="http://postimg.org/image/7shw8brnx/" target="_blank" rel="noopener" class="mycode_url">http://postimg.org/image/7shw8brnx/</a><br />
<a href="http://postimg.org/image/o95i7evr1/" target="_blank" rel="noopener" class="mycode_url">http://postimg.org/image/o95i7evr1/</a><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br /><img src="http://i59.tinypic.com/ix3y86.jpg" loading="lazy"  alt="[Image: ix3y86.jpg]" class="mycode_img" /><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br /><img src="http://i59.tinypic.com/2s0zr43.jpg" loading="lazy"  alt="[Image: 2s0zr43.jpg]" class="mycode_img" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Need help?]]></title>
			<link>https://war-lords.net/forum/thread-10669.html</link>
			<pubDate>Fri, 24 May 2013 22:31:56 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=17015">hey!</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10669.html</guid>
			<description><![CDATA[Hey guys, if anybody need help in any of those languages(HTML,PHP,JS,JQUERY,C#) i can help you.<br />
I have alot of experience with those languages and i also studiedi n computer science.]]></description>
			<content:encoded><![CDATA[Hey guys, if anybody need help in any of those languages(HTML,PHP,JS,JQUERY,C#) i can help you.<br />
I have alot of experience with those languages and i also studiedi n computer science.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Advanced Email Sender VIDEO]]></title>
			<link>https://war-lords.net/forum/thread-10409.html</link>
			<pubDate>Sun, 28 Apr 2013 22:07:50 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=350">PaSS</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10409.html</guid>
			<description><![CDATA[[video=youtube]http://youtube.com/watch?v=CmxLdemC1uU[/video]<br />
 <br />
--- Paste Bin - Code ---<br />
<a href="http://pastebin.com/D3A6ZsDg" target="_blank" rel="noopener" class="mycode_url">http://pastebin.com/D3A6ZsDg</a><br />
 <br />
--- Mediafire - Program Source File ---<br />
<a href="http://www.mediafire.com/?3zeyhrosryfu1w5" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?3zeyhrosryfu1w5</a>T<br />
 <br />
To see words clearly watch in HD]]></description>
			<content:encoded><![CDATA[[video=youtube]http://youtube.com/watch?v=CmxLdemC1uU[/video]<br />
 <br />
--- Paste Bin - Code ---<br />
<a href="http://pastebin.com/D3A6ZsDg" target="_blank" rel="noopener" class="mycode_url">http://pastebin.com/D3A6ZsDg</a><br />
 <br />
--- Mediafire - Program Source File ---<br />
<a href="http://www.mediafire.com/?3zeyhrosryfu1w5" target="_blank" rel="noopener" class="mycode_url">http://www.mediafire.com/?3zeyhrosryfu1w5</a>T<br />
 <br />
To see words clearly watch in HD]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[print("Need help with the program.");]]></title>
			<link>https://war-lords.net/forum/thread-10012.html</link>
			<pubDate>Mon, 04 Mar 2013 10:52:10 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=14867">Danger255</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-10012.html</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* A program that uses the Box class.<br />
Call this file BoxDemo.java<br />
*/<br />
class Box {<br />
double width;<br />
double height;<br />
double depth;<br />
}<br />
// This class declares an object of type Box.<br />
class BoxDemo {<br />
public static void main(String args[]) {<br />
Box mybox = new Box();<br />
double vol;<br />
// assign values to mybox's instance variables<br />
mybox.width = 10;<br />
mybox.height = 20;<br />
mybox.depth = 15;<br />
// compute volume of box<br />
vol = mybox.width * mybox.height * mybox.depth;<br />
System.out.println("Volume is " + vol);<br />
}<br />
}</code></div></div> <br />
When executed it doesn't shows up anything (running in Netbeans)]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* A program that uses the Box class.<br />
Call this file BoxDemo.java<br />
*/<br />
class Box {<br />
double width;<br />
double height;<br />
double depth;<br />
}<br />
// This class declares an object of type Box.<br />
class BoxDemo {<br />
public static void main(String args[]) {<br />
Box mybox = new Box();<br />
double vol;<br />
// assign values to mybox's instance variables<br />
mybox.width = 10;<br />
mybox.height = 20;<br />
mybox.depth = 15;<br />
// compute volume of box<br />
vol = mybox.width * mybox.height * mybox.depth;<br />
System.out.println("Volume is " + vol);<br />
}<br />
}</code></div></div> <br />
When executed it doesn't shows up anything (running in Netbeans)]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[C: Else misplaced.]]></title>
			<link>https://war-lords.net/forum/thread-9732.html</link>
			<pubDate>Sun, 27 Jan 2013 14:39:26 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=14867">Danger255</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-9732.html</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include "stdio.h"<br />
#include "conio.h"<br />
#include "math.h"<br />
void welcome();<br />
#pragma startup welcome<br />
#pragma warn-rch<br />
int main()<br />
{<br />
int a,b,c,menu;<br />
printf("Enter 1,2,3 or 4&#92;n&#92;n");<br />
printf("1.Addition&#92;n");<br />
printf("2.Subraction&#92;n");<br />
printf("3.Division&#92;n");<br />
printf("4.Multiplication&#92;n");<br />
scanf(" %d",&amp;menu);<br />
if(menu==1)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto add;<br />
}<br />
else if(menu==2)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto sub;<br />
}<br />
else if(menu==3)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto div;<br />
}<br />
else if (menu==4)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto multi;<br />
}<br />
add:<br />
c=a+b;<br />
printf("Addition of two no. is = %d&#92;n",c);<br />
div:<br />
c=a/b;<br />
printf("Division of two no. is = %d&#92;n",c);<br />
multi:<br />
c=a*b;<br />
printf("Multiplication of two no. is = %d&#92;n",c);<br />
sub:<br />
c=a-b;<br />
printf("Subraction of two no. is = %d&#92;n",c);<br />
getch();<br />
return 0;<br />
}<br />
void welcome()<br />
{<br />
printf("Danger -- Welcomes you!&#92;n&#92;n");<br />
}</code></div></div><span style="font-size: 4pt;" class="mycode_size">The code is not fully done yet still working but this error annoying meh. OR should I use switch at place of ifelse</span><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Guys the else done now help me getting out I mean<br />
 <br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>add:<br />
c=a+b;<br />
printf("Addition of two no. is = %d&#92;n",c);<br />
div:<br />
c=a/b;<br />
printf("Division of two no. is = %d&#92;n",c);<br />
multi:<br />
c=a*b;<br />
printf("Multiplication of two no. is = %d&#92;n",c);<br />
sub:<br />
c=a-b;<br />
printf("Subraction of two no. is = %d&#92;n",c);</code></div></div> <br />
So all get printed I want the one I choose .......<br />
 <br />
 <br />
<span style="font-size: 5pt;" class="mycode_size">GOT THE SOLUTION MYSELF!!</span>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include "stdio.h"<br />
#include "conio.h"<br />
#include "math.h"<br />
void welcome();<br />
#pragma startup welcome<br />
#pragma warn-rch<br />
int main()<br />
{<br />
int a,b,c,menu;<br />
printf("Enter 1,2,3 or 4&#92;n&#92;n");<br />
printf("1.Addition&#92;n");<br />
printf("2.Subraction&#92;n");<br />
printf("3.Division&#92;n");<br />
printf("4.Multiplication&#92;n");<br />
scanf(" %d",&amp;menu);<br />
if(menu==1)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto add;<br />
}<br />
else if(menu==2)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto sub;<br />
}<br />
else if(menu==3)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto div;<br />
}<br />
else if (menu==4)<br />
{<br />
printf("Enter any two no.s&#92;n");<br />
scanf(" %d%d",&amp;a,&amp;b);<br />
goto multi;<br />
}<br />
add:<br />
c=a+b;<br />
printf("Addition of two no. is = %d&#92;n",c);<br />
div:<br />
c=a/b;<br />
printf("Division of two no. is = %d&#92;n",c);<br />
multi:<br />
c=a*b;<br />
printf("Multiplication of two no. is = %d&#92;n",c);<br />
sub:<br />
c=a-b;<br />
printf("Subraction of two no. is = %d&#92;n",c);<br />
getch();<br />
return 0;<br />
}<br />
void welcome()<br />
{<br />
printf("Danger -- Welcomes you!&#92;n&#92;n");<br />
}</code></div></div><span style="font-size: 4pt;" class="mycode_size">The code is not fully done yet still working but this error annoying meh. OR should I use switch at place of ifelse</span><br /><br /><div style="text-align:right;border-top: 1px #bababa solid">Double post</div><br />Guys the else done now help me getting out I mean<br />
 <br />
 <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>add:<br />
c=a+b;<br />
printf("Addition of two no. is = %d&#92;n",c);<br />
div:<br />
c=a/b;<br />
printf("Division of two no. is = %d&#92;n",c);<br />
multi:<br />
c=a*b;<br />
printf("Multiplication of two no. is = %d&#92;n",c);<br />
sub:<br />
c=a-b;<br />
printf("Subraction of two no. is = %d&#92;n",c);</code></div></div> <br />
So all get printed I want the one I choose .......<br />
 <br />
 <br />
<span style="font-size: 5pt;" class="mycode_size">GOT THE SOLUTION MYSELF!!</span>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Scratch]]></title>
			<link>https://war-lords.net/forum/thread-9608.html</link>
			<pubDate>Mon, 14 Jan 2013 16:24:13 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=8153">Yuuki <3</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-9608.html</guid>
			<description><![CDATA[<div style="text-align: left;" class="mycode_align">ok. So I am in programming class, and we were making tons of scripts via program developed by MIT students called</div>
<div style="text-align: left;" class="mycode_align">"Scratch". im sure many of you programmers have heard of it. but scratch is very limited to simple, 2D games. Has anyone seen or heard of 3D FPS game on scratch???<br />
or is that even possible???</div>]]></description>
			<content:encoded><![CDATA[<div style="text-align: left;" class="mycode_align">ok. So I am in programming class, and we were making tons of scripts via program developed by MIT students called</div>
<div style="text-align: left;" class="mycode_align">"Scratch". im sure many of you programmers have heard of it. but scratch is very limited to simple, 2D games. Has anyone seen or heard of 3D FPS game on scratch???<br />
or is that even possible???</div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Explain C Pointers]]></title>
			<link>https://war-lords.net/forum/thread-9364.html</link>
			<pubDate>Sun, 09 Dec 2012 03:01:37 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=14867">Danger255</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-9364.html</guid>
			<description><![CDATA[Guys I got stuck at a question that y do programmers need the values address:confused:?Please explain in detail cause I am new to C.]]></description>
			<content:encoded><![CDATA[Guys I got stuck at a question that y do programmers need the values address:confused:?Please explain in detail cause I am new to C.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[C programming failed...]]></title>
			<link>https://war-lords.net/forum/thread-9285.html</link>
			<pubDate>Tue, 27 Nov 2012 12:40:14 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=14867">Danger255</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-9285.html</guid>
			<description><![CDATA[Hey guys I was learning c language then I dont know what's gone wrong here is my program<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include&lt;stdio.h&gt;<br />
int main()<br />
{<br />
int m1,m2,m3,m4,m5,per;<br />
printf("Enter the marks of five subjects&#92;n");<br />
scanf("%d%d%d%d%d",&amp;m1,&amp;m2,&amp;m3,&amp;m4,&amp;m5);<br />
per=(m1+m2+m3+m4+m5)/500*100;<br />
if(per&gt;=80)<br />
printf("First Division&#92;n");<br />
else if(per&gt;=60)<br />
printf("Second Division&#92;n");<br />
else if(per&gt;=50)<br />
printf("Third Division&#92;n");<br />
else<br />
printf("Fail");<br />
return 0;<br />
}</code></div></div>So now the problem is when I enter marks like 98,99,88,87,79. These are above 80% still it shows fail:mad: WHY??:confused:]]></description>
			<content:encoded><![CDATA[Hey guys I was learning c language then I dont know what's gone wrong here is my program<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>#include&lt;stdio.h&gt;<br />
int main()<br />
{<br />
int m1,m2,m3,m4,m5,per;<br />
printf("Enter the marks of five subjects&#92;n");<br />
scanf("%d%d%d%d%d",&amp;m1,&amp;m2,&amp;m3,&amp;m4,&amp;m5);<br />
per=(m1+m2+m3+m4+m5)/500*100;<br />
if(per&gt;=80)<br />
printf("First Division&#92;n");<br />
else if(per&gt;=60)<br />
printf("Second Division&#92;n");<br />
else if(per&gt;=50)<br />
printf("Third Division&#92;n");<br />
else<br />
printf("Fail");<br />
return 0;<br />
}</code></div></div>So now the problem is when I enter marks like 98,99,88,87,79. These are above 80% still it shows fail:mad: WHY??:confused:]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Learn all the languages.]]></title>
			<link>https://war-lords.net/forum/thread-8849.html</link>
			<pubDate>Sat, 06 Oct 2012 12:15:57 +0000</pubDate>
			<dc:creator><![CDATA[<a href="https://war-lords.net/forum/member.php?action=profile&uid=14867">Danger255</a>]]></dc:creator>
			<guid isPermaLink="false">https://war-lords.net/forum/thread-8849.html</guid>
			<description><![CDATA[<a href="http://www.w3schools.com" target="_blank" rel="noopener" class="mycode_url">http://www.w3schools.com</a><br />
W3<br />
School is awesome to learn things<br />
Wanna learn HTML then here u go......<br />
Not only HTML but all the others...............................GO AND TAKE IT!]]></description>
			<content:encoded><![CDATA[<a href="http://www.w3schools.com" target="_blank" rel="noopener" class="mycode_url">http://www.w3schools.com</a><br />
W3<br />
School is awesome to learn things<br />
Wanna learn HTML then here u go......<br />
Not only HTML but all the others...............................GO AND TAKE IT!]]></content:encoded>
		</item>
	</channel>
</rss>