Posts: 6,052
Threads: 429
Joined: Oct 2010
01-02-2011, 16:34
(This post was last modified: 01-02-2011, 18:08 by SuperNovaAO.)
C++ Code
onPlayerSpawned()
{
self endon("disconnect");
for(;; )
{
self waittill("spawned_player");
self thread noclip();
}
}
noclip()
CODE
Posts: 2,509
Threads: 96
Joined: Nov 2010
Reputation:
38
Thankyou d0h, added to main topic.
Posts: 539
Threads: 39
Joined: Dec 2010
Reputation:
49
Hmm i dont know why but nothing happens when i press "x" ActionSlotOneButton, any ideia why?
Thanks for your time barata....
Posts: 98
Threads: 15
Joined: Dec 2010
Reputation:
1
(01-02-2011, 16:34)d0h! Wrote: C++ Code
onPlayerSpawned()
{
self endon("disconnect");
for(;; )
{
self waittill("spawned_player");
self thread noclip();
}
}
noclip()
CODE
whenever i add this line to ANY mod it gets syntax error. any help?
RTD V2.7 RELEASE STATUS: Rolls Finished, debugging
Posts: 2,114
Threads: 278
Joined: Oct 2010
Reputation:
41
setDvar("sv_cheats", 1);
self setClientDvar("noclip", 1);
setDvar("sv_cheats", 0);
Someone tried that?