of     2   
chevron_rightchevron_rightchevron_right

silky_dev
#178227532Thursday, November 19, 2015 12:13 AM GMT

I'm really bored, post anything that I can script 4 chu.
morashsPeasant
#178227599Thursday, November 19, 2015 12:14 AM GMT

A neural net ai that finds its way to a point without pathfinding, please
morashsPeasant
#178227634Thursday, November 19, 2015 12:14 AM GMT

Or a steaming potato
LegitimatlyMe
#178227643Thursday, November 19, 2015 12:15 AM GMT

life
Accelital
#178227836Thursday, November 19, 2015 12:18 AM GMT

Script me a round script like math.random map C:
Accelital
#178227866Thursday, November 19, 2015 12:19 AM GMT

Plus equip and unequip gui C:
Accelital
#178227921Thursday, November 19, 2015 12:20 AM GMT

Script me a whole game C:
diz_zy
#178228100Thursday, November 19, 2015 12:24 AM GMT

Make me this; When player says "Challenge NAMEHERE" a gui pops up with a map selection (i got the maps n gui) when the player selects the map a challenge is sent to the other player. Example; "FallenSinister has challenged you to a duel", "Accept" or Decline" upon Accept the both players are teleported from their location to the map with a countdown from 6. The winner either gets killed after 3 seconds or teleported back to his location. Upon Losing or winning both of the player get a message saying "You have won the duel against NAMEHERE" or "You have lost the duel against NAMEHERE" -"Savage for life"
Klink45
#178228226Thursday, November 19, 2015 12:26 AM GMT

Make a simulation of the solar system that you can control. u sicko!
SummerEquinox
#178231458Thursday, November 19, 2015 1:27 AM GMT

Make a working C++ language converter with Lua. Then write anything you want with it. It never ceases to amaze me. Kids make sure we know who they are with wild allegations then act like we talk about them. Random egos.
samfaison2
#178233634Thursday, November 19, 2015 2:02 AM GMT

Script where clicking on a button changes your walkspeed
cgjnm
#178233798Thursday, November 19, 2015 2:04 AM GMT

Make me a script that uses "the force" from star wars. (can force-choke, levitate objects, sense others with the force+their strength in the force, being able to read minds, etc...)
ForeverDev
#178238194Thursday, November 19, 2015 3:19 AM GMT

@morash I made an evolution simulator based on neural net ais using genetic error correction ehehehehehehe
ForeverDev
#178238243Thursday, November 19, 2015 3:20 AM GMT

and @summer Lua is interpreted in C so you can already call and define lua functions with C++ ;)
Coinye
#178238633Thursday, November 19, 2015 3:27 AM GMT

Make me an in-game web browser fully compliant with HTML5 and CSS3
ForeverDev
#178238957Thursday, November 19, 2015 3:33 AM GMT

@arg rooofllll i did that too without the css part (wasnt fully compatible obv, but it supported basic things like buttons, frames, text boxes, etc)
DeleteriousDan
#178239172Thursday, November 19, 2015 3:38 AM GMT

i think what everyone really want is a steaming hot potato
Busterkiki01
#178242254Thursday, November 19, 2015 4:46 AM GMT

Make a overly complex script that prints "Hello World!" Then changes the skybox to say "Hello World!" Then makes the base plate textured with "Hello World!" Then changes the name of the player to "Hello World!" Then renames the game "Hello World!" Thenspawnsasteamingpotatoandcrashes
SirTipsAlot
#178242337Thursday, November 19, 2015 4:48 AM GMT

Make us a game so we can take and get rich from c; Dogemon, gotta pet them all!
MakerModelLua
#178242503Thursday, November 19, 2015 4:53 AM GMT

