Few questions
Moderator: Cheaters
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Few questions
because the more you call DoNothing(), the more you feel like not doing anything in your real life and become lazy.
-
- Forum Staff
- Posts: 2618
- Joined: June 2nd, 2007, 6:53 pm
- Title: I Just Lost the Game
Re: Few questions
XD
I meant that for anyone who doesn't have the knowledge or inclination to find anything else affected by removing the trigger, or that part of a trigger.
If you're removing an anticheat trigger, look at the filename, and search for it. Figure out what's affected by it, and see what you can do about it. If you don't understand at least SOME jass, it's going to be pretty hard at first, but the more you do it, the more you begin to understand jass.
I meant that for anyone who doesn't have the knowledge or inclination to find anything else affected by removing the trigger, or that part of a trigger.
If you're removing an anticheat trigger, look at the filename, and search for it. Figure out what's affected by it, and see what you can do about it. If you don't understand at least SOME jass, it's going to be pretty hard at first, but the more you do it, the more you begin to understand jass.
My Warcraft III Tool Collection
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
If you want to chat/game with me:
Blizzard: Senethior459#1962
Discord: Kyle#7409
Steam: Spacekidkyle
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
-
- Forum Staff
- Posts: 829
- Joined: January 28th, 2007, 8:10 pm
- Title: JASS Programmer
- Location: Canada
Re: Few questions
function DoNothing, although it "does nothing" is actually about as slow (in this case) as the Sin function (so I heard).
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Few questions
I put a few call DoNothing() while I was removing anti-cheats in Dark Invasion.
But I kinda messing up with those who want to see what I do to remove the anticheats.
So basically.
should just be deleted as following
not as following, the following is what I do to mess with people:
it's just wasted spaces and slowing down the system.
lol
But I kinda messing up with those who want to see what I do to remove the anticheats.
So basically.
Code: Select all
function anticheats takes nothing returns nothing
call anticheats()
call anticheats2()
endfunction
Code: Select all
function anticheats takes nothing returns nothing
endfunction
Code: Select all
function anticheats takes nothing returns nothing
call DoNothing()
endfunction
lol
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
-
- Forum Drunk
- Posts: 2918
- Joined: January 17th, 2007, 4:22 pm
- Has thanked: 1 time
- Been thanked: 1 time
Re: Few questions
It probably translates to the cpu command 0x90 aka NOP (no operation) which wastes one clock cycle.
Don't pm me with Warcraft questions, this is a forum so just make a post!
In the world of thinking we are all immigrants. -Robert Nozick
-
- Forum Staff
- Posts: 351
- Joined: June 8th, 2008, 3:05 am
- Location: Australia
-
- Some Honorary Title
- Posts: 1713
- Joined: June 8th, 2007, 5:08 am
- Title: Angry Bird
Re: Few questions
slow down the system probably by 0.001 sec?
looks like nothing, but if you have 1000 triggers running?
That's why some game, have those 1 sec delay even in single player mode.
looks like nothing, but if you have 1000 triggers running?
That's why some game, have those 1 sec delay even in single player mode.