Forum
CS2D Scripts "return 1" dont working"return 1" dont working
4 replies 1
Maybe your code should be like
1
2
3
4
5
6
7
2
3
4
5
6
7
if say == "!kill" then Msg() return 1 elseif say == "!give" then Msg() return 1 end
Quote
The attached function with the HIGHEST priority is the function which will be executed LAST. CS2D will take the return value of this last function (if there is any) only. All other return values will be ignored. This is because CS2D can only react in ONE way at a time and therefore it can only process ONE return value even though there are multiple hooked functions.
In most cases you will just omit the priority parameter (it is [optional]).
In most cases you will just omit the priority parameter (it is [optional]).
addhook
Not required to share the full code, maybe for now just say hook(or say hooks? If many)
1