Profile Picture

PoopMaster (SoundInfinity)

Reputation: 9 [rate]

Joined: Jul, 2019

Proud creator of: WRD+

Bio

Can't code fo' shit

Badges

badge badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Replied to thread : JS vs. Python


Depends on the task. 

Replied to thread : [REL][alpha] WRD+ V3


[spoiler]

Updated

[/spoiler]

Replied to thread : Flexing my WeAreDevs Bot [super cool]


Good luck with this bot thing

Replied to thread : Need help in Python lol


@Wabz

I figured out a way to do it, by making multiple checks for the existance of those files and folders.  It didn't took long, and I got the idea from a a py script I was making myself.

 

[code]

# protect.py

# Changed lines 23 to 43

 

# List of directories used in the code below

dirs = {

    'exampleNode': os.path.join('.', 'examplenode') 

}

 

# Checks if the example node folder exists...

# and checks if it's a directory.

if os.path.exists(dirs['exampleNode']):

    if not os.path.isdir(dirs['exampleNode']):

        Exception("There is a file named after a directory. Remove 'examplenode'")

        exit()

else:

    # Makes directory

    os.mkdir(dirs['exampleNode'])

 

# Another check but for the '.env' file, if it doesn't exists it creates a new one.

# [Depends on the previous code]

if not os.path.exists(os.path.join(dirs['exampleNode'], '.env')):

    with open(os.path.join(dirs['exampleNode'], '.env'), 'w+') as f:

        f.write('')

[/code]

Replied to thread : How to make a keybind for a text button?


Just use the UserInputService or the keyboard events within the mouse. It's simple to figure it out, so I won't send any code.

Replied to thread : Our Profiles


I'm gonna go ahead and steal this idea


done 

Replied to thread : Need help in Python lol


I replaced lines 31-34 with:

[code]

dotenv = None

with open('.\\examplenode\\.env', 'w+') as f:

    dotenv = f.read().split('\n')

print(dotenv)

[/code]

 

And didn't show up any errors

Created a new thread : [REL][alpha] WRD+ V3


Some suggestions would be appreciated.

 

Changelog:

[spoiler]

  • Added  custom background image, and css.
  • Removed dependency on cookies
  • Removed WRD+ labels
    • Title change of WeAreDevs logo on top-left
  • Removed WRD+ changes to wrd's style
    • Dropdown menu that's shown when clicking your username
  • Changed read/unread marks
  • Optimized code
  • Minor changes

[/spoiler]

 

[code]

Should still work

[/code]

 

[spoiler]

Test

[code]

Test but in code

[/code]

[/spoiler]

 

Install At: https://github.com/infinity-Script/wrdplus/releases/latest

Source Code: https://github.com/infinity-Script/wrdplus

How to use/install/other: https://github.com/infinity-Script/wrdplus/wiki

Previews: https://github.com/infinity-Script/wrdplus/tree/master/images

Replied to thread : proof that i am best haxor man


bruh... you is the guy who copied my "hello world" thread and post it on v3rmillion (well not word by word). anyways idc

Replied to thread : What do you wish your exploit had.


 

  • No intrusive ass key system
  • No logging of user data (ip, or other)
  • No uglyass UI (Plain WinForms would be better)
  • No system modifications (e.g: proxo, which setups to start at system startup)
  • No memory leaks
  • Be mainly open source

Replied to thread : [REPOST] C# API is broken


Perhaps you are using the wrong function for the wrong action. There are two functions in the API to execute scripts:

 

1. Lua-C scripts

2. Normal lua scripts

 

LuaC might look like this (Idk much LuaC):

[code]

getglobal game

getfield -1 Name

pushstring 

[/code]

 

However, normal ones are these:

[code]

print(game.Name)

[/code]

 

Normal ones use:

[code]

API.SendLuaScript(<string> Source)

[/code]

 

Lua C:

[code]

API.SendLuaCScript(<string> Source)

[/code]

Replied to thread : Banishing all "news papers" to disputes for now (update on mods)


NEWS FLASH

  • MOD NAMED FUNTIMES BANNING THE MEDIA? Could he be silencing the truth?
  • Learn more on:wearedevs.net/cw

Replied to thread : [REL][>v2] WRD+


@Hectique I hope you didn't say that seriously... This ain't a exploit api, it's a userscript to be used in the browser.