Index: start.sh
===================================================================
--- start.sh	(Revision 202)
+++ start.sh	(Arbeitskopie)
@@ -32,7 +32,7 @@
 		rm -f $(getInstancePath $1)/logs/output_log.txt
 		
 		for H in $(getHooksFor serverPreStart); do
-			$H $INSTANCE
+			$H $1
 		done
 
 		SSD_PID="--pidfile $(getInstancePath $1)/7dtd.pid --make-pidfile"
@@ -44,7 +44,7 @@
 		sleep 1
 
 		for H in $(getHooksFor serverPostStart); do
-			$H $INSTANCE
+			$H $1
 		done
 
 		if [ $(isRunning $1) -eq 1 ]; then
Index: stop.sh
===================================================================
--- stop.sh	(Revision 202)
+++ stop.sh	(Arbeitskopie)
@@ -27,7 +27,7 @@
 	res=$(isRunning $1)
 	if [ $res -eq 1 ]; then
 		for H in $(getHooksFor serverPreStop); do
-			$H $INSTANCE
+			$H $1
 		done
 
 		echo "Trying to gracefully shutdown..."
@@ -53,7 +53,7 @@
 		rm $(getInstancePath $1)/7dtd.pid
 
 		for H in $(getHooksFor serverPostStop); do
-			$H $INSTANCE
+			$H $1
 		done
 
 		echo "Done"	
