Jump to content

[SHARE] PC Bang Points


Recommended Posts

  • 1 month later...

Do not use that code or if you gonna use it change SystemMessages / with activeChar.sendMessage("You received" + score );

i've test it with systemmessage and i got spam messages , then versus tell me , it wont work cuz it sends client messages so if you gonna use it dont make it with systemmessage. just replace

SystemMessage sm = new SystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_GOT_$51_GLASSES_PC);
				sm.addNumber(score);
				activeChar.sendPacket(sm);
				sm = null;
with this
activeChar.sendMessage("You got double points" + score);

And This

SystemMessage sm = new SystemMessage(SystemMessageId.YOU_RECEVIED_$51_GLASSES_PC);
+					sm.addNumber(score);
+					activeChar.sendPacket(sm);
+					sm = null;

with this 

activeChar.sendMessage("You received " + score);

 

Link to comment
Share on other sites

Do not use that code or if you gonna use it change SystemMessages / with activeChar.sendMessage("You received" + score );

i've test it with systemmessage and i got spam messages , then versus tell me , it wont work cuz it sends client messages so if you gonna use it dont make it with systemmessage. just replace

SystemMessage sm = new SystemMessage(SystemMessageId.DOUBLE_POINTS_YOU_GOT_$51_GLASSES_PC);
				sm.addNumber(score);
				activeChar.sendPacket(sm);
				sm = null;
with this
activeChar.sendMessage("You got double points" + score);

And This

SystemMessage sm = new SystemMessage(SystemMessageId.YOU_RECEVIED_$51_GLASSES_PC);
+					sm.addNumber(score);
+					activeChar.sendPacket(sm);
+					sm = null;

with this 

activeChar.sendMessage("You received " + score);

 

Link to comment
Share on other sites

I maked with systemmsg, but you need to edit systemmsg.dat in system folder..

But its for chose

Then update your first post , how the blue hell we can know it?.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...