first I'd love to check out Dev chat level two, don't really understand the need for the password though.
Also, is there anything Like GetLatency() that was not mentioned in the API?
Login to Account Create an Account

>_> questions :p
#1
Posted 04 November 2015 - 08:22

#2
Posted 04 November 2015 - 08:41

https://gyazo.com/8a...a84f98b62664293
http://www.nebelwolf...?page=api&api=1
Developer level 2 is where we keep all the 1337 exploitz , but seriously, it was made so that devs can share their ideas and talk to eachother without getting asked questions about their scripts, there is nothing important going on there to be honest.
#3
Posted 04 November 2015 - 03:21

first I'd love to check out Dev chat level two, don't really understand the need for the password though.
Also, is there anything Like GetLatency() that was not mentioned in the API?
local mypingval = GetLatency(); --returns an integer with the value of our ping ingame
? Was it me ?

#4
Posted 05 November 2015 - 07:25

Developer level 2 is where we keep all the 1337 exploitz
, but seriously, it was made so that devs can share their ideas and talk to eachother without getting asked questions about their scripts, there is nothing important going on there to be honest.
You say that while posting the illumi icon.. right. lol
Is there anything I could do to get in there?
#5
Posted 05 November 2015 - 07:55

You say that while posting the illumi icon.. right. lol
Is there anything I could do to get in there?
You need one of the developer ranks or be a mod. To get the developer rank you need to be a developer Keppo
#6
Posted 05 November 2015 - 10:40

lol, ok. How might I go about qualifying for Developer status?
#7
Posted 05 November 2015 - 10:49

lol, ok. How might I go about qualifying for Developer status?
some Quality work ^^
#8
Posted 05 November 2015 - 12:07

If i learn C# ,Will I know how to create lua too?
#9
Posted 05 November 2015 - 01:20

Well I don't believe in working blind. I understand that something of quality is needed, but surely you know that quality is in the eye of the beholder.
I'd gladly offer my know how - or 'help' in furthering, anything GOS related, but I do not know what is needed other than some basic scripts.
With that on the table, it must also be stated... we're talking about getting 'Developer', not "scripter" lol. They're two very different things.
#10
Posted 05 November 2015 - 01:26

Well I don't believe in working blind. I understand that something of quality is needed, but surely you know that quality is in the eye of the beholder.
I'd gladly offer my know how - or 'help' in furthering, anything GOS related, but I do not know what is needed other than some basic scripts.
With that on the table, it must also be stated...we're talking about getting 'Developer', not "scripter" lol. They're two very different things.
make a evade script, i 100% sure you can get the "purple"
#11
Posted 06 November 2015 - 08:33

lol, ok. How might I go about qualifying for Developer status?
just copy code of other people, paste it into one script, give credits and say you "updated" it, like some other dev's here.
#12
Posted 06 November 2015 - 08:37

#13
Posted 07 November 2015 - 02:20

#14
Posted 02 January 2016 - 05:57

Can someone explain how this works?
for i, v in pairs(t) do if member and v[member] == what or v == what then return i, v end end
If member :
If v[member] == what: we return -> i
If v == what: we return -> v
Or it works in some other way?
#15
Posted 02 January 2016 - 06:28

Hi guys!
Can someone explain how this works?
for i, v in pairs(t) do if member and v[member] == what or v == what then return i, v end end
If member :
If v[member] == what: we return -> i
If v == what: we return -> v
Or it works in some other way?
or just don't write code like this....readable >>>> cool
#16
Posted 02 January 2016 - 08:00

function table.copy(from, deepCopy) if type(from) == "table" then local to = {} for k, v in pairs(from) do if deepCopy and type(v) == "table" then to[k] = table.copy(v) else to[k] = v end end return to end endAs I understood deepCopy needed in case you have table(a) inside table(1). And if you don't make a copy of inside table(a) it will be a copy of a table(2) with a reference to a table(a) that was inside first table(1). But.... what if a table(1) have a table(T) inside table (a)? Will the deepCopy go to all levels, or copy just the first one below?
#17
Posted 02 January 2016 - 09:58

if either == what then we return both, i and vHi guys! Can someone explain how this works?
for i, v in pairs(t) do if member and v[member] == what or v == what then return i, v end endIf member :If v[member] == what: we return -> iIf v == what: we return -> vOr it works in some other way?
this will only copy the first table inside of it, if you really want a deep copy you'd have to change it to table.copy(v, true) but that would probably give a stack overflow in most casesI am trying to learn. This is example from Inspired library. I am still expecting someone to help with the code above. I also have question about this :
function table.copy(from, deepCopy) if type(from) == "table" then local to = {} for k, v in pairs(from) do if deepCopy and type(v) == "table" then to[k] = table.copy(v) else to[k] = v end end return to endendAs I understood deepCopy needed in case you have table(a) inside table(1). And if you don't make a copy of inside table(a) it will be a copy of a table(2) with a reference to a table(a) that was inside first table(1). But.... what if a table(1) have a table(T) inside table (a)? Will the deepCopy go to all levels, or copy just the first one below?
#18
Posted 02 January 2016 - 10:51

Thanks!if either == what then we return both, i and v

How do I catch this returns then? It will be something like....
local i = nil local v = nil i, v = theFunc()?
Why will it be stack overflow?this will only copy the first table inside of it, if you really want a deep copy you'd have to change it to table.copy(v, true) but that would probably give a stack overflow in most cases

#19
Posted 03 January 2016 - 12:33

you can also do:local i = nil local v = nil i, v = theFunc()
local i, v = theFunc()
because it's too deep recursive... https://docs.oracle....rflowError.htmlWhy will it be stack overflow?
#20
Posted 20 January 2016 - 06:07

Can someone tell me what IOW object is and why would it be null? How can I instantiate it? I didnt see a declaration or assignment anywhere in any code I have seen.
Thanks
2 user(s) are reading this topic
0 members, 2 guests, 0 anonymous users