The following warnings occurred:
Warning [2] count(): Parameter must be an array or an object that implements Countable - Line: 906 - File: showthread.php PHP 7.2.24-0ubuntu0.18.04.17 (Linux)
File Line Function
/showthread.php 906 errorHandler->error



Facebook Twitter YouTube Frictional Games | Forum | Privacy Policy | Dev Blog | Dev Wiki | Support | Gametee


Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Script Help Adding More Than One Checkpoint spawns back to first one
heyitsrobert97 Offline
Member

Posts: 68
Threads: 29
Joined: Jan 2012
Reputation: 0
#1
Adding More Than One Checkpoint spawns back to first one

I need Help to Remove a Checkpoint when I Reach Another Area So that I Can Create Another Checkpoint in the map. When I add the checkpoints with different names when i die it still takes me to the first checkpoint i placed, and on my map you have to progress where the doors behind you lock. and if u spawn behind a locked door you can't get back. Heres Some Of The Script

------------------------------------------------------------------------------------------------

void SetEntityActive(string &in asParent, string &in asChild, int alState)<--CALLBACK WHEN HIT SCRIPT AREA
{
SetEntityActive("roomonegrunt", true);
ShowEnemyPlayerPosition("roomonegrunt");
CheckPoint ("", "respawn1", "", "", ""); <---- THE CHECKPOINT AND I NAMED THE START AREA 'respawn1'
AddUseItemCallback("", "hallkey", "halldoor", "hallkeydoor", true);
SetEntityPlayerInteractCallback("armorguy", "knightspawn", false);
}
...... NEXT PART OF SCRIPT FOR CHECKPOINT ......

void hallmusicscare(string &in asParent, string &in asChild, int alState) <- HIT SCRIPT AREA
{
SetSwingDoorLocked("halldoor", true, true);
PlaySoundAtEntity("", "close_door.snt", "Player", 0, false);
CheckPoint ("", "hallspawn", "", "", ""); <--- CHECKPOINT. START AREA IS CALLED 'hallspawn'
GiveSanityDamage(20.0f, false);
PlayMusic("Music_03.ogg" , true, 10.0f, 2.0f, 0, true);
SetMessage("halldoormessage", "message", 5.0f);
SetEntityPlayerInteractCallback("frontdoor", "frontdoorlock", false);
AddEntityCollideCallback("Player", "pigspawn", "pigscare", true, 1);
SetEntityCallbackFunc("normalkey", "normfunc");
}

THERE IS 2 MORE SCRIPTS BUT EVERYONE JUST GOES BACK TO THE FIRST ONE!
----------------------------------------------------------------------------------------------------------

ANY HELP APPRECIATED!Big Grin


This Darn House! , Four Doors, Youtube
04-01-2012, 09:43 AM
Find


Messages In This Thread
Adding More Than One Checkpoint spawns back to first one - by heyitsrobert97 - 04-01-2012, 09:43 AM



Users browsing this thread: 1 Guest(s)