Go to Players.ccp and add to GM or Player Section:
Edit: Code Fixed~else if(strcmp(command, "shout") == 0)
if(player->inv->getMesos() >= 500000){
player->inv->setMesos(player->inv->getMesos()-500000);
char RealityShout[200] = ""; //1
strcat_s(RealityShout, 200, player->getName());
strcat_s(RealityShout, 200, " : ");
strcat_s(RealityShout, 200, next_token);
PlayersPacket::showMassage(RealityShout, 2);
}
else{
PlayersPacket::ShowNotice(player, "You don't enough mesos for a shout!\n", 5);
}
It shows the name of the shouter...it's like a channel megaphone (in GMS).
So it shows: IGN: (Whatever the user types)
It's set to deduct 500K...feel free to change that =P
Erm...Have fun?


Reply With Quote![[Release] Shout Command (Deducts mesos)](http://ragezone.com/hyper728.png)


