View Single Post
  #8  
Old 08-16-2018, 05:23 PM
Splose
Banned
 
Join Date: Apr 2014
Posts: 279
Default

Depending on how many spell gems you want to give.

quests/global/global_player.pl
Code:
sub EVENT_CONNECT {
	if(!defined($qglobals{"SpellGem"}) {
		$client->IncrementAA(1071);	#:: Mnemonic Retention Rk. I
		#$client->IncrementAA(4764);	#:: Mnemonic Retention RK. II
		#$client->IncrementAA(7553);	#:: Mnemonic Retention RK. III
		#$client->IncrementAA(7681);	#:: Mnemonic Retention RK. IV
		$client->SetGlobal("SpellGem", 1, 5, "F");
	}
}
Reply With Quote