treatment chlamydia
Return to forums
Register new account
Login:
generic dapoxetine priligy

Synergy Mod Forums: Adding old maps. - Synergy Mod Forums

Jump to content


Toggle shoutbox Shoutbox

gmc.jimmy  : (08 May 2013 - 08:05 PM) The guests browsing are probably spambots or search engines.
SaRg3nT1  : (03 May 2013 - 08:41 PM) Hmm. the online at once record seems to be broken every day. If you're a guest browsing these forums, why not join? As the saying goes, "The more the merrier."
jonnyquattro  : (27 April 2013 - 11:47 AM) woot.
Stino  : (25 April 2013 - 10:14 AM) https://www.facebook.com/SynergyMod People, you know what to do!
TBC Alex  : (22 April 2013 - 01:38 PM) Do you need help no problem send me a pm or open a thread
WattoDaToyda...  : (20 April 2013 - 10:21 PM) Someone please help me with my server!
scorp75  : (19 January 2013 - 01:28 PM) Spam, spam, spam. I am saddened to see this
VOSK  : (18 January 2013 - 03:48 PM) Looking into ways to correct that.
ChexGuy  : (06 January 2013 - 06:44 PM) actually a lot of the forums have spambot posts
ChexGuy  : (06 January 2013 - 06:43 PM) holy crap the entire Synergy Discussion forum is spambots wtf
Pestilence  : (03 January 2013 - 11:38 AM) Woo synergy updates!!
Edfake  : (31 December 2012 - 10:22 PM) sourcemod should now be fixed as of 9 hours ago
Edfake  : (31 December 2012 - 10:21 PM) Happy new years!!!!
Zero Alpha 2  : (31 December 2012 - 12:27 PM) And Happy New years eve!
Zero Alpha 2  : (31 December 2012 - 12:26 PM) Its been awfully quiet in the shout box lately D:
gmc.jimmy  : (17 October 2012 - 09:04 PM) Here's a Slashdot article talking about a Steam vulnerability.
Edfake  : (15 October 2012 - 04:24 PM) If its any help, UrbanCommand check the November 24, 2011 post in news, and Forensic, check your drivers and update them all. maybe updating ditect x will help too
UrbanCommand  : (23 September 2012 - 10:43 AM) WTF i keep on getting invalid steam userID ticket any help :/
Forensic  : (16 September 2012 - 08:04 PM) ok, umm, blue screen of death, anyone know a fix?
gmc.jimmy  : (14 September 2012 - 10:42 AM) Black Mesa Download from Shack News
Resize Shouts Area

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

Adding old maps.

#1
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11
Im currently adding old maps to my server. Everything should work fine because of the new gargantua and bullsquid added to synergy, and I have ported models and textures to the mp5k and mg1 so that shouldent be a problem. The only problem I have is that players dont spawn with weapons. I am so-so with the edt system, read the tutorial, and have been trying to work it out. I found this old thread that tried doing this, even had a tutorial. But it died out. The syn wiki died out and I cant find gmc.jimmy's tutorial. I looked at a few other threads that provided some insight. I am sure other people have done this. A map I am testing on is syn_invasion. Heres my edt code. Im not too familiar so it might look messy and incorrect.

