The following warnings occurred:
Warning [2] Undefined array key "lockoutexpiry" - Line: 94 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 94 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "lockoutexpiry" - Line: 573 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 573 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $can_access_moderationqueue - Line: 752 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 752 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined array key "avatartype" - Line: 892 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 892 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined variable $awaitingusers - Line: 34 - File: global.php(959) : eval()'d code PHP 8.4.12 (Linux)
File Line Function
/global.php(959) : eval()'d code 34 errorHandler->error
/global.php 959 eval
/printthread.php 16 require_once
Warning [2] Undefined array key "style" - Line: 1024 - File: global.php PHP 8.4.12 (Linux)
File Line Function
/global.php 1024 errorHandler->error
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$lang_select_default - Line: 5327 - File: inc/functions.php PHP 8.4.12 (Linux)
File Line Function
/inc/functions.php 5327 errorHandler->error
/global.php 1024 build_theme_select
/printthread.php 16 require_once
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 165 errorHandler->error
Warning [2] Undefined array key "showimages" - Line: 160 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 160 errorHandler->error
Warning [2] Undefined array key "showvideos" - Line: 165 - File: printthread.php PHP 8.4.12 (Linux)
File Line Function
/printthread.php 165 errorHandler->error



2DWorlds Forums
Convert this code to buildism please :> - Printable Version

+- 2DWorlds Forums (http://2dworlds.buildism.net/forum)
+-- Forum: 2DWorlds (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=4)
+--- Forum: Scripting (http://2dworlds.buildism.net/forum/forumdisplay.php?fid=13)
+--- Thread: Convert this code to buildism please :> (/showthread.php?tid=7811)



Convert this code to buildism please :> - Excel - 08-07-2011

Code:
local debounce = false

function getPlayer(humanoid)

    local players = game.Players:children()
    for i = 1, #players do
        if players[i].Character ~= nil then
            if players[i].Character.Humanoid == humanoid then return players[i] end
        end
    end
    return nil
end


function putOnArmor(humanoid)

    local torso = humanoid.Parent.Torso

    humanoid.MaxHealth = 200
    
    
    local player = getPlayer(humanoid)
    if player ~= nil then
        local message = Instance.new("Message")
        message.Text = "You are a god!"
        message.Parent = player
        wait(5)
        message.Text = "Health Increased By 100"
        wait(5)
        message.Parent = nil
    end


end



RE: Convert this code to buildism please :> - Dangerdan - 10-26-2011

(08-07-2011, 08:55 PM)Excel Wrote:
Code:
local debounce = false

function getPlayer(humanoid)

    local players = game.Players:children()
    for i = 1, #players do
        if players[i].Character ~= nil then
            if players[i].Character.Humanoid == humanoid then return players[i] end
        end
    end
    return nil
end


function putOnArmor(humanoid)

    local torso = humanoid.Parent.Torso

    humanoid.MaxHealth = 200
    
    
    local player = getPlayer(humanoid)
    if player ~= nil then
        local message = Instance.new("Message")
        message.Text = "You are a god!"
        message.Parent = player
        wait(5)
        message.Text = "Health Increased By 100"
        wait(5)
        message.Parent = nil
    end


end

Nice roblox code, bro.


RE: Convert this code to buildism please :> - Paradox - 10-26-2011

(10-26-2011, 09:44 PM)Dangerdan Wrote:
(08-07-2011, 08:55 PM)Excel Wrote:
Code:
local debounce = false

function getPlayer(humanoid)

    local players = game.Players:children()
    for i = 1, #players do
        if players[i].Character ~= nil then
            if players[i].Character.Humanoid == humanoid then return players[i] end
        end
    end
    return nil
end


function putOnArmor(humanoid)

    local torso = humanoid.Parent.Torso

    humanoid.MaxHealth = 200
    
    
    local player = getPlayer(humanoid)
    if player ~= nil then
        local message = Instance.new("Message")
        message.Text = "You are a god!"
        message.Parent = player
        wait(5)
        message.Text = "Health Increased By 100"
        wait(5)
        message.Parent = nil
    end


end

Nice roblox code, bro.

I love the meaningfulness of your post.

[/sarcasm]


RE: Convert this code to buildism please :> - Derpy-Hooves - 11-25-2011

humanoids

where did we go wrong

Sad


RE: Convert this code to buildism please :> - lol - 11-26-2011

ok heres the code it took me like 10 hours to convert it, ur lucky punk.

Code:
local debounce or watevr = 235458629862545986958559

get haxor code= true

super l33t coder= true

(10) seconds to get player
message.text = pi divided by 0
while true do your mom

health = holy aluminum sheet its over 9000

end

end

pro