<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3164883274156520378</id><updated>2011-07-31T06:13:24.229+03:00</updated><title type='text'>Mu Online Latvian Coder Blog</title><subtitle type='html'>&lt;center&gt;Here I will post all the progress about my coding on the latests GS'es that I have.&lt;/center&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>6</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-5710823598339208947</id><published>2010-02-11T00:27:00.005+02:00</published><updated>2010-02-11T00:35:30.166+02:00</updated><title type='text'>[C++] Loading SMD models to main</title><content type='html'>Hello, today I release the full source of loading SMD models(not BMD), with textures into the Main 1.00L(latest Korean main).&lt;br&gt;&lt;br&gt;

Okay here we got a &lt;span style="font-weight:bold;"&gt;.cpp&lt;/span&gt; file :&lt;br&gt;
&lt;div class="tools" id="asm" &gt;Source C++ Models.cpp&lt;/div&gt;
&lt;textarea style="display: none;" name="code" id="code" class="cpp" cols="60" rows="10" disabled&gt;
//=================================
// LCTeam 1.00L Main Project v0.1b
// Started : 30.01.2010
// Coder : SmallHabit
//=================================

#include &lt;windows.h&gt;
#include "Models.h"
//#include "Utils.h"

//Structure
ItemStruct Items[512];

// SMD Items Loader
int InitItems()
{ 
 //Jewel Of Luck (S:14, I:140)
    strcpy( Items[0].ModelName,"Jewel23.smd");
    strcpy(Items[0].ModelPath,"Data\\Item\\");
    strcpy(Items[0].TextureDir,"Item\\");
    Items[0].Section = MISC3;
    Items[0].Id = 140;

    return 1;
}

// Load SMD Model to Memory
int LoadModel(char dir[128],char model[64],char texdir[128],int section,int id)
{
 // If there is model name
 if(model[0] != 0)
 {
   LoadSMD(section+id,dir,model,"end");
 }

 // If our model have a Texture then we must load it.
 if(texdir[0] != 0)
 {
  // This function loads OZT and OZJ images directly to our loaded model.
  LoadTEX(section+id,texdir,0x2901,0x2600,1);
 }
 return 1;
}

// Load Model Wrapper for Animated models like Wings or Bows
void LoadDMD()
{
 for ( int a = 0 ; a &lt; 64 ; a++ )
 {
  LoadModel ( Items[a].ModelPath , Items[a].ModelName , Items[a].TextureDir , Items[a].Section , Items[a].Id);
 }
 
 //Load Models with Animations

 //LoadSMD( MISC1 + 100 , "Data\\Item\\" , "wings_demonic.smd" , "wings_demonic_fly.smd" , "wings_demonic_fly.smd" ,  "end" );
 //LoadTEX( MISC1 + 100  , "Item\\" , 0x2901 , 0x2600 , 1);

 //LoadSMD( BOW + 30 , "Data\\Item\\" , "dge_bow_1.smd" , "dge_bow_1_shot.smd" ,  "end" );
 //LoadTEX( BOW + 30  , "Item\\" , 0x2901 , 0x2600 , 1);
}

&lt;/textarea&gt;
&lt;br&gt;&lt;br&gt;

And also the &lt;span style="font-weight:bold;"&gt;.h&lt;/span&gt; file : &lt;br&gt;&lt;br&gt;

&lt;div class="tools" id="asm" &gt;Source C++ Models.h&lt;/div&gt;
&lt;textarea style="display: none;" name="code" id="code" class="cpp" cols="60" rows="10" disabled&gt;
//=================================
// LCTeam 1.00L Main Project v0.1b
// Started : 30.01.2010
// Coder : SmallHabit
//=================================

//Item Structure
typedef struct Item
{ 
 char ModelName[64];
 char ModelPath[128];
 char TextureDir[128];
 int Section;
 int Id;
}ItemStruct;

extern ItemStruct Items[512];

// Function Types
typedef int(*TLoadSMD) ( ... );

// Main Functions
TLoadSMD LoadSMD = (TLoadSMD) 0x005F204E; //1.00L Blue
TLoadSMD LoadTEX = (TLoadSMD) 0x005F1B90; //1.00L Blue

