Dick Size Increaser
Note - this entity is a modification for The Underworld. Visit the new Mods Portal for more mods, mods on the wiki are no longer maintained. You can put it in-game by visiting the Debug Mod Control Panel in the debug rooms and browse to this mod or copy/paste the JSON below into the program window. |
Entity Details
This entity is intended for example purposes to demonstrate an object that can be used and affects the player. Using this object will increase the cock size of the player.
Author: SkyCorp
Entity JSON Code
{
"type": "ENTITY",
"name":
{
"literalString" : "Dick Size Increaser"
},
"description":
{
"literalString": "An object that enhances your cock, intended as an example for scripting."
},
"isUseable":
{
"literalBoolean": true
},
"doUse":
{
"programBoolean": true
},
"luac": "G0x1YVEAAQQEBAgAEwAAAEBkaWNrSW5jcmVhc2VyLmx1YQAAAAAAAAAAAAAAAgIDAAAAJAAAAAcAAAAeAIAAAQAAAAQGAAAAZG9Vc2UAAQAAAAAAAAABAAAAHAAAAAAAAAQgAAAABQAAAAZAQABBgAAAHEAAAQUAAQAGQEEAHICAAAfAAAAFAAAABkBAAEGAAQCFwAAAhsBBAZyAgADBAAIAVcCAABxAAAEFwAAABkBCABxAgAAFAAAABkBAAEGAAgCFwAAAhsBBAZyAgADBwAIAVcCAABxAAAECAIAAHgAAAR4AgAAMAAAABAMAAABpbwAEBgAAAHdyaXRlAAQRAAAAQ2hhbmdpbmcgcGxheWVyCgAEBwAAAHBsYXllcgAEBwAAAFBsYXllcgAEDAAAAGdldEluc3RhbmNlAAQXAAAAWW91IGxvb2sgZG93biBhdCB5b3VyIAAEEgAAAGdldERpY2tTaXplU3RyaW5nAAQEAAAALiAgAAQNAAAAdGZEaWNrTGFyZ2VyAAQVAAAASXQgbm93IGxvb2tzIGxpa2UgYSAABAMAAAAuCgAAAAAAIAAAAAQAAAAEAAAABAAAAAQAAAAHAAAABwAAAAcAAAAHAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAADAAAAAwAAAAMAAAAEAAAABAAAAAQAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAFAAAABQAAAAUAAAAGwAAABsAAAAcAAAAAAAAAAAAAAADAAAAHAAAAAEAAAAcAAAAAAAAAAAAAAA="
}
LUA Source Code
function doUse()
-- Write to the screen.
io.write("Changing player\n");
-- Get the instance of the Player class and store it in variable 'player'
player = Player.getInstance();
-- An example of accessing a player property and displaying it. Note that
-- usually it would be easier to just use the text parser for something this
-- simple, however this demonstrates accessing the player object.
io.write("You look down at your " .. player.getDickSizeString() .. ". ");
-- Transforms player's dick to be larger. This version of the function will
-- output text to the screen, but other silent versions are available.
player.tfDickLarger();
-- Display the property again now just for testing purposes to show that the
-- player has changed.
io.write("It now looks like a " .. player.getDickSizeString() .. ".\n");
-- For the use() function, returning true will cause a continue scene to be
-- displayed next. In other words, processing will paused and a "Continue.."
-- button will be displayed. If you want to manage the scene transition yourself
-- or display custom buttons, you would need to set those up and return false,
-- however, that is rare.
return true;
end