Items for give Cash Points

nerugm

New member
Messages
8
Points
0
I would like to have an item that, when used, will earn Cashpoints.

atcommand <@cash/#cash> <character name> <amount>

Or do I have to use the NPC function script?

 
Last edited by a moderator:
I would like to have an item that, when used, will earn Cashpoints.

atcommand <@cash/#cash> <character name> <amount>

Or do I have to use the NPC function script?
i'm done, script is.

Code:
	Id: xxxxx
	AegisName: "xxxxx"
	Name: "xxxxx"
	Type: "IT_USABLE"
	Trade: {
		nodrop: true
		notrade: true
		noselltonpc: true
		nocart: true
		nostorage: true
		nogstorage: true
		nomail: true
		noauction: true
	}
	Script:<"
		charcommand("#cash "+strcharinfo(PC_NAME)+" +100");
	">
 
Back
Top