"syn_invasion"
{
	"console"
	{
		"skill"			2	// skill should be hard enough on 2
		"mp_player_dmgscale"	1.5	// just for the hell of it, extra damage to players
		"mp_flashlight"		1	// must have flashlight on this map
	}

	 entity
    {
        create
        {
            "classname" "info_player_coop" "origin" "0 0 0"
            values
            {
                "spawnflags" "0"
		
            }
            
	    {
            "item_suit" "1"
            "item_battery" "0"
            "item_ammo_pistol" "1"
            "item_ammo_357" "0"
            "item_ammo_smg1" "1"
            "item_ammo_smg1_grenade" "0"
            "item_ammo_ar2" "0"
            "item_ammo_ar2_altfire" "0"
            "item_box_buckshot" "0"
            "item_ammo_crossbow" "0"
            "item_rpg_round" "0"
            "weapon_crowbar" "1"
            "weapon_physcannon" "0"
            "weapon_pistol" "1"
            "weapon_357" "0"
            "weapon_shotgun" "0"
            "weapon_smg1" "1"
            "weapon_ar2" "0"
            "weapon_frag" "1"
            "weapon_rpg" "0"
            "weapon_slam" "0"
            "weapon_stunstick" "0"
            "weapon_crossbow" "0"
            "weapon_mp5k" "0"
            "weapon_mg1" "0"
            "weapon_bugbait" "0"

           }   
       }
        delete
        {
            "classname" "prop_ragdoll"
        }

        edit
        {
            "classname" "prop_physics"
            values
            {
                "classname" "prop_physics_multiplayer"
            }
        }
    }


Anyways to inprove this, or can you see the major issue? Also, another thing, is there a tutorial somewhere? I am trying to put an edt for all the old synergy maps that were coop and dident use a class system. I managed to find an old link for synergy 2.6 somewhere :D . Im sure its something obvious that my primitive eye cant see, but was wondering if someone could help me.

Thanks.
Zero Alpha 2
0

#2
User is offline   Krazy Kasrkin 

  • Synergy Team
  • Group: Administrators
  • Posts: 208
  • Joined: 22-December 09
  • LocationHouston, TX
Your info_player_coop is incorrect, its origin is at 0 0 0, this is probably not the intended spawn point. Use info_player_equip for item/weapon management.

My best recommendation is to look at the .edts in the synergy content.gcf with GCFscape for the half life campaigns to see how things are done there.

Also you don't need mp_flashlight, if a player has item_suit, they will have a flashlight (unless mp_flashlight 0 ofc) mp_player_dmgscale is not a valid cvar (for me atleast) use sk_dmg_inflict_scale2 & sk_dmg_take_scale2 instead.

Otherwise everything else is correct. If you want I can 'fixup' this edt when I get home tonight.
Posted Image
0

#3
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11

View PostKrazy Kasrkin, on 11 October 2011 - 05:08 PM, said:

Your info_player_coop is incorrect, its origin is at 0 0 0, this is probably not the intended spawn point. Use info_player_equip for item/weapon management.

My best recommendation is to look at the .edts in the synergy content.gcf with GCFscape for the half life campaigns to see how things are done there.

Also you don't need mp_flashlight, if a player has item_suit, they will have a flashlight (unless mp_flashlight 0 ofc) mp_player_dmgscale is not a valid cvar (for me atleast) use sk_dmg_inflict_scale2 & sk_dmg_take_scale2 instead.

Otherwise everything else is correct. If you want I can 'fixup' this edt when I get home tonight.


Fixing up this would be great, all I need is something to base it off and then I should be fine.
0

#4
User is offline   Krazy Kasrkin 

  • Synergy Team
  • Group: Administrators
  • Posts: 208
  • Joined: 22-December 09
  • LocationHouston, TX
I don't have syn_invasion so I do not know what origin and angles to use for the info_player_coop, "0 0 0" is the placeholder.

syn_invasion
{
	console
	{
		skill "2"
	}

	entity
	{
	create {classname "info_player_coop" origin "0 0 0"
		values {angles "0 0 0"} }

	create {classname "info_player_equip"
		values {
			item_suit "1"
			weapon_crowbar "1"
			weapon_pistol "1"
			weapon_smg1 "1"
			weapon_frag "1"
			ammo_pistol "54"
			ammo_smg1 "45"
			}
		}

	delete {classname "prop_ragdoll"}

	edit {classname "prop_physics"
		values {classname "prop_physics_multiplayer"
			}
		}
	}
}

Posted Image
0

#5
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11
:D

View PostKrazy Kasrkin, on 11 October 2011 - 08:40 PM, said:

I don't have syn_invasion so I do not know what origin and angles to use for the info_player_coop, "0 0 0" is the placeholder.

syn_invasion
{
	console
	{
		skill "2"
	}

	entity
	{
	create {classname "info_player_coop" origin "0 0 0"
		values {angles "0 0 0"} }

	create {classname "info_player_equip"
		values {
			item_suit "1"
			weapon_crowbar "1"
			weapon_pistol "1"
			weapon_smg1 "1"
			weapon_frag "1"
			ammo_pistol "54"
			ammo_smg1 "45"
			}
		}

	delete {classname "prop_ragdoll"}

	edit {classname "prop_physics"
		values {classname "prop_physics_multiplayer"
			}
		}
	}
}



Know how to find the spawn angles in a map? Im sure I can do that easy enough using hammer.

And thanks for fixing that up, Gonna test to see if it works right now. Thanks again :D

edit: :( I still dont spawn with weapons, do I need to do a bsp fix? and another thing, it says game_player_equip is no longer supported, use info_player equip instead "playerequip1"
Edit: Nvm, I fixed it! :D I opened the map in programmers notepad and changed game_player_equip to info_player_equip :D


						
						
0

#6
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11
I ran into a few bumps with a few maps. What happens if I map doesnt contain game_player_equip or info_player_equip. When I decompiled a couple maps with the notepad they dont contain those. I found out that they are actually using default weapons. How can I fix this and add info_player_equip into it? Using notepad preferably. Thanks!

Edit, you actually dont spawn with weapons at all in synergy, but in synergy 2.6 its uses synergy 2.6's deafult weapons.
0

#7
User is offline   scorp75 

  • Synergy Player
  • PipPipPipPip
  • Group: Members
  • Posts: 78
  • Joined: 16-May 11
chooses which weapons you need to

"create"
{
"classname" "info_player_equip"
"origin" "0 0 0"

"values"
{
"item_suit" "1"
"weapon_physcannon" "1"
"weapon_crowbar" "1"
"weapon_pistol" "1"
"ammo_Pistol" "150"
"weapon_smg1" "1"
"weapon_357" "1"
"ammo_SMG1" "235"
"weapon_shotgun" "1"
"ammo_Buckshot" "24"
"weapon_ar2" "1"
"ammo_AR2" "30"
"weapon_rpg" "1"
"ammo_357" "30"
"weapon_frag" "3"
"ammo_rpg" "3"
"weapon_mp5k" "1"
"weapon_mg1" "1"
"weapon_crossbow" "1"
"ammo_smg1_grenade" "3"
"ammo_ar2altfire" "5"
"weapon_deagle" "1"
}
}




you have to edt zeros on the weapon, and therefore it is not at spawn
"weapon_rpg" "0"
"weapon_slam" "0"
"weapon_stunstick" "0"
"weapon_crossbow" "0"
"weapon_mp5k" "0"
"weapon_mg1" "0"

put the number instead of 0
0

#8
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11

View Postscorp75, on 12 October 2011 - 02:06 PM, said:

chooses which weapons you need to

"create"
{
"classname" "info_player_equip"
"origin" "0 0 0"

"values"
{
"item_suit" "1"
"weapon_physcannon" "1"
"weapon_crowbar" "1"
"weapon_pistol" "1"
"ammo_Pistol" "150"
"weapon_smg1" "1"
"weapon_357" "1"
"ammo_SMG1" "235"
"weapon_shotgun" "1"
"ammo_Buckshot" "24"
"weapon_ar2" "1"
"ammo_AR2" "30"
"weapon_rpg" "1"
"ammo_357" "30"
"weapon_frag" "3"
"ammo_rpg" "3"
"weapon_mp5k" "1"
"weapon_mg1" "1"
"weapon_crossbow" "1"
"ammo_smg1_grenade" "3"
"ammo_ar2altfire" "5"
"weapon_deagle" "1"
}
}




you have to edt zeros on the weapon, and therefore it is not at spawn
"weapon_rpg" "0"
"weapon_slam" "0"
"weapon_stunstick" "0"
"weapon_crossbow" "0"
"weapon_mp5k" "0"
"weapon_mg1" "0"

put the number instead of 0


Thanks scorp, gonna try that right now, I will post if it works
Edit: Still dident spawn weapons on the map that contains "2.6's default weapons" and dident really do much. Again, everything works fine on maps that dont use default weapons.
0

#9
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11
Lol, im encountering problems. Noone spawns with a suit when we play, I did use "item_suit" "1", This is on halfmileisland, my favorite synergy map before it went OB
Anything I can do, Or do I need to edit the map itself?
0

#10
User is offline   scorp75 

  • Synergy Player
  • PipPipPipPip
  • Group: Members
  • Posts: 78
  • Joined: 16-May 11
Step 1
Decompiling maps in vmex.jar
Step 2
Open map in the Hummer
See the first error - spawn

Posted Image
Change in edt old spawn a new

"edit"
{ "classname" "info_player_start" "values" { "classname" "info_player_coop" } }

Now, prescribe equipment

"delete" { "classname" "game_player_equip" }

"create"
{
"classname" "info_player_equip"
"origin" "0 0 0"

"values"
{
"item_suit" "1"
"weapon_physcannon" "1"
"weapon_crowbar" "1"
"weapon_pistol" "1"
"ammo_pistol" "100"
"weapon_shotgun" "1"
"ammo_buckshot" "20"
"weapon_ar2" "1"
"ammo_ar2" "60"
"weapon_rpg" "1"
"ammo_rpg_round" "3"
"weapon_deagle" "1"
"ammo_357" "30"

}
}

Necessary to correct errors of ammunition on the map


"edit" { "classname" "weapon_sl8" "values" { "classname" "weapon_mp5k" } }
"edit" { "classname" "item_ammo_smg1_large" "values" { "classname" "item_ammo_smg1" } }
"edit" { "classname" "item_ammo_ar2_large" "values" { "classname" "item_ammo_ar2" } }



Map is launching entiti setting the NPC, you can delete it and configure the map at its discretion

"delete" { "targetname" "npc_health" }

"console"
{
"mp_flashlight" "1"
"mp_lifecount" "-1"
"sk_barnacle_health" "35"
"sk_barney_health" "35"
"sk_citizen_health" "40"
"sk_combine_s_health" "50"
"sk_combine_guard_health" "70"
"sk_gargantua_health" "500"
"sk_strider_health" "350"
"sk_headcrab_health" "10"
"sk_headcrab_fast_health" "10"
"sk_headcrab_poison_health" "35"
"sk_hunter_health" "210"
"sk_helicopter_health" "2400"
"sk_metropolice_health" "40"
"sk_zombie_health" "50"
"sk_zombie_poison_health" "175"
"sk_zombie_soldier_health" "100"
"sk_antlion_health" "30"
"sk_antlion_worker_health" "60"
"sk_antlionguard_health" "500"
"sk_npc_head" "3"
"sk_npc_chest" "1"
"sk_npc_arm" "1"
"sk_npc_leg" "1"
"sk_player_head" "3"
"sk_player_chest" "1"
"sk_player_arm" "1"
"sk_player_leg" "1"
"sk_max_357" "30"
}
0

#11
User is offline   CMaster 

  • Uploader
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 653
  • Joined: 09-August 08
http://synergymod.ne...d-maps-project/ this might be of interest to you.

Beyond that, if thing's aren't working, you've probably got the brackets wrong in your .edt
Easily done, happens all the while.
0

#12
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11

View PostCMaster, on 13 October 2011 - 04:53 AM, said:

http://synergymod.ne...d-maps-project/ this might be of interest to you.

Beyond that, if thing's aren't working, you've probably got the brackets wrong in your .edt
Easily done, happens all the while.


I used chkedt, it says everythings fine. Heres my code for halfmileisland, I dont spawn with an hev suit when playing it.

"Syn_HalfMileIsland"
{
	"console"
	{
		"sk_headcrab_health" "45"
		"sk_antlion_health" "100"
		"sk_rollermine_shock" "250"	// nice zap for ya
		"sk_citizen_health" "1"		// citizen will die from one shot
		"mp_falldamage" "1"		// you leap you fall you die 
	}

	entity
	{
	create {classname "info_player_coop" origin "0 0 0"
		values {angles "0 0 0"} }

	create {classname "info_player_equip"
		values {
			"item_suit"				"1"
			"item_battery" "15"
			"weapon_crowbar" "1"
			"weapon_shotgun" "1"
			"weapon_357" "1"
			"weapon_smg1" "1"
			"ammo_smg1" "45"
			"ammo_Buckshot" "12"
			"ammo_357" "12"
			}
		}

	delete {classname "prop_ragdoll"}

	edit {classname "prop_physics"
		values {classname "prop_physics_multiplayer"
			}
		}
	}
}


EDIT: Do I need to decompile this map too? I dont think the older maps included info_player_coop, did they? I can check now in a sec.

Stupid question maybe, but does the weapons have to be above their respective ammo? And I dont spawn with any ammo for shotgun or the 357, nor a suit. I dont know what im doing wrong :( .

Yeah, it doesent include it, but I still get the weapons them self's just not the ammo or suit, can info_player_coop affect that?
0

#13
User is offline   scorp75 

  • Synergy Player
  • PipPipPipPip
  • Group: Members
  • Posts: 78
  • Joined: 16-May 11
You do not read what I wrote above?

What the devil do you create spawn point with coordinate 0 0 0?

I wrote that you only need to change the points that have

"edit"
{ "classname" "info_player_start" "values" { "classname" "info_player_coop" } }
0

#14
User is offline   Zero Alpha 2 

  • Advanced Member
  • PipPipPip
  • Group: Members
  • Posts: 44
  • Joined: 13-September 11

View Postscorp75, on 13 October 2011 - 01:23 PM, said:

You do not read what I wrote above?

What the devil do you create spawn point with coordinate 0 0 0?

I wrote that you only need to change the points that have

"edit"
{ "classname" "info_player_start" "values" { "classname" "info_player_coop" } }


I dont know what I wrote, but I found out how to fix all of them, and they will work near identical to before. Its a bit complicated to say but it works.
0

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users


yasmin birth control