// Items Declarations
#define SKILL  0xC2 //1.00L Blue
#define SWORD  0x365 //1.00L Blue
#define AXE    0x565 //1.00L Blue
#define MACE   0x765 //1.00L Blue
#define SPEAR  0x965 //1.00L Blue
#define BOW    0xB65 //1.00L Blue
#define STAFF  0xD65 //1.00L Blue
#define SHIELD 0xF65 //1.00L Blue
#define HELM   0x1165 //1.00L Blue
#define ARMOR  0x1365 //1.00L Blue
#define PANTS  0x1565 //1.00L Blue
#define GLOVES 0x1765 //1.00L Blue
#define BOOTS  0x1965 //1.00L Blue
#define MISC1  0x1B75 //1.00L Blue
#define MISC2  0x1D65 //1.00L Blue
#define MISC3  0x1F65 //1.00L Blue
#define SCROLL 0x2165 //1.00L Blue
&lt;/textarea&gt;
&lt;br&gt;&lt;br&gt;
There are the screenshot with a new custom model :&lt;br&gt;
&lt;a target="_blank" href="http://radikal.ru/F/s15.radikal.ru/i188/1002/97/0e89595fc941.jpg.html"&gt;&lt;img src="http://s15.radikal.ru/i188/1002/97/0e89595fc941t.jpg" &gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-5710823598339208947?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/5710823598339208947/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/c-loading-smd-models-to-main.html#comment-form' title='Комментарии: 5'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/5710823598339208947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/5710823598339208947'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/c-loading-smd-models-to-main.html' title='[C++] Loading SMD models to main'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-2900493054375143077</id><published>2010-02-02T00:02:00.003+02:00</published><updated>2010-02-02T00:09:04.280+02:00</updated><title type='text'>Custom Jewels</title><content type='html'>Here is video of custom Jewel(Jewel Of Luck)&lt;br&gt;&lt;br&gt;
&lt;center&gt;&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube.com/v/zI52zV7cEg8&amp;hl=ru_RU&amp;fs=1&amp;"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube.com/v/zI52zV7cEg8&amp;hl=ru_RU&amp;fs=1&amp;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/center&gt;&lt;br&gt;&lt;br&gt;

-Inventory Golden Name - &lt;b&gt;OK&lt;/b&gt;&lt;br&gt;
-Inventory Info about item - &lt;b&gt;OK&lt;/b&gt;&lt;br&gt;
-Inventory Price - &lt;b&gt;OK&lt;/b&gt;&lt;br&gt;
-Can't drop - &lt;b&gt;OK&lt;/b&gt;&lt;br&gt;
&lt;br&gt;
Bugs : &lt;br&gt;
-When on ground doesn't have golden highlight like other jewels

I'm making an article about adding custom jewel, so in a few days there will be an update.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-2900493054375143077?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/2900493054375143077/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/custom-jewels.html#comment-form' title='Комментарии: 0'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/2900493054375143077'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/2900493054375143077'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/custom-jewels.html' title='Custom Jewels'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-6431074043080342775</id><published>2010-02-01T16:36:00.007+02:00</published><updated>2010-02-01T16:45:50.412+02:00</updated><title type='text'>ASM Source Highlight</title><content type='html'>Hello, now not only C++ source code will be highlighted but also the ASM, cause some source I am writing at ASM so this will also help you to easy read the code :)
&lt;br&gt;
Example(&lt;b&gt;You still need wait sometime to Script gets loaded, it takes a few seconds&lt;/b&gt;):
&lt;br&gt;
&lt;div class="tools" id="asm" width="" &gt;Source ASM&lt;/div&gt;
&lt;textarea name="code" style="display: none;" class="asm" id="asm" cols="60" rows="10"&gt;
  PUSH EBP
  MOV EBP,ESP
  PUSH ESI
  PUSH DWORD PTR SS:[EBP+0x08]
  CALL 0x00061CE88
  PUSH DWORD PTR SS:[EBP+0x14]
  PUSH DWORD PTR SS:[EBP+0x10]
  PUSH DWORD PTR SS:[EBP+0x0C]
  PUSH DWORD PTR SS:[EBP+0x08]
  CALL 0x0062E220
  PUSH DWORD PTR SS:[EBP+0x08]
  MOV ESI,EAX
  CALL 0x0061CEDA
  ADD ESP,0x18
  MOV EAX,ESI
  POP ESI
  POP EBP
  RETN
