Forum

> > CS2D > Maps/Editor > Custom Maps and Stuff
ForenübersichtCS2D-Übersicht Maps/Editor-ÜbersichtEinloggen, um zu antworten

Englisch Custom Maps and Stuff

1.435 Antworten
Seite
Zum Anfang Vorherige 1 260 61 6271 72 Nächste Zum Anfang

alt Re: Custom Maps and Stuff

Nem
User Off Offline

Zitieren
NTD hat geschrieben
but even the BOTS of cs2d are NPCs!

but teh bots can just kill players

alt Re: Custom Maps and Stuff

Vectarrio
User Off Offline

Zitieren
Uploaded my first lua mod(only lua): Dual Zombies.
But forgot to write about one thing: If one team has no players, the second team WINS

alt Re: Custom Maps and Stuff

BetaM
User Off Offline

Zitieren
∗NPC Mod 1.1∗

Create NPCs, move them if you want, turn them, and remove them!

Moreover, there are 2 examples of how to make lua NPCs:
>NPC that moves around the map
>NPC that follows a random way

Console commands:
>npc <X> <Y> - Creates a NPC at the given coordinate
>npc_turn <ID> <DEG> - Rotates the chosen NPC (id) to a given direction (deg)
>npc_move_left <ID> <LEN> - Moves the NPC (id) for the given length (len) to the left
>npc_move_right <ID> <LEN> - Moves the NPC (id) for the given length (len) to the right
>npc_move_up <ID> <LEN> - Moves the NPC (id) for the given length (len) up
>npc_move_down <ID> <LEN> - Moves the NPC (id) for the given length (len) down
>npc_remove <ID> - Removes the given NPC (id)

Lua functions:
>npc_create(x,y) - Creates a NPC in the given X and Y
>npc_turn(id,deg) - Rotates the chosen NPC (id) to a given direction (deg)
>npc_move_left(id,len) - Moves the NPC (id) for the given length (len) to the left
>npc_move_right(id,len) - Moves the NPC (id) for the given length (len) to the right
>npc_move_up(id,len) - Moves the NPC (id) for the given length (len) up
>npc_move_down(id,len) - Moves the NPC (id) for the given length (len) down
>npc_remove(id) - removes the given NPC (id)

Have fun scripting and modding!

Download and screens: http://www.unrealsoftware.de/files_show.php?file=355

alt Re: Custom Maps and Stuff

Crazyx
User Off Offline

Zitieren
Wow! Cool!

Admin/Mod Kommentar

pointless quote of like 100 words just for a 2 word comment ... quote removed /DC

alt Re: Custom Maps and Stuff

VenomEXsoldier
User Off Offline

Zitieren
a new map I made which is called "D-Day World War 2" Of course this takes place in the war but in the D-day beach. I have two versions of this map. One is with bots support ( BUT THIS IS ONLY IF UR PLAYING WITH YOURSELF) and the other is with human players. There are some differences of those two so keep in mind

If u want to c how it looks like, I made a quick preview of the map.. check it out!

PREVIEW: http://www.youtube.com/watch?v=VSHkWUg3FQI

DOWNLOAD -> http://www.unrealsoftware.de/files_show.php?file=364
1× editiert, zuletzt 13.12.09 20:53:21

alt Re: Custom Maps and Stuff

Night Till Death
User Off Offline

Zitieren
Nemesis hat geschrieben
NTD hat geschrieben
but even the BOTS of cs2d are NPCs!

but teh bots can just kill players

so? in half life a headcrab is an NPC and he can kill players! if you think NPCs cant attack players then your wrong!

alt Re: Custom Maps and Stuff

- Dark Void -
User Off Offline

Zitieren
NTD hat geschrieben
Nemesis hat geschrieben
NTD hat geschrieben
but even the BOTS of cs2d are NPCs!

but teh bots can just kill players

so? in half life a headcrab is an NPC and he can kill players! if you think NPCs cant attack players then your wrong!


NPC None Player Character

anyone who is not controlled by a real person on a computer/console

try to add an AI for random movement to the NPCs

and there not just in role-play there in 99.99% of all games

alt Re: Custom Maps and Stuff

Deatherr
User Off Offline

Zitieren
Is there a way that you can make maps and host them without having other players using it?Like a copyright or something

alt Re: Custom Maps and Stuff

BetaM
User Off Offline

Zitieren
I think it goes. Name your map "de_dust2" and there's a low chance that players download your map temporarily.

alt Re: Custom Maps and Stuff

memo
COMMUNITY BANNED Off Offline

Zitieren
∗de_inferno
FIXED
-2-

