Переглянути джерело

git-svn-id: https://svn.code.sf.net/p/rathena/svn/branches/stable@938 54d463be-8e91-2dee-dedb-b68131a5f0ec

celest 20 роки тому
батько
коміт
5f37f4eed3
2 змінених файлів з 6 додано та 1 видалено
  1. 2 0
      Changelog.txt
  2. 4 1
      src/map/pc.c

+ 2 - 0
Changelog.txt

@@ -1,5 +1,7 @@
 Date	Added
 01/07
+        * Upon changing to high novice 100 stat points should be given, not 88 [celest]
+        * Give high novices First Aid and Trick Dead upon job changing [celest]
         * Remove some unnecessary checks in battle.c [celest]
         * Added some checks to prevent novices still allowed to attack when using
           Trick Dead [celest]

+ 4 - 1
src/map/pc.c

@@ -5375,7 +5375,10 @@ int pc_resetlvl(struct map_session_data* sd,int type)
 	sd->status.dex=1;
 	sd->status.luk=1;
 	if(sd->status.class_ == 4001)
-		sd->status.status_point=88;
+		sd->status.status_point=100;	// not 88 [celest]
+		// give platinum skills upon changing
+		pc_skill(sd,142,1,0);
+		pc_skill(sd,143,1,0);
 	}
 
 	if(type == 2){