Forum

> > CS2D > Maps/Editor > Custom Maps and Stuff
Forums overviewCS2D overview Maps/Editor overviewLog in to reply

English Custom Maps and Stuff

1,435 replies
Page
To the start Previous 1 266 67 6871 72 Next To the start

old :D

Sparty
Reviewer Off Offline

Quote
I know u like halo reach!

BECAUSE me and my bro are making halo reach mod!
its going to have all weapons form halo reach amd map

old .YeaH.

FiiD
User Off Offline

Quote
Hey all...I maked 5 Tilesets to 1 Tileset...so you can make better maps...yeahhhh...here is the download link

http://www.megaupload.com/?d=GPC7N94Z

I maked this with VG Tileset Creator 3
If you dont know how to set it to other tileSets...no worry why I have wrote a help in the WInrar...
And here is the picture that you dont think that I lie...

http://yfrog.com/jp5in1p

IMG:https://a.imageshack.us/img709/3670/5in1.png
edited 8×, last 22.08.10 01:53:09 pm

old Re: Custom Maps and Stuff

BetaM
User Off Offline

Quote
King of the (Flat) Hill - Dirt

Is it a gamemode, or a map? It's both! All about capturing and holding the center flag. (control point) It has some new mechanics, but nothing that influences players. That means no TF2 classes, but this is a TF2-like gamemode.

Download, screens, and further info: http://unrealsoftware.de/files_show.php?file=2342

old nice job mod

Jaso
BANNED Off Offline

Quote
add mod:

Looks really nice cant wait for release or is it already released?

old Re: Custom Maps and Stuff

BetaM
User Off Offline

Quote
Houses RPG, version 22, lag fixes, new features, new tileset, more houses fun than ever... coming soon...

IMG:https://i56.tinypic.com/htb228.jpg

old Re: Custom Maps and Stuff

Mawd
User Off Offline

Quote
jaso55 has written
add mod:

Looks really nice cant wait for release or is it already released?


I don't know.
Well, i am working on it, it's going well.

And..
Spoiler >

old Re: Custom Maps and Stuff

HaRe
User Off Offline

Quote
didnt know where to post this but well this is an sample of US id Saving

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
whattosave = {}

addhook("ms100","save_whattosave")
function save_whattosave()
	for id = 1,32 do
		if (player(id,"exists")) then
			whattosave = player(id,"score") -- change it to what u want to save
		end
	end
end

addhook("say","save_savegame")
function save_savegame(id,t)
	if t=="!save" then -- Type !save to save
		if (player(id,"usgn")>0) then
			msg2(id,"©255255255SuccesFully Saved!")
			io.output(io.open("sys/lua/users/"..player(id,"usgn")..".txt","w+"))
			io.write(whattosave)
			io.close()
			return 1
		else
			msg2(id,"©255000000Failed to read your US ID")
			return 1
		end
	end
end

addhook("leave","save_autosaveleave")
function save_autosaveleave(id)
	for id = 1,32 do
		if (player(id,"exists")) then
			if (player(id,"usgn")>0) then
				io.output(io.open("sys/lua/users/"..player(id,"usgn")..".txt","w+"))
				io.write(whattosave)
				io.close()
				return 1
			end
		end
	end
end

addhook("minute","save_autosavemin")
function save_autosavemin(id)
	for id = 1,32 do
		if (player(id,"exists")) then
			if (player(id,"usgn")>0) then
				msg2(id,"©255255255Auto Saved *Every Minute*")
				io.output(io.open("sys/lua/users/"..player(id,"usgn")..".txt","w+"))
				io.write(whattosave)
				io.close()
				return 1
			end
		end
	end
end

addhook("spawn","save_loadspawn")
function save_loadspawn(id)
	if (io.open("user/"..player(id,"usgn")..".txt")~=nil) then
		msg2(id,"©255255255SuccesFully Loaded")
		for l in io.lines("sys/lua/users/"..player(id,"usgn")..".txt") do
			value = tonumber(l) -- This is the value to get ur score use " parse("setscore "..id.." "..value) "
		end
	else
		msg2(id,"©255000000Failed to load")
	end
end

be sure to make an
sys/lua/users folder or else it wont work
edited 4×, last 05.09.10 01:30:46 am
To the start Previous 1 266 67 6871 72 Next To the start
Log in to reply Maps/Editor overviewCS2D overviewForums overview