i want picture preview
Screenshot by Lightshot <<< Using this?
Kill player
i want picture preview
Screenshot by Lightshot <<< Using this?
Kill player
Anyone know how adding player money ?
To have it popup like xp does look for this
if(n.XP > 0)
{
char tmpStr[64];
sprintf(tmpStr, gLangMngr.getString("InfoMsg_XPAdded"), n.XP);
hudMain->showMessage(tmpStr);
}
and paste this above or below it.
if(n.GD > 0)
{
char tmpStr[64];
sprintf(tmpStr, gLangMngr.getString("InfoMsg_DollarsPickedUp"), n.GD);
hudMain->showMessage(tmpStr);
}
Its on WarZ.sln (client side)
and if you still don't find it look for gLangMngr.getString("InfoMsg_XPAdded and then copy the code it has like i did above.