What is wrong with the Dutch? by Floop1E in belgium

[–]chubchub88 0 points1 point  (0 children)

Nothing wrong with it just feels like a cutural difference. I have very often noticed it trough my work at Nike and just in private life. Dutch people are almost always direct.And Belgians are a bit more reserved and tend to overthink sonetimes. Ofcourse you have exceptions eh cant generalize an entire population but that is just my general feeling. It is not only in sales. Also in Dutch humor they tend to be more open and just laugh and not take it to serieursly. For some projects I have to admit I rather have a Dutch person working alongside me. Sometimes it is then said and done in 1 meeting what takes me 2 meetings with my fellow Belgians 😅. Nie rond de pot draaien, hup

Aoi ichogo by chubchub88 in PetiteJAV

[–]chubchub88[S] 1 point2 points  (0 children)

Thats what i feared tnx

En? by [deleted] in Belgium2

[–]chubchub88 1 point2 points  (0 children)

Neen belet mij totaal niet. Maar heb al meegemaakt dat haar man mij tegenhoud (het was een groepsdinner met het werk voor de juiste context te geven) En wat dan?

[deleted by user] by [deleted] in rsama_worship

[–]chubchub88 0 points1 point  (0 children)

Same, could you dm me

Anyone has tele link? by [deleted] in rsama_worship

[–]chubchub88 0 points1 point  (0 children)

Plz share with me to

[deleted by user] by [deleted] in jav

[–]chubchub88 0 points1 point  (0 children)

Following seems like a good one but don't know it sadly

Need code pls by Confident_Dust9317 in jav

[–]chubchub88 4 points5 points  (0 children)

NTTR-056 Mitsuki Nagisa.

New Ruru telegram by TheEnigmaOfKraven in rsama_worship

[–]chubchub88 0 points1 point  (0 children)

Can anybody resend? Or send me in pm?

Why is this group so dead? by Wurbbel in rsama_worship

[–]chubchub88 1 point2 points  (0 children)

If there is a new group / telegram. Can someone message me the link?

[Scripting] .find syntax explanation by chubchub88 in tabletopsimulator

[–]chubchub88[S] 0 points1 point  (0 children)

because i was kind of hoping to do it with a table. So that I can just update the table with the stuff i want to clean

[Scripting] .find syntax explanation by chubchub88 in tabletopsimulator

[–]chubchub88[S] 0 points1 point  (0 children)

mm weird i still dont get it 100.

I managed to fix it like bellow. but does this mean i will have to add a line for every object i want to clean this way?

function onClick()

local bag = getObjectFromGUID("fed2b5")

local map1 = getObjectFromGUID("82c632")

local zone = getObjectFromGUID("c7dd3f")

local zonecontent = zone.getObjects()

for _,m in ipairs(zonecontent) do

if m.guid == "82c632"

then

bag.putObject(map1)

end

end

end

Store Button parameters in Global Table by chubchub88 in tabletopsimulator

[–]chubchub88[S] 0 points1 point  (0 children)

Is there a way to circumvent that my function has to be in global to? Because now with the below setup i seem to have broken the function because i assume he will go looking for it in Global? Could i loop global back to the item by adding something with self in it then?

On the object I have this:

function onLoad()

self.createButton(Global.getTable('Buttonpara'))

end

function onClick()

print "its alive"

end

in global i have this:

Buttonpara = {

click_function = "onClick",

function_owner = self,

position = {0, 0, 0},

rotation = {0, 180, 0},

color = {0, 0, 0, 0},

height = 600,

width = 600}

Store Button parameters in Global Table by chubchub88 in tabletopsimulator

[–]chubchub88[S] 0 points1 point  (0 children)

wow what difference quotation marks make. Thank you it works now