Forum

> > CS2D > Scripts > strip bug
Forums overviewCS2D overview Scripts overviewLog in to reply

English strip bug

4 replies
To the start Previous 1 Next To the start

old strip bug

vader
User Off Offline

Quote
1
2
3
4
5
6
7
8
function _strip(idd)
	local itemasd=playerweapons(idd)
	for __,asdqwe in pairs(itemasd) do
		if asdqwe~=55 then
			parse("strip "..idd.." ..asdqwe")
		end
	end
end
why bomb strip too?

old Re: strip bug

DC
Admin Off Offline

Quote
Your parse statement shouldn't work at all because a quotation mark is missing. It must be this way:
1
parse("strip "..idd.." "..asdqwe")

btw: your variable names are hell! you should think about using meaningful names.

old Re: strip bug

DC
Admin Off Offline

Quote
Yeah, sorry. Of course the trailing " was wrong too.
To the start Previous 1 Next To the start
Log in to reply Scripts overviewCS2D overviewForums overview