[Src]->Get merien set on cityhall
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
well thats too broad, think you need to narrow it down a bit..ADDKiD wrote: Everything?

<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
you could pm me if you wantADDKiD wrote: Erm, well, you got MSN/Aim? Might aswell add me, its a whole fucking story that I don't think everyone wants me to type here o.o
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
lolBlizaga wrote: To Treax2: I fixed your changecity code, doesn't give connection lost anymore, and it changes heros when you use it.
Code: Select all
void CGame::AdminOrder_ChangeCity(int iClientH)
{
char cGizonTooLow[256], cGizonSuccesful[256];
if (m_pClientList[iClientH] == NULL) return;
if (m_pClientList[iClientH]->m_iGizonItemUpgradeLeft < 5){
ZeroMemory(cGizonTooLow, sizeof(cGizonTooLow));
wsprintf(cGizonTooLow,"You Dont Have 5 Majestic points");
ShowClientMsg(iClientH, cGizonTooLow);
}
else{
if (memcmp(m_pClientList[iClientH]->m_cLocation, "aresden",7) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"elvine");
else if (memcmp(m_pClientList[iClientH]->m_cLocation, "elvine",6) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"aresden");
ZeroMemory(cGizonSuccesful, sizeof(cGizonSuccesful));
wsprintf(cGizonSuccesful, "City Change Succesfuled!");
ShowClientMsg(iClientH, cGizonSuccesful);
m_pClientList[iClientH]->m_iGizonItemUpgradeLeft -= 5;
[color=red]DeleteClient(iClientH, TRUE, TRUE);[/color]
}
}
and that hero thing ... nice that u did it ... but actually i understand it like this .." i am the master and better than you ... meh did hero change you not"
OK Keep it on-topic please.
And, since this is a submitted code then MOVED! to Client source submitions
And, since this is a submitted code then MOVED! to Client source submitions
<img src='http://www.hot.ee/carvanho/taavi.png' border='0' alt='user posted image' /><br><br><img src='http://www.hot.ee/carvanho/Elvine.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/LieroX.png' border='0' alt='user posted image' /><br><img src='http://www.hot.ee/carvanho/Football.png' border='0' alt='user posted image' />
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
yes sir :blink:Tafka12 wrote: OK Keep it on-topic please.
And, since this is a submitted code then MOVED! to Client source submitions
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
<span style='color:green'>Don't be fool, I didn't fix it to make logout, I didn't just delete the deleteclient order, I fixed it so it changes inmediately, no need logout or connection lost, if you want I can post the code.Treax2 wrote:lolBlizaga wrote: To Treax2: I fixed your changecity code, doesn't give connection lost anymore, and it changes heros when you use it.it wasnt a bug that it gived dc ... it was coded like that ... so yes u can make relog too ... but it takes "10 secs" of logout time pluz 5+ secs to log inCode: Select all
void CGame::AdminOrder_ChangeCity(int iClientH) { char cGizonTooLow[256], cGizonSuccesful[256]; if (m_pClientList[iClientH] == NULL) return; if (m_pClientList[iClientH]->m_iGizonItemUpgradeLeft < 5){ ZeroMemory(cGizonTooLow, sizeof(cGizonTooLow)); wsprintf(cGizonTooLow,"You Dont Have 5 Majestic points"); ShowClientMsg(iClientH, cGizonTooLow); } else{ if (memcmp(m_pClientList[iClientH]->m_cLocation, "aresden",7) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"elvine"); else if (memcmp(m_pClientList[iClientH]->m_cLocation, "elvine",6) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"aresden"); ZeroMemory(cGizonSuccesful, sizeof(cGizonSuccesful)); wsprintf(cGizonSuccesful, "City Change Succesfuled!"); ShowClientMsg(iClientH, cGizonSuccesful); m_pClientList[iClientH]->m_iGizonItemUpgradeLeft -= 5; [color=red]DeleteClient(iClientH, TRUE, TRUE);[/color] } }
and that hero thing ... nice that u did it ... but actually i understand it like this .." i am the master and better than you ... meh did hero change you not"
Besides..:</span>
<span style='color:GREEN'>I hate when someone devaluates anyone else work, worst if the work is made to help peoplebah even noob can do it
everyone can copy original codes and change some 20 things ...
but everynoob cant so ppls who need/want it then ur codes can save time ...
Please post errors you get from the Merien Hero code.</span>
<a href='http://imageshack.us' target='_blank'><img src='http://img224.imageshack.us/img224/2738/screenqu8.jpg' border='0' alt='user posted image' /></a><br>drajwer draw<br><a href='index.php?showtopic=7299' target='_blank'>index.php?showtopic=7299</a>
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
hrm seems well i added in your code but it doesn't work for me lol. i looked it over and over but can't tell if it's my fault or yours but well i probally missed something along the way. first code i've had trouble with XDBlizaga wrote:<span style='color:green'>Don't be fool, I didn't fix it to make logout, I didn't just delete the deleteclient order, I fixed it so it changes inmediately, no need logout or connection lost, if you want I can post the code.Treax2 wrote:lolBlizaga wrote: To Treax2: I fixed your changecity code, doesn't give connection lost anymore, and it changes heros when you use it.it wasnt a bug that it gived dc ... it was coded like that ... so yes u can make relog too ... but it takes "10 secs" of logout time pluz 5+ secs to log inCode: Select all
void CGame::AdminOrder_ChangeCity(int iClientH) { char cGizonTooLow[256], cGizonSuccesful[256]; if (m_pClientList[iClientH] == NULL) return; if (m_pClientList[iClientH]->m_iGizonItemUpgradeLeft < 5){ ZeroMemory(cGizonTooLow, sizeof(cGizonTooLow)); wsprintf(cGizonTooLow,"You Dont Have 5 Majestic points"); ShowClientMsg(iClientH, cGizonTooLow); } else{ if (memcmp(m_pClientList[iClientH]->m_cLocation, "aresden",7) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"elvine"); else if (memcmp(m_pClientList[iClientH]->m_cLocation, "elvine",6) == 0 ) strcpy(m_pClientList[iClientH]->m_cLocation,"aresden"); ZeroMemory(cGizonSuccesful, sizeof(cGizonSuccesful)); wsprintf(cGizonSuccesful, "City Change Succesfuled!"); ShowClientMsg(iClientH, cGizonSuccesful); m_pClientList[iClientH]->m_iGizonItemUpgradeLeft -= 5; [color=red]DeleteClient(iClientH, TRUE, TRUE);[/color] } }
and that hero thing ... nice that u did it ... but actually i understand it like this .." i am the master and better than you ... meh did hero change you not"
Besides..:</span><span style='color:GREEN'>I hate when someone devaluates anyone else work, worst if the work is made to help peoplebah even noob can do it
everyone can copy original codes and change some 20 things ...
but everynoob cant so ppls who need/want it then ur codes can save time ...
Please post errors you get from the Merien Hero code.</span>
it wont give me the hero but i've looked over and over don't know why
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
the topic isnt about Treax or anything else except merien hero okprojectx wrote: Treax ,, i think you remember ANTIY**
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />
<span style='color:green'>Check the client sources again, if nothing appears it is because you haven't activated the strings on the dialogbox of the cityhall menu, and if it doesn't give you the hero, check your ITEMID for the MerienSet since mines are 9XX something, I forgot to warn you about that.</span>BlueChristmas wrote:hrm seems well i added in your code but it doesn't work for me lol. i looked it over and over but can't tell if it's my fault or yours but well i probally missed something along the way. first code i've had trouble with XD
it wont give me the hero but i've looked over and over don't know why
<span style='color:green'>You suck man.</span>thanks ... biggrin.gif
but somewhere i saw sentence like this " loved by few , hated by many, respected by all" biggrin.gif
<a href='http://imageshack.us' target='_blank'><img src='http://img224.imageshack.us/img224/2738/screenqu8.jpg' border='0' alt='user posted image' /></a><br>drajwer draw<br><a href='index.php?showtopic=7299' target='_blank'>index.php?showtopic=7299</a>
-
- Loyal fan
- Posts: 216
- Joined: Wed Apr 19, 2006 12:19 am
it shows up and everything dialog wise but when you go to take the hero it wont give the item is what i meant to sayBlizaga wrote:<span style='color:green'>Check the client sources again, if nothing appears it is because you haven't activated the strings on the dialogbox of the cityhall menu, and if it doesn't give you the hero, check your ITEMID for the MerienSet since mines are 9XX something, I forgot to warn you about that.</span>BlueChristmas wrote:hrm seems well i added in your code but it doesn't work for me lol. i looked it over and over but can't tell if it's my fault or yours but well i probally missed something along the way. first code i've had trouble with XD
it wont give me the hero but i've looked over and over don't know why
<span style='color:green'>You suck man.</span>thanks ... biggrin.gif
but somewhere i saw sentence like this " loved by few , hated by many, respected by all" biggrin.gif
<img src='http://img114.imageshack.us/img114/8618 ... 2dy3lx.jpg' border='0' alt='user posted image' />