• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Lua NPC Buffer Problem

mokle94

Huh
Joined
Dec 17, 2008
Messages
269
Reaction score
11
Location
Bosnia & Herzegovina
Hi there, i'm working on a war server and i've got some serious problem with the NPC Buffer.
I've got it from here : http://otland.net/f83/buffer-131246/

The problem starts here

00:05 Regular [120]: hi
00:05 Buffer: Hello there,I can increase your melee, distance, shielding, magic level, regeneration, invisibility, magic shield and speed.
00:05 Regular [120]: magic shield
00:05 Buffer: Do you want to receive a magic shield for a certain time?
00:05 Regular [120]: yes

^ and it stops at "yes", i didn't get any buff. Thanking in advance.
 
Did you add the onLogin part?
It might be possible that you do not have the correct storage value.
 
You should just paste:
Lua:
if isPlayer(cid) then
		setPlayerStorageValue(cid, 77700, -1)
	end

Inside onLogin function.
 
Back
Top