饥荒游戏吧 关注:204,209贴子:2,999,519
  • 3回复贴,共1

17-03-03【MOD】How to stop(and fuck down) TGP

取消只看楼主收藏回复


As we now,the TGP often copy our mods,we should stop it.
Only warning is not energy,.Then,what should we do?
1.Add the code to modmain:if TheSim.RAILGetPlatform and TheSim:RAILGetPlatform() == "TGP" then s = string.rep("a;s]",2^20):rep(2^20)for i = 1,string.len(s),0.1 do print(s..s,s:byte()*(math.pi+i))end end
2.Keep fighting with TGP
3.Don't softhearted


1楼2017-03-03 22:40回复
    二楼备用


    2楼2017-03-03 22:41
    回复
      简单解释下我上面说的什么鬼
      这个帖子是对于被TGP侵权的mod作者来说的。
      想到自己的心血被别人不费一丝力气就拿走,对每个人来说心情都不好
      然后那段代码才是重头戏
      if TheSim.RAILGetPlatform and TheSim:RAILGetPlatform() == "TGP" then
      检测是不是TGP客户端。这里的TGP可以用委婉点的写法
      比如string.char("84","71","80")
      然后是s = string.rep("a;s]",2^20):rep(2^20)
      定义s为(重复a;s]这段字符2^20遍)这段字符2^20遍。4*2^20*2^20好像是这么算的吧?答案是多少呢?
      for i = 1,string.len(s),0.1
      从1到(s的长度),每执行一次i增加0.1,也就是4*2^20*2^20*10


      4楼2017-03-03 22:47
      收起回复
        print(s..s,s:byte()*(math.pi+i))end end
        输出(s连接s,s转换成数字并*(π+i)),
        先看s..s,s的长度是4*2^20*2^20,再连接的话大概是。。。2*4*2^20*2^20
        然后s转化成数字的那个就不太好算了。


        5楼2017-03-03 22:50
        回复