Forum

> > CS2D > Scripts > FBuild Nur für bestimmte User?
Forums overviewCS2D overview Scripts overviewLog in to reply

German FBuild Nur für bestimmte User?

No replies
To the start Previous 1 Next To the start

old FBuild Nur für bestimmte User?

AtomKuh
User Off Offline

Quote
Naja, wie der Titel schon sagt möchte ich diesen Script:
1
2
3
4
5
6
7
8
addhook("buildattempt","FUBuild")
function FUBuild(p,t,x,y,i)
 if t==20 or t==21 then
  return 0 
 end
 parse('spawnobject '..t..' '..x..' '..y..' 0 0 '..player(p,"team")..' '..p)
 return 1
end
so editieren das nur bestimmte USGN-User ihn benutzen können.
Habs mal versucht doch ich bin gescheitert bin noch bisschen neu im Scripen >.<.
Meine Version (nicht gelungen):
1
2
3
4
5
6
7
8
9
10
11
adminlist = {86415}
addhook("buildattempt","FUBuild")
function FUBuild(p,t,x,y,i)
for _, usgn in ipairs(adminlist) do
if player(id,'usgn') == usgn then
 if t==20 or t==21 then
  return 0 
 end
 parse('spawnobject '..t..' '..x..' '..y..' 0 0 '..player(p,"team")..' '..p)
 return 1
end
Hoffe auf Hilfe!

Mfg Phillip
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview