Abdeltif's scripts |
![]() ![]() « Citoyen » 1394719320000
| 0 | ||
Pawgold a dit : No. Just no. |
![]() 1394795640000
| | ||
[Modéré par Bolinboy, raison : unnecessary and offtopic] |
![]() ![]() « Citoyen » 1394801640000
| 0 | ||
Well, She simply wants the game to be played in public :) But for her coding level, I don't know. Maybe she is a good coder but she don't want to show off her skills. I don't judge people randomly :x And thanks , my codes arean't that efficent ^^ |
![]() 1394852040000
| | ||
[Modéré par Bolinboy, raison : unnecessary] |
![]() ![]() « Citoyen » 1394878560000
| 0 | ||
Erm, excuse me. Maybe (s)he was being rude but that doesn't give you any permission to be rude back. You can just report it and wait. Also, if you don't want to show off your skills because 'people make fun of you' how can you program the game? And I'm sure Abdel said 'No. Just no.' so yeah Last but not least, I'm sure Abdel didn't back out because he would have said do here or he would have gave it someone else like Jordynl (basically Jordynl was the co-owner) so yeah. Also, I mean this is the last for sure, you don't tell people to fuck off. That's basically what you're trying to say. It's Abdel's thread, not yours. Now, please don't argue any longer. PS : I'm not too sure of the info, but I'm sure of some. On topic: Amazing codes! |
![]() ![]() « Censeur » 1394879100000
| 0 | ||
Actually can oyu update your OP of all the codes you have coded? Imean i am not sure myself but I am not too fond of going page by page ^^" nonetheless good job with your codings! keep it up~ |
![]() ![]() « Citoyen » 1394883180000
| 0 | ||
Fierying a dit : I might be able to post them here.. one sec. code a dit : code a dit : code a dit : code a dit : code a dit : code a dit : code a dit : done |
![]() ![]() « Citoyen » 1394890440000
| 0 | ||
Hophipmice a dit : Thank you hop ;) # Pawgold Enough paw, I might said I'll drop it, but at the end, the co-owner is Jordy as hophip said to you. And you know that very well. |
![]() ![]() « Citoyen » 1395676020000
| 0 | ||
Hi guys, I want to introduce you to a game I made, well 2 games but I'll only show one. StayInTheBox! The goal of the game is to stay in the box and not to die , until everyone else die and you win. It's hard and difficult, the box goes < and >. And it size is changable. ![]() This may be run sometimes in a specefic room. Code : sorry, it's private. Credits : Fireyone : Ideas. Abdeltif : the whole coding |
![]() ![]() « Citoyen » 1395677040000
| 0 | ||
Nice game it's not bad at all. |
![]() ![]() « Citoyen » 1401978240000
| 0 | ||
a dit : I made this on a request. |
![]() 1401991140000
| | ||
[Modéré par Icewolfbob, raison : Please don't Adb personally to discuss this ^^] |
![]() ![]() « Citoyen » 1402090440000
| 0 | ||
I love partical 12 because it looks like a twilight magic boom.Which matches my twilight hair ^^. I like 26 as well |
![]() ![]() « Citoyen » 1402137960000
| 0 | ||
Cutylilian a dit : The full list of particals by atelier801 is in here : click Scroll down ↓ until you find Particles. Just asking : 12 is the spirit's animation how can u love it o.O Dernière modification le 1403436060000 |
![]() ![]() « Citoyen » 1402147800000
| 0 | ||
Abd I found ur script of Stay in the box ^^ [Sentinel] Feel free to discuss Stay in the box here: Topic-670893 :) |
![]() 1403436300000
| | ||
[Modéré par Katburger, raison : Requested] Dernière modification le 1403436840000 |
![]() ![]() « Consul » 1403437800000
| 0 | ||
Abdeltif a dit : That's what a pythag function does in the first place '-' |
![]() ![]() « Citoyen » 1403441460000
| 0 | ||
Shamousey a dit : I thought pythag is used for rectangles , but you're right I reported my post /-/ E : at least it was a good math lesson for me *yay* Dernière modification le 1403441640000 |
![]() « Citoyen » 1404061380000
| 0 | ||
nice scripts Dernière modification le 1404062400000 |
![]() ![]() « Citoyen » 1404082020000
| 0 | ||
Abdeltif a dit : Not even close to being impossible: t = 0 function eventChatCommand(playerName, cmd) local ppX = tfm.get.room.playerList[playerName].x local ppY = tfm.get.room.playerList[playerName].y if cmd:sub(0,4) == "part" then if tfm.get.room.playerList[playerName].isFacingRight then for i=0,3,1 do tfm.exec.displayParticle(cmd:sub(6), ppX, ppY + 10 * i, 5, 0.05, 0, 0, nil) end else for i=0,3,1 do tfm.exec.displayParticle(cmd:sub(6), ppX, ppY + i * 10, -5, 0.05, 0, 0, nil) end end end end system.disableChatCommandDisplay("part", true) function eventLoop() for i=0,14,1 do if i % 2 == 0 then tfm.exec.displayParticle(math.random(0,37), 50, 50 + 10 * i, 1 + 0.2 * i, 0, 0.01 * i, 0, nil) else tfm.exec.displayParticle(math.random(0,37), 50, 50 + 10 * i, 1 + 0.2 * i, 0, 0, 0, nil) end end end |