a hole new Fixed version of the popular mapde_inferno!

FIXED
&
ADDED
thing's :

FIXED
way to bomb spot 1 (A) CT
ADDED
add decal to see bomb spot with title (X)
FIXED
put a new gfx on map like (car,truk ...)
FIXED
put a new sfx to map like de_inferno factory song**
ADDED
add new (de_inferno) original tiles**
FIXED
put a nice de_inferno background like (walls...)
ADDED
boxes to the map on CT base and Bomb spot 2 (A)
ADDED
now bomb spots have nuclear Boxes on the both bomb spots not chemical weapons !


introductions:

Counter-Terrorists:
Prevent Terrorists from bombing nuclear Boxes crates. Team members must defuse any bombs that threaten targeted areas.

Terrorists:
The Terrorist carrying the C4 must destroy one of the nuclear Boxes stashes.

Other Notes:
There are 2 nuclear Boxes stashes in the mission.

Contact me / Find a bug
E-mail: - E-Mail Adresse (nur mit Login sichtbar) -

∗ Download
http://www.unrealsoftware.de/files_show.php?file=381

EnJoY iT !

alt Re: Custom Maps and Stuff

cendol94
User Off Offline

Zitieren
mat5b hat geschrieben
∗NPC Mod 1.1∗

Create NPCs, move them if you want, turn them, and remove them!

Moreover, there are 2 examples of how to make lua NPCs:
>NPC that moves around the map
>NPC that follows a random way

Console commands:
>npc <X> <Y> - Creates a NPC at the given coordinate
>npc_turn <ID> <DEG> - Rotates the chosen NPC (id) to a given direction (deg)
>npc_move_left <ID> <LEN> - Moves the NPC (id) for the given length (len) to the left
>npc_move_right <ID> <LEN> - Moves the NPC (id) for the given length (len) to the right
>npc_move_up <ID> <LEN> - Moves the NPC (id) for the given length (len) up
>npc_move_down <ID> <LEN> - Moves the NPC (id) for the given length (len) down
>npc_remove <ID> - Removes the given NPC (id)

Lua functions:
>npc_create(x,y) - Creates a NPC in the given X and Y
>npc_turn(id,deg) - Rotates the chosen NPC (id) to a given direction (deg)
>npc_move_left(id,len) - Moves the NPC (id) for the given length (len) to the left
>npc_move_right(id,len) - Moves the NPC (id) for the given length (len) to the right
>npc_move_up(id,len) - Moves the NPC (id) for the given length (len) up
>npc_move_down(id,len) - Moves the NPC (id) for the given length (len) down
>npc_remove(id) - removes the given NPC (id)

Have fun scripting and modding!

Download and screens: http://www.unrealsoftware.de/files_show.php?file=355


Thx for the info,but is it gonna work for A LARGE MAP
about 2500x2000?.My current project is HALF-LIFE2,a single player map,but i still need help with the scripts

Btw,I take a try using those

edit:already solved
1× editiert, zuletzt 20.12.09 09:37:03

alt Military Campus Map

VenomEXsoldier
User Off Offline

Zitieren
New map I made Check it out!

Preview -> http://www.youtube.com/watch?v=rvCRzelYnDU


Now this map I really wanted to player to make there choices. If that area is hard to go, there are many other ways to go around it. I added the Sewers that there little short cut ways to pass the hard places. The map is huge so don't complain is smal any more. And one last thing there are some secert areas u can find in the map to get stronger weapons ;]
I have three verisons of the map but there just game modes so I did not change the map. its still one map

Features
Some New gfx pictures
Traps (But becarefull that you well fall into your own or teammates)
Secert Areas
Sewers

Game mode
Domanation
Team Deathmatch
Construction

Download -> http://www.unrealsoftware.de/get.php?get=u5986f3.zip&p=2
1× editiert, zuletzt 20.12.09 15:40:51

alt Re: Custom Maps and Stuff

cendol94
User Off Offline

Zitieren
ZM_BANANA_VILLAGE

You,a team member of BRAVO 6,is stranded in the banana village.You was going to a rescue operation.


1.A zombie mini map where it consits 4 main gates from four corners which spawns deadly zombies.
2.The survivors stay at the middle and survive as long as you can
3.See screenshots and download it NOW!!
4.MAKE IT 10 MINUTES to see he full story

==>DOWNLOAD
2× editiert, zuletzt 24.12.09 14:42:00
Zum Anfang Vorherige 1 260 61 6271 72 Nächste Zum Anfang
Einloggen, um zu antworten Maps/Editor-ÜbersichtCS2D-ÜbersichtForenübersicht