[REG] Get item with command

Submit your code requests, and if you are good at coding come help others with their requests.
Post Reply
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

Well i am searching for any command that if you type: /aheroblade gives you the Aresden Hero Blade.. can anyone post the code please?? :)

Ty
Tafka12
<3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

this is easy command! But i dont have it why dont you build it yourself?
<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' />
Pener
Member
Posts: 110
Joined: Fri Feb 27, 2004 3:57 pm
Location: Czech Republic

Post by Pener »

Namesis wrote: Well i am searching for any command that if you type: /aheroblade gives you the Aresden Hero Blade.. can anyone post the code please?? :)

Ty
try look for "get dk set" i think its posted by juggalo2 and try remake it ;)
<img src='http://i19.photobucket.com/albums/b153/s00pr/Pener.jpg' border='0' alt='user posted image' /><br><img src='http://i19.photobucket.com/albums/b153/ ... anner3.jpg' border='0' alt='user posted image' />
Namesis
Regular
Posts: 88
Joined: Fri Mar 03, 2006 12:53 pm

Post by Namesis »

hmhm ill try but i need 1 that when you get it you need to give "xxx" amount of eks ;S
Tafka12
&lt;3 bd long time
Posts: 772
Joined: Wed Dec 28, 2005 6:32 pm

Post by Tafka12 »

add these up there under code, declarations :D or w/e

Code: Select all

char cGizonTooLow[256], cGizonSuccesful[256];
and add this
if (m_pClientList[iClientH] == NULL) return;
if (m_pClientList[iClientH]->m_iGizonItemUpgradeLeft < 4){
ZeroMemory(cGizonTooLow, sizeof(cGizonTooLow));
wsprintf(cGizonTooLow,"You need 5 or more Majestic points");
ShowClientMsg(iClientH, cGizonTooLow);
}
else{
ZeroMemory(cGizonSuccesful, sizeof(cGizonSuccesful));
wsprintf(cGizonSuccesful, "Item Recived sucessfully");
ShowClientMsg(iClientH, cGizonSuccesful);
m_pClientList[iClientH]->m_iGizonItemUpgradeLeft -= 5;
DeleteClient(iClientH, TRUE, TRUE);
}
}



something like this then.
<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' />
Post Reply