Jump to content

Recommended Posts

Posted

Create like other shops via multisell or create via python language, or java, i don't know its taste buisness, I created via python, most npc in my server is created via python.

Posted

how i can add in my server pc bang Points?

 

I guess you're blind, look at sticked guides from this section.

  • 1 month later...
Posted

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);

 

Posted

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);

 

Posted

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?.

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...