#ifndef ioremap_cache /* temporary while we convert existing ioremap_cache users to memremap */ __weak void __iomem *ioremap_cache(resource_size_t offset, unsigned long size) { return ioremap(offset, size); } #endif static void *try_ram_remap(resource_size_t offset, size_t size) { struct page *page = pfn_to_page(offset >> PAGE_SHIFT); /* In the simple case just return the existing linear address */ if (!PageHighMem(page)) return __va(offset); return NULL; /* fallback to ioremap_cache */ } /** * memremap() - remap an iomem_resource as cacheable memory * @offset: iomem resource start address * @size: size of remap * @flags: either MEMREMAP_WB or MEMREMAP_WT * * memremap() is "ioremap" for cases where it is known that the resource * being mapped does not have i/o side effects and the __iomem * annotation is not applicable. * * MEMREMAP_WB - matches the default mapping for "System RAM" on * the architecture. This is usually a read-allocate write-back cache. * Morever, if MEMREMAP_WB is specified and the requested remap region is RAM * memremap() will bypass establishing a new mapping and instead return * a pointer into the direct map. * * MEMREMAP_WT - establish a mapping whereby writes either bypass the * cache or are written through to memory and never exist in a * cache-dirty state with respect to program visibility. Attempts to * map "System RAM" with this mapping type will fail. */ void *memremap(resource_size_t offset, size_t size, unsigned long flags) { int is_ram = region_intersects(offset, size, "System RAM"); void *addr = NULL; if (is_ram == REGION_MIXED) { WARN_ONCE(1, "memremap attempted on mixed range %pa size: %#lx\n", &offset, (unsigned long) size); return NULL; } /* Try all mapping types requested until one returns non-NULL */ if (flags & MEMREMAP_WB) { flags &= ~MEMREMAP_WB; /* * MEMREMAP_WB is special in that it can be satisifed * from the direct map. Some archs depend on the * capability of memremap() to autodetect cases where * the requested range is potentially in "System RAM" */ if (is_ram == REGION_INTERSECTS) addr = try_ram_remap(offset, size); if (!addr) addr = ioremap_cache(offset, size); } /* * If we don't have a mapping yet and more request flags are * pending then we will be attempting to establish a new virtual * address mapping. Enforce that this mapping is not aliasing * "System RAM" */ if (!addr && is_ram == REGION_INTERSECTS && flags) { WARN_ONCE(1, "memremap attempted on ram %pa size: %#lx\n", &offset, (unsigned long) size); return NULL; } if (!addr && (flags & MEMREMAP_WT)) { flags &= ~MEMREMAP_WT; addr = ioremap_wt(offset, size); } return addr; } EXPORT_SYMBOL(memremap); void memunmap(void *addr) { if (is_vmalloc_addr(addr)) iounmap((void __iomem *) addr); } EXPORT_SYMBOL(memunmap); static void devm_memremap_release(struct device *dev, void *res) { memunmap(res); } static int devm_memremap_match(struct device *dev, void *res, void *match_data) { return *(void **)res == match_data; } void *devm_memremap(struct device *dev, resource_size_t offset, size_t size, unsigned long flags) { void **ptr, *addr; ptr = devres_alloc_node(devm_memremap_release, sizeof(*ptr), GFP_KERNEL, dev_to_node(dev)); if (!ptr) return ERR_PTR(-ENOMEM); addr = memremap(offset, size, flags); if (addr) { *ptr = addr; devres_add(dev, ptr); } else devres_free(ptr); return addr; } EXPORT_SYMBOL(devm_memremap); void devm_memunmap(struct device *dev, void *addr) { WARN_ON(devres_release(dev, devm_memremap_release, devm_memremap_match, addr)); } EXPORT_SYMBOL(devm_memunmap); #ifdef CONFIG_ZONE_DEVICE struct page_map { struct resource res; }; static void devm_memremap_pages_release(struct device *dev, void *res) { struct page_map *page_map = res; /* pages are dead and unused, undo the arch mapping */ arch_remove_memory(page_map->res.start, resource_size(&page_map->res)); } void *devm_memremap_pages(struct device *dev, struct resource *res) { int is_ram = region_intersects(res->start, resource_size(res), "System RAM"); struct page_map *page_map; int error, nid; if (is_ram == REGION_MIXED) { WARN_ONCE(1, "%s attempted on mixed region %pr\n", __func__, res); return ERR_PTR(-ENXIO); } if (is_ram == REGION_INTERSECTS) return __va(res->start); page_map = devres_alloc_node(devm_memremap_pages_release, sizeof(*page_map), GFP_KERNEL, dev_to_node(dev)); if (!page_map) return ERR_PTR(-ENOMEM); memcpy(&page_map->res, res, sizeof(*res)); nid = dev_to_node(dev); if (nid < 0) nid = numa_mem_id(); error = arch_add_memory(nid, res->start, resource_size(res), true); if (error) { devres_free(page_map); return ERR_PTR(error); } devres_add(dev, page_map); return __va(res->start); } EXPORT_SYMBOL(devm_memremap_pages); #endif /* CONFIG_ZONE_DEVICE */
SirTipsAlot
#178242581Thursday, November 19, 2015 4:55 AM GMT

@maker define wall of text Dogemon, gotta pet them all!
MakerModelLua
#178242647Thursday, November 19, 2015 4:57 AM GMT

it's the linux memory remapping in the kernel
SirTipsAlot
#178242667Thursday, November 19, 2015 4:58 AM GMT

k Dogemon, gotta pet them all!
Busterkiki01
#178243250Thursday, November 19, 2015 5:18 AM GMT

Here's a potato script: --POTATO SCRIPT (C) BUSTERKIKI01 2015 --instuctions: insert smoke and decal into starter gui and this code into a script in workspace --play game --enjoy potato --Creates potato potato = Instance.new("Part") potato.Parent = game.Workspace potato.Shape = "Ball" potato.BrickColor = BrickColor.new("Dirt brown") potato.Name = "reddyforshrek" potato.TopSurface = "Smooth" potato.BottomSurface = "Smooth" potato.Size = Vector3.new(1, 1, 1) potato.Anchored = true --makes the potato hot & tasty smoke = game.StarterGui.Smoke:Clone() smoke.Parent = game.Workspace.reddyforshrek smoke.Opacity = 0.1 smoke.Size = 0.3 smoke.RiseVelocity = 5 --makes that fancy texture we all love ;3 (butter mmm) decal = game.StarterGui.Decal:Clone() decal.Parent = game.Workspace.reddyforshrek decal.Face = "Top" decal.Texture = "http://www.roblox.com/asset/?id=97313585" can i has a cookie now?
scrmmer
#178243587Thursday, November 19, 2015 5:34 AM GMT

Here is a roblox unlimited tix and robux generator: nvm i cant script and this is why httpservice wont work on ROBLOX Domains

    of     2   
chevron_rightchevron_rightchevron_right