&lt;/textarea&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-6431074043080342775?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/6431074043080342775/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/asm-source-highlight.html#comment-form' title='Комментарии: 0'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/6431074043080342775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/6431074043080342775'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/02/asm-source-highlight.html' title='ASM Source Highlight'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-8943800998243836996</id><published>2010-01-26T22:29:00.004+02:00</published><updated>2010-01-26T22:50:00.970+02:00</updated><title type='text'>Mu Blue 1.00L version beta test</title><content type='html'>Today I finally downloaded the latest patch of &lt;b&gt;Mu Blue 1.00L&lt;/b&gt;, so there are some pics. &lt;font size="1px" &gt;&lt;b&gt;Click on img to view full sized image.&lt;/b&gt;&lt;/font&gt;&lt;br&gt;
&lt;a target="_blank" href="http://radikal.ru/F/s006.radikal.ru/i213/1001/2e/d3d52facd619.jpg.html"&gt;&lt;img src="http://s006.radikal.ru/i213/1001/2e/d3d52facd619t.jpg" &gt;&lt;/a&gt; &lt;a target="_blank" href="http://radikal.ru/F/s001.radikal.ru/i195/1001/00/f34edd88a864.jpg.html"&gt;&lt;img src="http://s001.radikal.ru/i195/1001/00/f34edd88a864t.jpg" &gt;&lt;/a&gt; &lt;a target="_blank" href="http://radikal.ru/F/s002.radikal.ru/i200/1001/80/d9542f228072.jpg.html"&gt;&lt;img src="http://s002.radikal.ru/i200/1001/80/d9542f228072t.jpg" &gt;&lt;/a&gt; &lt;br&gt;&lt;a target="_blank" href="http://radikal.ru/F/s42.radikal.ru/i096/1001/2c/814175aac256.jpg.html"&gt;&lt;img src="http://s42.radikal.ru/i096/1001/2c/814175aac256t.jpg" &gt;&lt;/a&gt;
&lt;br&gt;
Here is a new yellow icon in the top left corner, maybe that new punishment system for users who play long, who knows, who knows ;))&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-8943800998243836996?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/8943800998243836996/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/mu-blue-100l-version-beta-test.html#comment-form' title='Комментарии: 0'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/8943800998243836996'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/8943800998243836996'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/mu-blue-100l-version-beta-test.html' title='Mu Blue 1.00L version beta test'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-3163595195663279793</id><published>2010-01-26T16:05:00.017+02:00</published><updated>2010-02-01T03:21:25.685+02:00</updated><title type='text'>Source Code Highlight</title><content type='html'>Today, added support of the highlight for the source code. So in future you will be easier to find the code. And of course is much easier to read the code, with all syntaxes. ;)
&lt;br&gt;&lt;br&gt;
Here is an Example of highlight(&lt;span style="font-weight:bold;"&gt;the highlights code is not the original function of this blog, so you will need to wait until it get's loaded&lt;/span&gt;) :&lt;br&gt;
&lt;div class="tools" id="asm" &gt;Source C++&lt;/div&gt;
&lt;textarea style="display: none;" name="code" id="code" class="cpp" cols="60" rows="10" disabled&gt;
void FunctionName()
{
 int Number; //Here goes all the code I wrote
}
&lt;/textarea&gt;
&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-3163595195663279793?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/3163595195663279793/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/test-message.html#comment-form' title='Комментарии: 0'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/3163595195663279793'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/3163595195663279793'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/test-message.html' title='Source Code Highlight'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3164883274156520378.post-4757436851799852184</id><published>2010-01-25T17:51:00.005+02:00</published><updated>2010-01-26T17:44:38.895+02:00</updated><title type='text'>Blog Opening</title><content type='html'>Today is a great day. :) I opened own blog. In short time I will add some news, and information. At all I will post here a source code as well, for sure with a comments to it. ;) Have a nice day.
&lt;br&gt;&lt;br&gt;
Сегодня великий день. :) Я создал свой блог. В скором времени я добавлю парочку новостей, и информацию. В основном я буду выкладывать сюда исходный код, конечно-же с пояснениями. ;) Удачного дня.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3164883274156520378-4757436851799852184?l=stevemcqeen.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://stevemcqeen.blogspot.com/feeds/4757436851799852184/comments/default' title='Комментарии к сообщению'/><link rel='replies' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/blog-opening.html#comment-form' title='Комментарии: 0'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/4757436851799852184'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3164883274156520378/posts/default/4757436851799852184'/><link rel='alternate' type='text/html' href='http://stevemcqeen.blogspot.com/2010/01/blog-opening.html' title='Blog Opening'/><author><name>SteveMcQeen</name><uri>http://www.blogger.com/profile/06288291849397277554</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='30' src='http://2.bp.blogspot.com/_CK91qTG-R3g/S13GbhhsaSI/AAAAAAAAAAM/-eRvBXpICaA/S220/logo.gif'/></author><thr:total>0</thr:total></entry></feed>
